* {
    color: #333333;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    letter-spacing: 0px;
}

.golden {
    color: #dcaa25;
}

.dark-white {
    color: #ccc8c8;
}

.top-bg {
    background-color: #f3f2ee;
}

.layouts_inited {
    background-color: #7f6649;
}

.btn-outline-primary {
    color: #dcaa25 !important;
    border-color: #dcaa25 !important;
}

.btn-outline-primary:hover {
    color: #000 !important;
    background-color: #dcaa25 !important;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top, .whatsapp {
    position: fixed !important;
    bottom: 20px !important;
    z-index: 1000 !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
/* Left Side - Back to Top */
.back-to-top.left {
     right: 20px !important;
    
}

/* Right Side - WhatsApp */
.whatsapp {
   left: 20px !important;
}


h2 {
    font-family: "Cinzel", serif;
    font-size: 2.5em;
    font-weight: 500;
    font-style: normal;
    line-height: 1.0952em;
    text-decoration: none;
    text-transform: uppercase;
    margin-top: 1.53em;
    margin-bottom: 0.95em;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 44px;
    height: 44px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    
}
/* .btn-lg-square {
    background: #ddaf0b;
    border-radius: 50px;
} */

.footericon i{
    color:#fff;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}
.footer-link {
    display: block;
    margin-bottom: 8px;
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}
.footer-link:hover {
    color: #f15d30;
}
.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f15d30;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.social-icon:hover {
    background: #fff;
    color: #f15d30;
    border: 1px solid #f15d30;
}


/* Base styles */
.navbar-light .navbar-nav .nav-link {
        margin-right: 11px;
    padding: 3px 8px;
    text-transform: uppercase;
    color: #493c3c;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #fff !important;
    background-color: #7f6649 !important;
  
}

.enquiry .nav-link {
    color: #fff !important;
    background: #ddaf0b !important;
  
}

/* Dropdown styling */
.nav-item .dropdown-menu {
    border-radius: 8px;
    padding: 10px 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }
}

.dropdown-menu .dropdown-item {
    color: #fff;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.dropdown-menu .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffeb3b;
    transform: translateX(5px);
}

/* Responsive styles */
@media (max-width: 991.98px) {
    /* Topbar */
    .top-bg {
        text-align: center;
        padding: 8px 0;
    }
    .top-bg a {
        display: block;
        margin-bottom: 6px;
        font-size: 14px;
    }

    /* Navbar */
    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 12px 16px;
        border-top: 1px solid #f1f1f1;
        color: #000;
        text-align: left;
    }

    .navbar-light .navbar-nav {
        background-color: #fff;
        border-radius: 6px;
        margin-top: 10px;
    }

    .nav-item.dropdown .dropdown-menu {
        position: static;
        transform: none;
        visibility: visible;
        opacity: 1;
        box-shadow: none;
        padding-left: 15px;
        background: transparent;
    }

    .dropdown-menu .dropdown-item {
        color: #333;
        padding: 8px 10px;
    }
}

/* Extra small devices */
@media (max-width: 575.98px) {
    .navbar-brand img {
        width: 140px;
    }
    .navbar-light .navbar-nav .nav-link {
        font-size: 14px;
        padding: 10px 14px;
    }
}


/*** Header carousel – responsive for phones ***/
@media (max-width: 768px) {
    .carousel-caption {
        width: 90% !important;
        font-size: 20px !important; 
        bottom: 15%;
    }

    .carousel-control-prev,
    .carousel-control-next {
       display: none;
    }
}

.carousel-caption {
    position: absolute;
    bottom: 50%; /* vertical center */
    left: 50%;   /* horizontal center */
    transform: translate(-50%, 100%); /* start off-screen below */
    text-align: center;
    color: white;
    font-size: 50px;
    animation: scrollFromBottom 1.5s ease-out forwards;
    opacity: 0;
    font-family: Cinzel;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    width: 50%;
}

@keyframes scrollFromBottom {
    0% {
        transform: translate(-50%, 100%);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, 50%);
        opacity: 1;
    }
}
.carousel-item {
    position: relative;
  }

  .carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* dark overlay */
    z-index: 1;
  }

.carousel-item img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    background-color: #333333;
  }


.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 2px solid #ffc107;
    color: #ffc107;
    border-radius: 5px;
    z-index: 2;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none;
}

.carousel-control-prev::before,
.carousel-control-next::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 24px;
    color: #ffc107;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.carousel-control-prev::before {
    content: '\f104';
}

