@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
font-family: "Inter", sans-serif !important;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* prevent horizontal scroll only */
}

html, body {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  height: 100%;
}
p{
  font-size: 15px !important;
}
#scroll-container {
  height: 100%;
  overflow-y: auto;
}

.fade-in,
.fade-in-left,
.fade-in-right {
  opacity: 1;
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.fade-in {
  transform: translateY(50px);
}
.fade-in-left {
  transform: translateX(-30px); /* reduce to prevent overflow */
}
.fade-in-right {
  transform: translateX(30px); /* reduce to prevent overflow */
}

.fade-in.show,
.fade-in-left.show,
.fade-in-right.show {
  opacity: 1;
  transform: translate(0);
}





  .navbar {
    transition: all 0.3s ease;
    padding: 30px;
  }
  .navbar-nav {
    margin-left: 60px; /* pushes links more right */
  }
  
  .navbar-nav .nav-link {
    padding: 0 0.45rem; /* horizontal spacing */
  }
  .navbar-nav .nav-link {
    font-size: 16px; 
  }
  
  .navbar-brand {
    font-size: 1.8rem;
    line-height: 1.2;
    color: white;
    margin-left: 20px;
  }

  .navbar-brand span {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 1px;
  }

  .navbar-nav .nav-link {
    color: white;
    font-weight: 500;
    margin-right: 1rem;
    transition: 0.3s;
    font-size: 13px;
    position: relative;
  }

  .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #00C7A0;
    transition: 0.3s ease;
  }

  .navbar-nav .nav-link:hover::after,
  .navbar-nav .nav-link.active::after {
    width: 100%;
  }

  .nav-link.active {
    font-weight: 700;
  }

  .btn-book {
    background-color: #00C7A0 !important;
    color: white !important;
    border: none !important;
    border-radius: 5px !important;
    padding: 0.4rem 1rem !important;
    white-space: nowrap;
  }

  .navbar.scrolled {
    background-color: white !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }

  .navbar.scrolled .nav-link,
  .navbar.scrolled .navbar-brand {
    color: black !important;
  }

  .navbar.scrolled .nav-link::after {
    background-color: #00C7A0;
  }

  .navbar-toggler {
    border: none;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .navbar-collapse {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 1rem;
  }

  .navbar.scrolled .navbar-collapse {
    background-color: white !important;
  }

  .navbar-collapse .nav-link {
    padding: 0.5rem 0;
  }
/* Toggle icon color when navbar is scrolled or menu is open */
.navbar.scrolled .navbar-toggler-icon,
.navbar.menu-open .navbar-toggler-icon {
  filter: invert(1); /* turn it black */
}

/* Background when menu is open */
.navbar.show,
.navbar.scrolled {
  background-color: white !important;
}

.navbar.show .navbar-collapse {
  background-color: white !important;
}

.navbar.show .nav-link,
.navbar.show .navbar-brand {
  color: black !important;
}

  @media (min-width: 992px) {
    .navbar-collapse {
      background-color: transparent !important;
      padding: 0;
    }
  }
  /* @media (min-width: 992px) {
    .navbar-nav .nav-link {
      font-size: 0.9rem;
    }
  } */

.logo-img {
  height: 60px;
  transition: 0.3s ease;
}




.banner-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* <-- Adjust the opacity for brightness control */
  z-index: 1;
}

.banner-section .container {
  position: relative;
  z-index: 2;
}

.gallery-section img {
  transition: transform 0.3s ease;
}
.gallery-section img:hover {
  transform: scale(1.03);
}



  .package-card {
    border-radius: 28px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
  }
  
  .package-card img {
    height: 300px; /* increase if needed */
    object-fit: cover;
  }

  @media (max-width: 768px) {
    .package-card img {
      height: 100%; /* increase if needed */
    }
  }

  

.package-card .card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 0 0 20px 20px;
  background-color: #fff;
  
}

.custom-nav .custom-prev,
.custom-nav .custom-next {
  position: absolute;
  top: 40%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #fff;
  border: none;
 display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;  z-index: 999;
  padding: 10px 15px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.custom-prev {
  left: -20px;
}
.custom-next {
  right: -20px;
}

    .price-card {
      position: absolute;
      right: 10%;
      background-color: white;
      color: black;
      padding: 20px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.2);
      border-radius: 8px;
      width: 180px;
      z-index: 10;
    }

    .text-section {
      padding: 100px 15px 40px; /* Top padding increased for space for overlapping card */
      background: #f8f9fa;
          
    }

    .btn-group-custom {
      display: flex;
      gap: 10px;
      justify-content: start;
      flex-wrap: wrap;
    }

    @media (max-width: 768px) {
      .banner-section {
        height: 40vh;
        padding: 30px;
      }

      .price-card {
        position: static;
        margin: 30px auto 0;
        display: block;
      }

      .btn-group-custom {
        justify-content: center;
      }

      .text-section {
        padding-top: 40px;
      }
    }


