*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
  

}





    .team-section {
      padding: 60px 20px;
      text-align: center;
      background: black;
    }

    .team-section h2 {
      font-size: 2rem;
      margin-bottom: 10px;
      color: white;
    }

    .team-section .subtext {
      font-size: 1rem;
      color: white;
      margin-bottom: 40px;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .team-member {
      background: black;
      border: 3px solid #fff;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
      transition: transform 0.3s ease;
    }

    .team-member:hover {
      transform: translateY(-5px);
    }

    .team-member img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 12px;
      margin-bottom: 15px;
    }

    .team-member h3 {
      font-size: 1.2rem;
      margin: 10px 0 5px;
      color: white;
    }

    .team-member p {
      font-size: 0.95rem;
      color: white;
      margin: 0;
    }



:root{
    --primary:#000;
    --secondary:#Fff;
    --white:#fff;
}


body{
    background-color: #000;
}




    /* Logo image height */
    .navbar-brand img {
      height: 90px;
    }

    /* Banner styling */
    

    .nav-link {
      color: #fff !important;
      margin-right: 15px;
    }

    .navbar {
      background-color: #000;
    }





    .hero-text-section {
      padding: 100px 20px;
      text-align: center;
      background-color: #000;
      color: var(--secondary);
    }

    .hero-text-section h1 {
      margin-top: 50px;
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      font-weight: 700;
    }

    .hero-text-section h4 {
      font-style: italic;
      font-weight: 400;
      margin-top: 10px;
      font-size: 1.25rem;
    }

    .hero-text-section p {
      max-width: 750px;
      margin: 30px auto 0;
      line-height: 1.7;
      font-size: 1rem;
    }




 /* Contact Button */
    .contact-btn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #ffb347;
      color: black;
      font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
      padding: 12px 20px;
      border-radius: 10px;
      font-size: 0.95rem;
      display: flex;
      align-items: center;
      box-shadow: 0 4px 10px rgba(0,0,0,0.4);
      z-index: 999;
      transition: background 0.3s;
    }

    .contact-btn:hover {
      background-color: #ffb347;
      
    }

    .contact-btn i {
      margin-right: 8px;
    }








        @media (max-width: 768px) {
      .hero-text-section h1 {
        font-size: 2.2rem;
      }
      .hero-text-section h4 {
        font-size: 1.1rem;
      }
      .contact-btn {
        font-size: 0.85rem;
        padding: 10px 16px;
      }
    }



    /* Mobile Responsive */
    @media (max-width: 768px) {
      .carousel-item img {
        height: 70vh;
      }

      .hero-content h1 {
        font-size: 2rem;
      }

      .hero-content p {
        font-size: 1rem;
      }

      .hero-content .btn {
        font-size: 1rem;
        padding: 10px 22px;
      }
       .hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: #fff;
      width: 350px !important;
      padding: 20px;
    }
    }




    

    .about-section {
      padding: 60px 0;
      background-color: #000;
      color: var(--secondary);
    }

    .about-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .about-text h2 {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-weight: 600;
      font-size: 2rem;
    }

    .about-text h5 {
      margin-top: 20px;
      font-weight: 500;
      font-size: 1.2rem;
    }

    .about-text p {
      margin-top: 15px;
      font-size: 0.95rem;
      line-height: 1.6;
      max-width: 500px;
    }

    .about-buttons {
      margin-top: 25px;
    }

    .about-buttons .btn {
      margin-right: 10px;
      padding: 8px 20px;
      font-size: 0.9rem;
      border-radius: 0;
    }

    @media (max-width: 768px) {
      .about-text {
        text-align: center;
        padding: 30px 15px;
      }

      .about-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
      }
    }













    .menu-section {
  text-align: center;
  color: var(--secondary);
  background-color: #000;
  padding: 50px 20px;
}

.menu-section h2 {
  margin-top: 50px;
  font-size: 2rem;
  margin-bottom: 20px;
}