.carousel-control-next::before {
    content: '\f105';
}

.carousel-control-prev {
    left: 10%;
}

.carousel-control-next {
    right: 10%;
}

.carousel-indicators [data-bs-target] {
    background-color: #ffc107;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.carousel-indicators {
    bottom: 15px;
}


/* Contact form */
.contact-section {
    background-color: #111;
}

.contact-input {
    background-color: #eae7e2 !important;
    border: none !important;
    height: 70px;
    font-family: 'Georgia', serif;
    color: #333;
    border-radius: 0px !important;
}

.contact-input::placeholder {
    color: #777;
}

.contact-button {
    height: 60px;
    font-family: 'Georgia', serif;
    font-size: 16px;
    border: none;
    color: white;
    background-color: #dcaa25;
    transition: background-color 0.3s ease;
    border-radius: 0px !important;
}


.contact-button:hover {
    background-color: #877133;
    color: #fff;
}

/* end from style */
/* === About Section === */
.about-header h6 {
    max-width: fit-content;
    margin: auto;
}

.about-text {
   font-family: "Cinzel", serif;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    font-size: 45px;
}
.about-header-text{
    font-family: 'swiper-icons';
    text-transform: uppercase;
    letter-spacing: 1.1px;
    font-size: 40px;
    font-weight: 100;
    color: #3a3636cc;
}
.layouts_initeds {
    background: #eceae6;
}

.heading-style span {
    font-size: 2.5rem;
    letter-spacing: -1px;
    font-family: "Cinzel", serif;
    font-weight: 300;
    text-transform: uppercase;
    color: #333;
}

.about-location span {
    font-size: 28px;
    font-weight: 100;
    font-family: auto;
    color: #fff;
}
@media (max-width: 768px) {
   .about-header h6 {
    max-width: fit-content;
    margin: auto;
   }

   .about-text {
    font-size: 28px;
    line-height: 47px;
    font-size: 43px;
   }

   .main-about p {
    padding: 0px 40px 0px 40px;
    color: #595858;
   }
}


/* === Services Section === */
.services-content p {
    margin: 0px;
    font-size: 16px;
    font-weight: 300;
    font-family: sans-serif;
    color: #686868;
    padding: 0px;
}

.services-content span {
    font-size: 18px;
    font-weight: 600;
    color: #686868;
    font-family: sans-serif;
    margin: 40px 0 30px 0;
}

.swiper {
    padding: 20px 0;
}

.swiper-wrapper {
    display: flex;
    gap: 10px;
}

.swiper-slide {
    width: calc(33.333% - 10px);
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

.services-main {
    width: 100%;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.services-main:hover {
    transform: translateY(-5px);
}

.services-main img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.service-slider {
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
}

.service-slider h5 {
    font-size: 30px;
    padding: 25px;
    font-weight: 100 !important;
    font-family: 'swiper-icons';
}
.border-bottom-center {
  position: relative;
  display: inline-block;
  padding-bottom: 10px; 
}

.border-bottom-center::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px; 
  height: 3px;  
  background-color: #bfa14c;
  border-radius: 2px;
}


.service-slider p {
   text-align: left;
    font-size: 15px;
    letter-spacing: normal;
   padding: 10px;
    color: #666;
}

.service-header {
    margin-top: 0px !important;
}
.swiper-button-next{
    position: absolute;
    right: -18% !important;
}
.swiper-button-prev{
    position: absolute;
    left: -19% !important;
}
.swiper-button-next,
.swiper-button-prev {
    color: #fff !important;
    background: #d8ab52;
   padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    top: 50%;
    transform: translateY(-50%);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: #d8ab52;
    color: #fff;
}

/* === Responsive Styles === */
@media (max-width: 767.98px) {
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    .swiper-slide {
        width: 100%;
    }
}

/* === Seating Pages === */
.seating-bg-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 60px 15px;
}

.seating-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.seating-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.seating-title {
    font-size: 2.7rem;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    color: #fff;
    font-family: "Cinzel", serif;
}

.seating-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
    color: #fff;
}

.info-card-seating {
    background: white;
    color: #333;
    border-radius: 8px;
    padding: 10px 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    margin: auto;
}

.info-card-seating h2 {
    margin: 14px;
    font-weight: 400;
    margin-bottom: 20px;
    font-family: "Cinzel", serif;
}

.info-text-seating {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
}
/* Wedding Occasiont */
.image-hover-container {
  position: relative;
  overflow: hidden;
}

