      /* Icon bounce animation on hover or when in view */
      .bg-section {
        background: url('../img/bg1.jpg') center center/cover no-repeat !important;
        background-attachment: fixed !important;
        position: relative;
      }
      .bg-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.38);
        z-index: 1;
        pointer-events: none;
      }
      .bg-section > .container,
      .bg-section > div {
        position: relative;
        z-index: 2;
      }
      .exp-card:hover .exp-icon i,
      .exp-card:focus-within .exp-icon i,
      .exp-card.icon-animate .exp-icon i {
        animation: icon-bounce 0.7s cubic-bezier(.4,0,.2,1);
      }
    @keyframes icon-bounce {
      0%   { transform: scale(1) translateY(0); }
      30%  { transform: scale(1.18) translateY(-12px); }
      50%  { transform: scale(0.95) translateY(2px); }
      70%  { transform: scale(1.08) translateY(-6px); }
      100% { transform: scale(1) translateY(0); }
    }
    /* Stylish Experiences Cards */
    .exp-card {
      background: linear-gradient(135deg, rgba(255,255,255,0.65) 60%, rgba(240,224,180,0.18) 100%) !important;
      border-radius: 22px !important;
      box-shadow: 0 8px 32px 0 rgba(160,126,45,0.13), 0 2px 8px rgba(0,0,0,0.10) !important;
      border: 1.5px solid rgba(160,126,45,0.18) !important;
      backdrop-filter: blur(8px) !important;
      -webkit-backdrop-filter: blur(8px) !important;
      transition: transform 0.4s cubic-bezier(.4,0,.2,1), box-shadow 0.4s, border 0.3s, background 0.4s;
      position: relative;
      overflow: hidden;
      min-height: 320px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding: 2.2rem 1.2rem 1.5rem 1.2rem;
    }
    .exp-card:hover, .exp-card:focus-within {
      transform: scale(1.045) translateY(-10px) rotate(-1.2deg);
      box-shadow: 0 16px 48px 0 #a07e2d33, 0 4px 16px rgba(0,0,0,0.13);
      border: 2px solid #a07e2d;
      background: linear-gradient(135deg, rgba(255,255,255,0.82) 60%, rgba(240,224,180,0.28) 100%) !important;
      z-index: 2;
    }
    .exp-icon {
      font-size: 2.1rem;
      color: #a07e2d;
      background: rgba(255,246,224,0.95);
      border-radius: 50%;
      width: 74px;
      height: 74px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px auto;
      box-shadow: 0 2px 8px rgba(160,126,45,0.10);
      transition: background 0.3s, color 0.3s, transform 0.4s cubic-bezier(.4,0,.2,1);
      border: 1.5px solid #e7d7b6;
      animation: icon-pop 1.2s cubic-bezier(.4,0,.2,1) both;
      overflow: hidden;
    }
    .exp-icon i {
      font-size: 2.1rem;
      line-height: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%;
    }
    .exp-card:hover .exp-icon, .exp-card:focus-within .exp-icon {
      background: #a07e2d;
      color: #fff6e0;
      transform: scale(1.13) rotate(-8deg);
      box-shadow: 0 4px 16px #a07e2d33;
    }
    @keyframes icon-pop {
      0% { transform: scale(0.7) rotate(-10deg); opacity: 0; }
      60% { transform: scale(1.15) rotate(8deg); opacity: 1; }
      100% { transform: scale(1) rotate(0); opacity: 1; }
    }
    .exp-title {
      font-family: 'Montserrat', 'Inter', Arial, sans-serif;
      font-size: 1.18rem;
      font-weight: 600;
      color: #6a5b2e;
      letter-spacing: 0.5px;
      margin-bottom: 0.5rem;
      text-align: center;
    }
    .exp-desc {
      color: #555;
      font-size: 1.01rem;
      margin-bottom: 0;
      text-align: center;
    }
    @media (max-width: 991px) {
      .exp-card { min-height: 240px; padding: 1.2rem 0.7rem 1rem 0.7rem; }
      .exp-icon { font-size: 2.1rem; width: 54px; height: 54px; }
    }
    @media (max-width: 600px) {
      .exp-card { min-height: 180px; }
      .exp-title { font-size: 1.01rem; }
      .exp-desc { font-size: 0.97rem; }
    }
    .exp-card {
      background: rgba(255,255,255,0.55) !important;
      backdrop-filter: blur(2px);
      -webkit-backdrop-filter: blur(2px);
    }