.quote {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 0.95rem;
  color: #ccc;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 20px;
}

.menu-item {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.menu-item:hover {
  transform: scale(1.03);
}

.overlay {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 15px;
  border-radius: 5px;
  text-align: left;
}

.overlay h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.overlay button {
  background: #fff;
  color: #000;
  border: none;
  padding: 6px 12px;
  font-size: 0.85rem;
  cursor: pointer;
  border-radius: 3px;
  transition: background 0.3s ease;
}

.overlay button:hover {
  background: #ddd;
}


@media (max-width:768px) {
  .menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
}









 

.testimonials-section {
  text-align: center;
  padding: 50px 20px;
  background: #000;
}

.testimonials-section h2 {
  margin-top: 85px;
  font-size: 2rem;
  font-style: italic;
  color: var(--secondary);
}

.subtext {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.testimonial-item {
  position: relative;
}

.video-thumb {
  position: relative;
  padding-top: 160%;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  cursor: pointer;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.8);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  color: #000;
  cursor: pointer;
  transition: background 0.3s ease;
}

.play-btn:hover {
  background: rgba(255,255,255,1);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

.modal-content {
  position: relative;
  max-width: 800px;
  width: 90%;
}

.modal video {
  width: 100%;
  border-radius: 8px;
}

.close-btn {
  position: absolute;
  top: -30px;
  right: 0;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}






    .sc-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      background-color: #000;
    }

    .sc-column {
      flex: 1 1 calc(33.333% - 20px);
      min-width: 300px;
      position: relative;
      overflow: hidden;
      border-radius: 10px;
    }

    .sc-text-block {
      background: url('your-background.jpg') no-repeat center center/cover;
      padding: 25px;
    }

    .sc-text-content {
      background: rgba(0, 0, 0, 0.6);
      padding: 20px;
      border-radius: 10px;
    }

    .sc-hashtags {
      margin-top: 15px;
      font-size: 14px;
      color: #ccc;
    }

    .sc-media video,
    .sc-media img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 10px;
    }

    .sc-overlay {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: rgba(0, 0, 0, 0.65);
      color: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      transition: opacity 0.3s ease;
      text-align: center;
      padding: 20px;
      font-size: 18px;
      font-weight: bold;
      border-radius: 10px;
    }

    .sc-column:hover .sc-overlay {
      opacity: 1;
    }

    .sc-contact-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #0d3b66;
      color: #fff;
      padding: 12px 20px;
      border-radius: 8px;
      font-style: italic;
      text-decoration: none;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
      z-index: 100;
    }

    .sc-contact-button:hover {
      background-color: #14589c;
    }

    @media (max-width: 900px) {
      .sc-column {
        flex: 1 1 100%;
      }
    }

    .gallery-haed{
      background-color: #000;
      color: #fff;
    }




     .sc-contact-section {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      padding: 60px 40px;
      background-color: #000;
    }

    .sc-contact-left {
      flex: 1 1 50%;
      padding: 20px;
      text-align: center;
    }

    .sc-contact-left h2 {
      font-size: 36px;
      font-style: italic;
      margin-bottom: 20px;
    }

    .sc-contact-left p,
    .sc-contact-left a {
      font-size: 16px;
      color: #ddd;
      line-height: 1.8;
      text-decoration: none;
      display: block;
    }

    .sc-contact-left a:hover {
      color: #fff;
    }

    .sc-contact-icons {
      margin-top: 20px;
    }

    .sc-contact-icons a {
      color: white;
      margin: 0 10px;
      font-size: 20px;
      display: inline-block;
      transition: transform 0.3s;
    }

    .sc-contact-icons a:hover {
      transform: scale(1.2);
    }

    .sc-contact-right {
      flex: 1 1 50%;
      text-align: right;
    }

    .sc-contact-right img {
      width: 100%;
      max-width: 600px;
      height: auto;
      object-fit: cover;
      border-radius: 10px;
    }

    @media (max-width: 768px) {
      .sc-contact-section {
        flex-direction: column;
        text-align: center;
      }

      .sc-contact-right {
        margin-top: 30px;
        text-align: center;
      }
    }







    /* ======================================contact us start=================================== */