.image-hover-container img {
  transition: 0.3s ease-in-out;
  width: 100%;
  display: block;
}

.image-hover-container:hover img {
  filter: brightness(0.7);
  transform: scale(1.03);
  border: 2px solid #fff;
}

.hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background: rgba(0, 0, 0, 0.4);
  transition: opacity 0.3s ease-in-out;
}

.image-hover-container:hover .hover-overlay {
  opacity: 1;
}

.center-icon {
  font-size: 36px;
  color: #fff;
  border: 2px solid #fff;
  padding: 123px 210px;
}

.wedding-text {
  padding: 0 70px;
}

.wedding-text h4 {
  font-size: 3.5em;
  letter-spacing: 1px;
  font-family: "Cinzel", serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.15em;
  text-transform: uppercase;
}
.wedding-text h4:hover{
    color: #ddaf0b;
}
.wedding-text p {
  font-size: 20px;
  letter-spacing: 0;
}

/* 📱 Mobile View */
@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }

  .wedding-text {
    padding: 0 10px;
  }

  .wedding-text h4 {
    font-size: 1.2em;
    line-height: 1.3em;
  }

  .image-hover-container img {
    height: 100px;
    object-fit: cover;
  }
}

/* Wedding Occasiont end */
/* Outer wrapper */
.service-card-wrapper {
  padding: 20px;
  height: 100%;
}

/* Inner box with border */
.inner-card {
  border: 1.5px solid #000;
  padding: 25px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  color: #000;
  width: 80%;
  height: 100%;
  background-color: #fff;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

/* Fixed icon box */
.inner-card .event-icon {
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* Icon style */
.inner-card .event-icon i {
  font-size: 50px;
  color: #000;
  transition: color 0.3s ease;
}

/* Heading styling */
.inner-card h6 {
  font-family: "Cinzel", serif;
    font-size: 22px;
    font-weight: 100;
  text-align: center;
  color: #000;
  line-height: 1.5;
  margin: 0;
  word-wrap: break-word;
  flex-grow: 1;
}

/* Hover effects */
.inner-card:hover {
  transform: translateY(-5px);
  border-color: #a7893f;
}

.inner-card:hover .event-icon i,
.inner-card:hover h6 {
  color: #bfa14c;
}

.event-icon:hover img {
  color: #bfa14c;
}


/* testimonial-slider  */
.testimonial-slider {
      background: url('../img/testimonials-bg.jpg') no-repeat center center;
      background-size: cover;
      color: #fff;
      padding: 4rem 0;
      position: relative;
      /* z-index: 1; */
    }

    .testimonial-slider::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      /* background: rgba(0, 0, 0, 0.55); 
      z-index: -1; */
    }

    .btn-testimonial h6 {
      background-color: #b58d5a;
      display: inline-block;
      padding: 0.4rem 1.5rem;
      font-size: 1rem;
      color: #fff;
      margin-bottom: 1rem;
    }

    text-testimonialh2 {
      font-size: 3rem;
      font-weight: 500;
      color: #fff;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .testimonial-item {
      text-align: center;
      padding: 2rem;
      font-size: 1.3rem;
      font-style: italic;
    }

    .testimonial-item p {
      color: #fff;
      margin-bottom: 1rem;
    }

    .testimonial-author {
      font-size: 1.5rem;
      font-weight: 700;
      font-family: 'Georgia', serif;
      color:#fff;
    }

    
   
/*testimonial-slider end */
/*gallery and media start */
 .gallery-card {
    cursor: pointer;
    border: none;
    transition: transform 0.3s ease;
  }

  .gallery-card:hover {
    transform: scale(1.03);
  }

  .gallery-card img {
    object-fit: cover;
    height: 250px;
    width: 100%;
  }

  .media-preview-section {
    display: none;
    padding: 30px 15px;
    background-color: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
  }

  .media-preview-section img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: opacity 0.4s ease;
  }

  .media-preview-controls {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
  }

  .media-preview-controls button {
    background-color: #ffc107;
    color: #000;
    border: none;
    padding: 12px 16px;
    font-size: 20px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .media-preview-controls button:hover {
    background-color: #e0a800;
    transform: scale(1.1);
  }

  .media-preview-controls i {
    pointer-events: none;
  }

  /* Mobile Responsiveness */
  @media (max-width: 576px) {
    .media-preview-controls {
      justify-content: center;
    }

    .media-preview-section img {
      max-height: 300px;
    }
  }

  /*gallery and media start */