.mobile-price-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 9999;
}
.section-title {
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 1rem;
}

.schedule-section h3 {
  font-size: 1.75rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .schedule-section h3 {
    font-size: 1.5rem;
  }
}
.go-next-section {
      background-color: #fff;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      padding: 40px 20px;
      margin: 40px 0;
      border-radius: 25px;
    }

    .go-next-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 8px;
    }

    .go-next-btn {
      background-color: #00C7A0;
      color: #fff;
      padding: 10px 25px;
      border: none;
      border-radius: 6px;
      text-transform: uppercase;
      font-weight: 500;
      margin-top: 20px;
      text-decoration: none;
    }

    .go-next-btn:hover {
      background-color: #333;
    }
   .leaf-decor {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 120px;
  z-index: 0;
  opacity: 0.8;
  pointer-events: none;
}
@media (max-width: 768px) {
  .leaf-decor {
    top: -20px;       /* Place it at the top */
    bottom: auto;     /* Remove the bottom setting */
    left: 10%;        /* Center horizontally */
    transform: translateX(-50%);
    width: 100px;     /* Reduce size on mobile */
  }
}
/* Updated Footer Base */
.footer-section {
  background-color: #e3f4f4;
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 500px;
  padding: 60px 0 40px 0;
  position: relative;
  overflow: hidden;
}

/* Remove dark overlay if it existed previously */
.footer-section::after {
  display: none;
}

/* Link Styling */
.footer-section a {
  color: #000 !important;
  text-decoration: none !important;
}

/* Footer Logo */
.footer-logo {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.2;
  color: #000;
}

.footer-sub {
  font-weight: 300;
  font-size: 18px;
  color: #000;
}
.footer-center-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 0 !important;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.footer-center-image,
.footer-side-image {
  width: 400px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
  pointer-events: none;
}
/* Removes flex gap and aligns tightly */
.grass-row {
  gap: 0 !important; /* Remove flex spacing */
}

/* Remove any default spacing or rendering gaps between images */
.grass-row img {
  display: block;          /* Removes inline whitespace */
  margin: 0 !important;     /* Remove default spacing */
  padding: 0 !important;
  line-height: 0;
}

/* Optional: slight overlap to visually blend the edges */
.grass-row img + img {
  margin-left: -25px !important; /* Adjust for visual continuity */
}

.footer-center-image-wrapper img {
  display: block;
  margin: 0;
  padding: 0;
}

.footer-section.animate-leaf .footer-center-image,
.footer-section.animate-leaf .footer-side-image {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 576px) {
  .footer-center-image,
  .footer-side-image {
    width: 270px;
  }
}


/* Footer Bottom */
.footer-bottom {
  padding-top: 10px;
  padding-bottom: 15px;
  margin-top: auto;
}

/* Leaf Image Wrapper */
.footer-leaf-wrapper {
  position: relative;
  width: 100%;
  text-align: right;
  margin-top: 30px;
}

/* Leaf Image Animation */
.footer-leaf-left {
  position: absolute;
  bottom: 10px;
  left: -150px;
  width: 200px;
  opacity: 0;
  transition: left 1s ease, opacity 1s ease;
  z-index: 0;
  pointer-events: none;
}

.footer-section.animate-leaf .footer-leaf-left {
  left: 10px;
  opacity: 1;
}

/* Already existing right-side image */
.footer-leaf-right {
  position: absolute;
  bottom: 20px;
  right: -150px;
  width: 260px;
  opacity: 0;
  transition: right 1s ease, opacity 1s ease;
  z-index: 0;
  pointer-events: none;
}

.footer-section.animate-leaf .footer-leaf-right {
  right: 10px;
  opacity: 1;
}


.footer-section.animate-leaf .footer-leaf {
  right: 10px;
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-logo {
    font-size: 22px;
    margin-top: 0;
  }

  .footer-leaf {
    width: 200px;
    right: -100px;
    bottom: 10px;
  }

  .footer-section.animate-leaf .footer-leaf {
    right: 0;
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-bottom .container div:last-child {
    text-align: center !important;
  }
}
/* Mobile View: Move to top */
@media (max-width: 576px) {
  .footer-leaf-left {
    position: relative;
    bottom: auto;
    left: auto;
    top: 0;
    margin: 0 auto 30px auto;
    display: block;
    opacity: 1 !important;
    width: 160px;
    transform: none !important;
  }

  .footer-section.animate-leaf .footer-leaf-left {
    left: -120px;
    opacity: 1;
    top: -85px;
  }
}
.footer-logo-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-bottom: 10px;
}

.footer-trust-logo {
  max-height: 55px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.footer-trust-logo:hover {
  transform: scale(1.05);
}

@media (max-width: 576px) {
  .footer-logo-trust {
    flex-direction: column;
    gap: 10px;
  }
}