.contact-us {
    padding: 70px 100px;
    background: linear-gradient(#000421e1, #000421ee), url(../images/contact-us/contact-us-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
}

.contact-content-div {
    background: linear-gradient(to right, #0f2646, #30588f, #6dc6fd);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: rgba(255, 255, 255, 0.37) 0px 3px 8px;
}

.contact-content-div .image img {
    filter: drop-shadow(rgba(255, 255, 255, 0.24) 0px 3px 8px);

}

.sub-style h2 {
    color: var(--darkest-blue);
}

.sub-style .sub-title {
    color: var(--white);
    font-weight: 600;
}

.form-div {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    padding: 20px 40px 20px 0px;
    height: 100%;
}

.form-div form input {
    background: transparent !important;
    color: var(--white);
    border: none;
    border-radius: 0px;
    border-bottom: 1px solid var(--white);
}

.form-div form textarea {
    background: transparent;
}

.form-div form textarea:focus {
    background: transparent;
}

.contact .form-floating .form-control {
    border-radius: 0px solid var(--text-dark) !important;
    border-color: #000;

}

form #err1,
#err2,
#err3,
#err4 {
    font-size: 14px !important;
}

.form-floating>.form-control,
.form-floating>.form-select {
    height: calc(2.5rem + 2px);
    line-height: 1.25;
}

.form-floating>label {
    position: absolute;
    top: -7px !important;
    left: 0;
    color: #fff;
    height: 100%;
    padding: 1rem 0.75rem;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    /* font-size: 12px; */
    transition: opacity .1s ease-in-out, transform .1s ease-in-out;
}

/* captcha new design start */
.captchasep1 {
    display: flex;
}

.captchasep1 input::placeholder {
    color: #000 !important;
}

.captchasep1 input {
    width: 100% !important;
    margin-top: 0 !important;
    font-size: 16px;
    border-bottom: 1px solid #fff !important;
    box-shadow: none;
}

.captchasep1 .captcha-codes-sec {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100% !important;
    background: url(../img/capt-img.jpeg);
    font-size: 16px;
    border: 1px solid #fff !important;
    box-shadow: none;
    overflow: hidden;
}

.captchasep1 .captcha-codes-sec p {
    margin-bottom: 0;
    letter-spacing: 8px;
    font-style: italic;
    font-size: 27px !important;
    padding: 8px;
    height: 100%;
    color: #fff;
}

.captchasep1 .captcha-codes-sec button {
    font-style: italic;
    font-size: 18px;
    outline: none;
    background: transparent;
    height: 100%;
    border: none;
}

.captchasep1 .captcha-codes-sec button i {
    background: var(--white);
    color: var(--blue);
    border-radius: 5px;
    padding: 10px;
}

@media screen and (max-width:600px) {
    .captchasep1 {
        display: flex;
        flex-direction: column !important;
    }

    .captchasep1 .captcha-codes-sec {
        border-left: 1px solid #CED4DA;
        border-right: 1px solid #CED4DA;
        border-bottom: 1px solid #CED4DA;
        margin-top: 3px;
    }


}

@media(max-width:992px) {
    .contact-us {
        padding: 30px 10px;
    }

    .form-div {
        padding: 10px 10px 10px 10px;
    }

    .contact-content-div .image {
        display: none;
    }
}

/* ======================================contact us end===================================== */

  .service{
    padding: 20px 0px 50px 0px;
  }
  .ser-text p{
    text-align: justify;
  }





  .resto-img img{
    margin-top: 10px;
    transition: .5s;
    border: 1px solid #fff;
    text-align: center;
    padding: 10px;
    
    width: 120px;
    height: 120px;
}
.resto-text h2{
    transition: .5s;
    color: #fff;
    font-size: 35px ;
    font-weight: 500;

}
.resto{
    background-image: url(../images/foioter/service_bg.png);
    width: 100%;
    height: 100%;
}
.resto-box:hover{
    transform: translateY(-20px);
}
.resto-box:hover .resto-img img{
     border: 1px solid #eca130;
     transform: scale(1.1);
}
.resto-box:hover .resto-text h2{
    color: #eca130;
}
.resto-box{
    transition: .5s;
    padding: 20px 20px;
    background: #000000;
    color: #fff;
    margin: 30px 0px;
}
.resto-text{
    padding: 10px 0px;
}
.icon ul li a {
    transition: .5s;
    background: #fff;
    border-radius: 50%;
    padding: 8px;
    color: var(--primary);
}
.icon ul {
    padding-left: 30% !important;
    list-style: none;
    display: flex
;
}
.modal-body {
    position: relative;
    flex: 1 1 auto;
    background-color: var(--primary);
    padding: var(--bs-modal-padding);
}

input::placeholder{
  color: var(--secondary) !important;
}


.modal-dialog{

  background-color: #000 !important;
  color: var(--secondary);
}

    /* Form box styling */
    .formBox {
      background-color: #111;
      padding: 30px;
      border-radius: 10px;
      max-width: 500px;
      width: 90%;
      position: relative;
    }

    .formBox input,
    .formBox textarea {
      width: 100%;
      padding: 12px;
      margin-bottom: 15px;
      background: #222;
      border: 1px solid #444;
      border-radius: 6px;
      color: #fff;
      font-size: 14px;
    }

    .formBox textarea {
      resize: vertical;
      min-height: 100px;
    }

    .submit-01 {
      background-color: #0d3b66;
      border: none;
      color: #fff;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .submit-01:hover {
      background-color: #14589c;
    }










 .venue-section {
      padding: 40px 20px;
      text-align: center;
    }

    .venue-section h2 {
      font-style: italic;
      font-size: 24px;
      margin-bottom: 8px;
    }

    .venue-section p {
      font-size: 14px;
      max-width: 800px;
      margin: 0 auto 30px;
      font-weight: 300;
    }

    .venue-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      border-top: 1px solid #000;
      border-left: 1px solid #000;
    }

    .venue-item {
      display: flex;
      flex-direction: row;
      border-right: 1px solid #000;
      border-bottom: 1px solid #000;
      height: 320px;
    }

    .venue-image {
      flex: 1;
      background-size: cover;
      background-position: center;
    }

    .venue-text {
      flex: 1;
      padding: 30px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      font-style: italic;
    }

    .venue-text h3 {
      font-size: 16px;
      font-weight: normal;
      margin-bottom: 8px;
    }

    .venue-text h4 {
      font-size: 14px;
      font-weight: normal;
      margin-bottom: 10px;
    }

    .venue-text a {
      font-size: 12px;
      color: black;
      text-decoration: underline;
      margin-bottom: 10px;
      display: block;
    }

    .venue-text p {
      font-style: normal;
      font-size: 13px;
      margin-bottom: 8px;
    }

    .venue-text .insta-icon {
      font-size: 20px;
      color: #000;
    }

    @media (max-width: 768px) {
      .venue-grid {
        grid-template-columns: 1fr;
      }

      .venue-item {
        flex-direction: column;
        height: auto;
      }

      .venue-image {
        height: 200px;
      }
    }













    
  .sc-footer {
    background: #111; /* Dark premium look */
  }
  .sc-footer h2 {
    color: #f0c14b; /* Gold accent */
  }
  .sc-footer p {
    font-size: 0.95rem;
  }
  .sc-footer .social-link {
    width: 40px;
    height: 40px;
    background: #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f0c14b;
    font-size: 1.2rem;
    transition: all 0.3s ease;
  }
  .sc-footer .social-link:hover {
    background: #f0c14b;
    color: #111;
    transform: scale(1.1);
  }
  .footer-bottom {
    font-size: 0.85rem;
    color: #bbb;
  }