/* Modern card hover animation for booking cards */
.forQuery .card {
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s cubic-bezier(.4,0,.2,1), border 0.35s;
  will-change: transform, box-shadow;
  border: 2px solid transparent;
}
.forQuery .card:hover, .forQuery .card:focus-within {
  transform: scale(1.045) translateY(-10px) rotate(-1.2deg);
  box-shadow: 0 12px 48px 0 #a07e2d33, 0 2px 16px rgba(0,0,0,0.13);
  border: 2px solid #a07e2d;
  z-index: 2;
}
.forQuery .card img {
  transition: filter 0.35s, transform 0.35s;
}
.forQuery .card:hover img, .forQuery .card:focus-within img {
  filter: brightness(1.08) contrast(1.12) saturate(1.08);
  transform: scale(1.03) rotate(-0.5deg);
}
.forQuery .card h5, .forQuery .card p {
  transition: color 0.3s;
}
.forQuery .card:hover h5, .forQuery .card:focus-within h5 {
  color: #b8954b !important;
}
/* Modern animation for Our Story section */
.about_area .about_info[data-aos] {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.about_area .about_info.aos-animate {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.about_area .about_thumb img,
.about_area .about_thumb2 img {
  transition: box-shadow 0.5s cubic-bezier(.4,0,.2,1), transform 0.5s cubic-bezier(.4,0,.2,1), filter 0.5s;
  box-shadow: 0 4px 32px rgba(160,126,45,0.10), 0 1.5px 8px rgba(0,0,0,0.10);
  border-radius: 18px;
  filter: grayscale(10%) brightness(0.98) contrast(1.08);
}
.about_area .about_thumb img:hover,
.about_area .about_thumb2 img:hover {
  transform: scale(1.045) rotate(-1.5deg);
  box-shadow: 0 8px 48px 4px #a07e2d33, 0 2px 12px rgba(0,0,0,0.13);
  filter: grayscale(0%) brightness(1.03) contrast(1.12);
}
.about_area .about_thumb {
  transition: box-shadow 0.5s cubic-bezier(.4,0,.2,1), transform 0.5s cubic-bezier(.4,0,.2,1);
}
.about_area .about_thumb[data-aos] {
  opacity: 0;
  transform: translateX(40px) scale(0.97);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.about_area .about_thumb.aos-animate {
  opacity: 1;
  transform: translateX(0) scale(1);
}
/* Learn More button hover effect */
.line-button:hover, a.line-button:hover {
  color: #a07e2d !important;
  border-color: #a07e2d !important;
  border-bottom: 2px solid #a07e2d !important;
}

/* Ensure underline (border-bottom) color matches on default and hover */
.line-button, a.line-button {
  border-bottom: 2px solid #a07e2d !important;
}
/* Our Story section title color */
.section_title span {
  color: #a07e2d !important;
}
/* Tribal texture appears on navbar only when scrolled */
.main-header-area.scrolled {
  background: #fff !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: background 0.3s, box-shadow 0.3s;
  background-image: url('https://www.transparenttextures.com/patterns/tribal.png'); /* Example tribal pattern */
  background-repeat: repeat;
  background-size: auto;
}
/* Force navbar logo and all buttons into a single horizontal line */
.main-header-area .row.no-gutters {
  display: flex !important;
  flex-wrap: nowrap;
  align-items: center;
}
.main-header-area .row.no-gutters > [class^="col-"] {
  float: none !important;
  width: auto !important;
  position: static !important;
  display: flex;
  align-items: center;
  padding: 0 !important;
}
.main-header-area .main-menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.main-header-area .logo-img {
  margin: 0 32px;
}
.main-header-area .book_room {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 991px) {
  .main-header-area .row.no-gutters {
    flex-direction: column;
    align-items: stretch;
  }
  .main-header-area .main-menu {
    justify-content: flex-start;
  }
  .main-header-area .logo-img {
    margin: 0 auto;
  }
}
  /* Navbar arrow color update */
  .main-menu ul#navigation > li > a .ti-angle-down {
    color: #a07e2d !important;
    transition: color 0.2s;
  }
  .main-header-area.scrolled .main-menu ul#navigation > li > a .ti-angle-down {
    color: #a07e2d !important;
  }
  body a{
    text-decoration: none !important;
  }
  /* Navbar scroll effect styles */
  .main-header-area.scrolled {
    background: #fff !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: background 0.3s, box-shadow 0.3s;
  }
  .main-header-area.scrolled .main-menu ul#navigation > li > a {
    color:  #a07e2d !important; /* More visible vibrant gold */
  }
  /* Keep Book Now button white on scroll */
  .main-header-area.scrolled .main-menu ul#navigation > li > a.book_btn,
  .main-header-area.scrolled .main-menu ul#navigation > li > a.book_now {
    color: #fff !important;
  }
  .main-header-area.scrolled .book_btn a.popup-with-form,
  .main-header-area.scrolled .book_now {
    background-color: #bc3301 !important;
    color: #fff !important;
    border: none !important;
  }
  .main-header-area.scrolled .book_btn a.popup-with-form:hover,
  .main-header-area.scrolled .book_now:hover {
    background-color: #bc3301 !important;
    color: #fff !important;
  }
  .btn-gold, .book_btn a.popup-with-form, .book_now {
  background-color: #bc3301 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 12px 32px !important;
  font-weight: bold;
  letter-spacing: 2px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  animation: booknow-glow 2.5s infinite alternate;
  position: relative;
  }
  .btn-gold:hover, .book_btn a.popup-with-form:hover, .book_now:hover {
  background-color: #a07e2d !important;
  color: #fff !important;
  animation: booknow-pulse 0.7s;
  box-shadow: 0 0 16px 2px #a07e2d66, 0 2px 8px rgba(0,0,0,0.12);
  transform: scale(1.06);
  }
