@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::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* reduces brightness */
    z-index: 1;
  }

  .banner-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 15px;
  }

  .banner-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
  }

  .banner-content p {
    font-size: 1.5rem;
    margin-top: 10px;
  }

  @media (max-width: 767px) {
    .banner {
      height: 40vh;
    }
    .banner-content h1 {
      font-size: 2rem;
    }
    .banner-content p {
      font-size: 1rem;
    }
  }
  .blog-card {
    border-radius: 20px;
    overflow: hidden;
    background-color: #fff;
    transition: transform 0.3s ease;
  }

  .blog-card:hover {
    transform: translateY(-5px);
  }

  .blog-img-wrapper {
    position: relative;
  }

  .blog-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
  }

  .blog-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #e6f4ee;
    color: #0f7f56;
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 25px;
    font-weight: 500;
  }

  .blog-arrow {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: #0f7f56;
    color: white;
    border-radius: 50%;
    width: 40px;             /* fixed width */
    height: 40px;            /* fixed height */
    display: flex;           /* center icon inside */
    align-items: center;
    justify-content: center;
    font-size: 16px;
  }
  

  .blog-content {
    padding: 15px 10px;
  }

  .blog-title {
    font-size: 18px;
    font-weight: 600;
    color: #086D59;

  }

  .blog-date {
    color: #888;
    font-size: 14px;
  }
/* 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;
  }
}