@keyframes booknow-pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 #a07e2d44; }
  60% { transform: scale(1.09); box-shadow: 0 0 16px 4px #a07e2d66; }
  100% { transform: scale(1); box-shadow: 0 0 0 0 #a07e2d44; }
}
@keyframes booknow-glow {
  0% { box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
  100% { box-shadow: 0 0 16px 2px #a07e2d44, 0 2px 8px rgba(0,0,0,0.12); }
}
      .section {
        min-height: 100vh; /* full screen */
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        font-size: 2rem;
      }

      .bg-section {
        background-image: url("https://static.india.com/wp-content/uploads/2022/10/Chilika-Lake.jpg");
        background-size: cover;
        background-position: center;
        background-attachment: fixed; /* 👈 this makes it stay fixed */
      }

      .bg-section h5 {
        font-weight: bolder;
        text-align: center;
        color: white;
      }

      .icon-circle {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.2);
        margin: 0 auto 20px;
        font-size: 2rem;
        color: #fff;
        animation: pulse 2s infinite;
      }

      @keyframes pulse {
        0% {
          transform: scale(1);
          opacity: 1;
        }
        50% {
          transform: scale(1.1);
          opacity: 0.7;
        }
        100% {
          transform: scale(1);
          opacity: 1;
        }
      }

      .experiences-section {
        padding: 80px 20px;
        background: linear-gradient(135deg, #f5f7fa, #c3cfe2), url('../img/about.jpg') center center/cover no-repeat;
        background-blend-mode: lighten;
        position: relative;
      }

        .main-header-area .row.no-gutters {
          display: flex !important;
          flex-wrap: nowrap;
          align-items: center;
          justify-content: space-between;
        }
        .main-header-area .row.no-gutters > [class^="col-"] {
          float: none !important;
          width: auto !important;
          position: static !important;
          display: flex;
          align-items: center;
          padding: 0 !important;
        }
        .main-header-area .logo-img {
          margin: 0 40px 0 0;
          min-width: 120px;
        }
        .main-header-area .main-menu {
          display: flex;
          align-items: center;
          justify-content: flex-start;
          flex: 1 1 auto;
        }
        .main-header-area .main-menu ul#navigation {
          display: flex;
          align-items: center;
          gap: 36px;
          margin: 0;
          padding: 0;
        }
        .main-header-area .main-menu ul#navigation > li {
          display: flex;
          align-items: center;
          margin: 0;
        }
        .main-header-area .main-menu ul#navigation > li > a {
          font-size: 1.15rem;
          font-weight: 500;
          color: #111 !important;
          padding: 0 6px;
          letter-spacing: 1px;
          transition: color 0.2s;
        }
        .main-header-area .book_room {
          display: flex;
          align-items: center;
          margin-left: 40px;
        }
      .experiences-section h2 {
        font-weight: 700;
        margin-bottom: 20px;
        text-align: center;
        color: #333;
      }
      .experiences-section p.lead {
        text-align: center;
        margin-bottom: 50px;
        color: #555;
      }

      .experience-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 25px;
      }

      .experience-icon {
        flex-shrink: 0;
        width: 55px;
        height: 55px;
        border-radius: 50%;
        background:  #a07e2d;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        margin-right: 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transform: scale(0.8);
        transition: transform 0.4s ease-in-out;
      }

      /* Scale up icon when AOS activates */
      .aos-animate .experience-icon {
        transform: scale(1);
      }

      .experience-text {
        font-size: 1.05rem;
        color: #333;
      }

      .glass-card {
        padding: 25px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.15) !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        color: #fff;
        text-align: center;
      }

      .glassism-navbar {
        background: rgba(255, 255, 255, 0.15) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
      }

      .faq-section {
        /* min-height: 100vh; */
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
      }

      .rooms-rates-title {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #b38b59;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  position: relative;
  text-shadow: 0 4px 18px rgba(179,139,89,0.08), 0 1px 0 #fff;
}
.rooms-rates-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #b38b59 60%, #fffaf0 100%);
  border-radius: 2px;
  margin: 12px auto 0 auto;
  box-shadow: 0 2px 8px rgba(179,139,89,0.13);
}
.rooms-rates-desc {
  font-family: 'Inter', 'Montserrat', Arial, sans-serif;
  font-size: 0.95rem !important;
  font-weight: 500;
  color: #6a5b2e;
  letter-spacing: 0.5px;
  line-height: 1.5;
  margin-top: 18px;
  margin-bottom: 0;
  text-shadow: 0 2px 8px rgba(160,126,45,0.07);
}
@media (max-width: 600px) {
  .rooms-rates-title { font-size: 1.3rem; }
  .rooms-rates-title::after { width: 36px; height: 3px; }
  .rooms-rates-desc { font-size: 0.7rem; }
}

.room-card {
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  background: #fff;
}
.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.room-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.room-card img:hover {
  transform: scale(1.05);
}
body {
  background: linear-gradient(135deg, #fffaf0, #fdfdfd);
  font-family: 'Poppins', sans-serif;
}
h2, h3 {
  font-family: 'Playfair Display', serif;
  color: #b38b59;
}
.book-btn {
  background: linear-gradient(135deg, #c5a46d, #b38b59);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.book-btn:hover {
  background: linear-gradient(135deg, #b38b59, #9c7c47);
  transform: scale(1.05);
}
.room-card ul li::before {
  content: "✔ ";
  color: #b38b59;
  font-weight: bold;
}
.footer {
  background: url('../img/desiafooter.jpg') center center/cover no-repeat !important;
  min-height: 300px;
  width: 100%;
  background-attachment: fixed !important;
  background-color: transparent !important;
}
/* Modern card hover animation for booking cards */
.forQuery .card {
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s cubic-bezier(.4,0,.2,1), border 0.35s;
  will-change: transform, box-shadow;
  border: 2px solid transparent;
}
.forQuery .card:hover, .forQuery .card:focus-within {
  transform: scale(1.045) translateY(-10px) rotate(-1.2deg);
  box-shadow: 0 12px 48px 0 #a07e2d33, 0 2px 16px rgba(0,0,0,0.13);
  border: 2px solid #a07e2d;
  z-index: 2;
}
.forQuery .card img {
  transition: filter 0.35s, transform 0.35s;
}
.forQuery .card:hover img, .forQuery .card:focus-within img {
  filter: brightness(1.08) contrast(1.12) saturate(1.08);
  transform: scale(1.03) rotate(-0.5deg);
}
.forQuery .card h5, .forQuery .card p {
  transition: color 0.3s;
}
.forQuery .card:hover h5, .forQuery .card:focus-within h5 {
  color: #b8954b !important;
}
/* Modern animation for Our Story section */
.about_area .about_info[data-aos] {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.about_area .about_info.aos-animate {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.about_area .about_thumb img,
.about_area .about_thumb2 img {
  transition: box-shadow 0.5s cubic-bezier(.4,0,.2,1), transform 0.5s cubic-bezier(.4,0,.2,1), filter 0.5s;
  box-shadow: 0 4px 32px rgba(160,126,45,0.10), 0 1.5px 8px rgba(0,0,0,0.10);
  border-radius: 18px;
  filter: grayscale(10%) brightness(0.98) contrast(1.08);
}
.about_area .about_thumb img:hover,
.about_area .about_thumb2 img:hover {
  transform: scale(1.045) rotate(-1.5deg);
  box-shadow: 0 8px 48px 4px #a07e2d33, 0 2px 12px rgba(0,0,0,0.13);
  filter: grayscale(0%) brightness(1.03) contrast(1.12);
}
.about_area .about_thumb {
  transition: box-shadow 0.5s cubic-bezier(.4,0,.2,1), transform 0.5s cubic-bezier(.4,0,.2,1);
}
.about_area .about_thumb[data-aos] {
  opacity: 0;
  transform: translateX(40px) scale(0.97);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.about_area .about_thumb.aos-animate {
  opacity: 1;
  transform: translateX(0) scale(1);
}
/* Learn More button hover effect */
.line-button:hover, a.line-button:hover {
  color: #a07e2d !important;
  border-color: #a07e2d !important;
  border-bottom: 2px solid #a07e2d !important;
}

/* Ensure underline (border-bottom) color matches on default and hover */
.line-button, a.line-button {
  border-bottom: 2px solid #a07e2d !important;
}
/* Our Story section title color */
.section_title span {
  color: #a07e2d !important;
}
/* Tribal texture appears on navbar only when scrolled */
.main-header-area.scrolled {
  background: #fff !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: background 0.3s, box-shadow 0.3s;
  background-image: url('https://www.transparenttextures.com/patterns/tribal.png'); /* Example tribal pattern */
  background-repeat: repeat;
  background-size: auto;
}
/* Force navbar logo and all buttons into a single horizontal line */
.main-header-area .row.no-gutters {
  display: flex !important;
  flex-wrap: nowrap;
  align-items: center;
}
.main-header-area .row.no-gutters > [class^="col-"] {
  float: none !important;
  width: auto !important;
  position: static !important;
  display: flex;
  align-items: center;
  padding: 0 !important;
}
.main-header-area .main-menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.main-header-area .logo-img {
  margin: 0 32px;
}
.main-header-area .book_room {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 991px) {
  .main-header-area .row.no-gutters {
    flex-direction: column;
    align-items: stretch;
  }
  .main-header-area .main-menu {
    justify-content: flex-start;
  }
  .main-header-area .logo-img {
    margin: 0 auto;
  }
}
  /* Navbar arrow color update */
  .main-menu ul#navigation > li > a .ti-angle-down {
    color: #a07e2d !important;
    transition: color 0.2s;
  }
  .main-header-area.scrolled .main-menu ul#navigation > li > a .ti-angle-down {
    color: #a07e2d !important;
  }
  body a{
    text-decoration: none !important;
  }
  /* Navbar scroll effect styles */
  .main-header-area.scrolled {
    background: #fff !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: background 0.3s, box-shadow 0.3s;
  }
  .main-header-area.scrolled .main-menu ul#navigation > li > a {
    color:  #a07e2d !important; /* More visible vibrant gold */
  }
  /* Keep Book Now button white on scroll */
  .main-header-area.scrolled .main-menu ul#navigation > li > a.book_btn,
  .main-header-area.scrolled .main-menu ul#navigation > li > a.book_now {
    color: #fff !important;
  }
  .main-header-area.scrolled .book_btn a.popup-with-form,
  .main-header-area.scrolled .book_now {
    background-color: #b8954b !important;
    color: #fff !important;
    border: none !important;
  }
  .main-header-area.scrolled .book_btn a.popup-with-form:hover,
  .main-header-area.scrolled .book_now:hover {
    background-color: #a07e2d !important;
    color: #fff !important;
  }
  .btn-gold, .book_btn a.popup-with-form, .book_now {
  background-color: #b8954b !important;
  color: #fff !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 12px 32px !important;
  font-weight: bold;
  letter-spacing: 2px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  animation: booknow-glow 2.5s infinite alternate;
  position: relative;
  }
  .btn-gold:hover, .book_btn a.popup-with-form:hover, .book_now:hover {
  background-color: #a07e2d !important;
  color: #fff !important;
  animation: booknow-pulse 0.7s;
  box-shadow: 0 0 16px 2px #a07e2d66, 0 2px 8px rgba(0,0,0,0.12);
  transform: scale(1.06);
  }
@keyframes booknow-pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 #a07e2d44; }
  60% { transform: scale(1.09); box-shadow: 0 0 16px 4px #a07e2d66; }
  100% { transform: scale(1); box-shadow: 0 0 0 0 #a07e2d44; }
}
@keyframes booknow-glow {
  0% { box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
  100% { box-shadow: 0 0 16px 2px #a07e2d44, 0 2px 8px rgba(0,0,0,0.12); }
}
      .section {
        min-height: 100vh; /* full screen */
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        font-size: 2rem;
      }

      .bg-section {
        background-image: url("https://static.india.com/wp-content/uploads/2022/10/Chilika-Lake.jpg");
        background-size: cover;
        background-position: center;
        background-attachment: fixed; /* 👈 this makes it stay fixed */
      }

      .bg-section h5 {
        font-weight: bolder;
        text-align: center;
        color: white;
      }

      .icon-circle {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.2);
        margin: 0 auto 20px;
        font-size: 2rem;
        color: #fff;
        animation: pulse 2s infinite;
      }

      @keyframes pulse {
        0% {
          transform: scale(1);
          opacity: 1;
        }
        50% {
          transform: scale(1.1);
          opacity: 0.7;
        }
        100% {
          transform: scale(1);
          opacity: 1;
        }
      }

      .experiences-section {
        padding: 80px 20px;
        background: linear-gradient(135deg, #f5f7fa, #c3cfe2), url('../img/about.jpg') center center/cover no-repeat;
        background-blend-mode: lighten;
        position: relative;
      }

        .main-header-area .row.no-gutters {
          display: flex !important;
          flex-wrap: nowrap;
          align-items: center;
          justify-content: space-between;
        }
        .main-header-area .row.no-gutters > [class^="col-"] {
          float: none !important;
          width: auto !important;
          position: static !important;
          display: flex;
          align-items: center;
          padding: 0 !important;
        }
        .main-header-area .logo-img {
          margin: 0 40px 0 0;
          min-width: 120px;
        }
        .main-header-area .main-menu {
          display: flex;
          align-items: center;
          justify-content: flex-start;
          flex: 1 1 auto;
        }
        .main-header-area .main-menu ul#navigation {
          display: flex;
          align-items: center;
          gap: 36px;
          margin: 0;
          padding: 0;
        }
        .main-header-area .main-menu ul#navigation > li {
          display: flex;
          align-items: center;
          margin: 0;
        }
        .main-header-area .main-menu ul#navigation > li > a {
          font-size: 1.15rem;
          font-weight: 500;
          color: #111 !important;
          padding: 0 6px;
          letter-spacing: 1px;
          transition: color 0.2s;
        }
        .main-header-area .book_room {
          display: flex;
          align-items: center;
          margin-left: 40px;
        }
      .experiences-section h2 {
        font-weight: 700;
        margin-bottom: 20px;
        text-align: center;
        color: #333;
      }
      .experiences-section p.lead {
        text-align: center;
        margin-bottom: 50px;
        color: #555;
      }

      .experience-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 25px;
      }

      .experience-icon {
        flex-shrink: 0;
        width: 55px;
        height: 55px;
        border-radius: 50%;
        background:  #a07e2d;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        margin-right: 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transform: scale(0.8);
        transition: transform 0.4s ease-in-out;
      }

      /* Scale up icon when AOS activates */
      .aos-animate .experience-icon {
        transform: scale(1);
      }

      .experience-text {
        font-size: 1.05rem;
        color: #333;
      }

      .glass-card {
        padding: 25px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.15) !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        color: #fff;
        text-align: center;
      }

      .faq-section {
        /* min-height: 100vh; */
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
      }