@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;
  
}
 html,body {
    overflow-x: hidden !important;
  }

p{
  font-size: 15px !important;
}

html, body {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  height: 100%;
}

#scroll-container {
  height: 100%;
  overflow-y: auto;
}

.fade-in,
.fade-in-left,
.fade-in-right {
  opacity: 0;
  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: 20px;
  }
  .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: 15px; 
  }
  
  .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;
    font-size: 13px; /* change from 16px to 14px */
    margin-right: 1rem;
    transition: 0.3s;
    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;
}

  .hero-overlay {
    background: rgba(0, 0, 0, 0.4); /* to decrease brightness */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 0 1rem;
  }

  

  .hero-buttons .btn {
    margin-right: 15px;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: 0.3s ease-in-out;
  }

  .btn-green {
    background-color: transparent !important ;
    color: white !important;
    border: none;
  }

  .btn-green:hover,
  .btn-outline-light:hover {
    background-color: #17BF9E !important;
    color: white;
  }

  @media (max-width: 768px) {
    .hero-section {
      text-align: center;
      justify-content: center;
    }

    .hero-buttons {
      justify-content: center;
      flex-wrap: wrap;
    }

    .hero-buttons .btn {
      margin-bottom: 10px;
    }
  }


  .why-us-section {
    padding: 4rem 1rem;
  }

  .btn-outline-green {
    border: 1px solid #007f4f !important;
    color: #007f4f !important;
    background-color: white !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 25px !important;
    transition: 0.3s ease !important;
  }

  .btn-outline-green:hover {
    background-color: #086D59 !important;
    color: white !important;
  }

  .btn-filled-green {
    background-color: #086D59 !important;
    color: white !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 25px !important;
    border: none !important;
  }

  .feature-icon {
    width: 60px;
    height: auto;
    margin-bottom: 1rem;
  }

  .feature-title {
    font-weight: 600;
    font-size: 1.2rem;
    color: #086D59;
  }

  .feature-desc {
    font-size: 0.95rem;
    color: #000;
  }



  .jumbotron-content {
    max-width: 500px;
  }

  .jumbotron-content h2 {
    font-size: 2rem;
    font-weight: 400;

  }

  .jumbotron-content p {
    font-size: 1rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 400;

  }

  .btn-green {
    background-color: #007f4f !important;
    color: white !important;
    padding: 0.5rem 1.5rem !important;
    border: none !important;
    border-radius: 25px !important;
  }

  .btn-green:hover {
    background-color: #006842 !important;
  }

  @media (max-width: 768px) {
    .custom-jumbotron {
      padding: 2rem 1.5rem;
      text-align: center;
    }

    .jumbotron-content {
      max-width: 100%;
    }
  }
  .btn-green {
    background-color: #007f4f !important;
    color: white !important;
    border: none !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 25px !important;
  }

  .btn-green:hover {
    background-color: #006c42 !important;
  }

  .nav-btn {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    padding: 0;
    background-color: white;
    color: #007f4f;
    border: 1px solid #007f4f;
    transition: all 0.3s ease;
  }
  
  .nav-btn:hover {
    background-color: #007f4f;
    color: white;
  }
  

  .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;
  
}
.leaf-decors {
  position: absolute;
  left: -90px;
  bottom: -100px;
  width: 250px; /* Adjust size as needed */
  z-index: 0;
  opacity: 0.4;
  pointer-events: none;
}
@media (max-width: 768px) {
  .leaf-decors {
    display: none; /* or reduce size */
  }
}



  /* @media (max-width: 768px) {
    .package-card img {
      height: 180px;
    }
  } */
  .custom-btn {
    background-color: #086D59  !important;
    color: white !important;
    border-radius: 25px !important;
    padding: 8px 20px !important;
  }

  .custom-btn:hover {
    background-color: #086D59 !important;
  }

  .custom-outline-btn {
    border: 1px solid #086D59 !important;
    color: #00824b !important;
    background-color: transparent !important;
    border-radius: 25px !important;
    padding: 8px 20px !important;
  }

  .custom-outline-btn:hover {
    background-color: #086D59  !important;
    color: white !important;
  }

  .btn-success.rounded-circle {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .woodland{
    color: #086D59;

    
  }
.rome-image{
  border-radius: 30px;
}
  @media (max-width: 576px) {
    .custom-btn, .custom-outline-btn {
      padding: 6px 14px;
      font-size: 14px;
    }

    .btn-success.rounded-circle {
      width: 40px;
      height: 40px;
    }
  }

  .circle-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #006d47;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    border: none;
  }
  .accordion-button::after {
    display: none;
  }
  .accordion-header .toggle-icon {
    font-size: 20px !important;
    color: #006d47 !important;
    cursor: pointer !important;
  }
  .accordion-item{
    border: none !important;
    border-bottom: 1px solid #ccc !important;
    border: 0px;

  }
  /* .accordion-button {
  } */
  .accordion-button:not(.collapsed) {
    background-color: transparent !important;
    box-shadow: none !important;
    color: inherit !important;
  }
  .accordion-button {
    border-radius: 0 !important;
  }
  .accordion-button {
    border: none !important; /* Remove all borders */
    border-bottom: 1px solid #ddd; /* Add bottom border only */
    border-radius: 0 !important;
    font-size: 20px !important;
    color: #086D59 !important;
    font-weight: 500 !important;

    
  }
  
  .accordion-button {
    border: none;
    background-color: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
  }
.tree-decor-left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 160px;         /* adjust as needed */
  z-index: 0;
  pointer-events: none;
}

/* Optional: Adjust on smaller devices */
@media (max-width: 576px) {
  .tree-decor-left {
    width: 120px;
    bottom: -0px;
  }
}

  
 .adventure-section {
  background:  #e1fbf6;
  padding: 60px;
}


  .adventure-section h6 {
    color: #DAE7E5; /* success green shade */
    font-weight: 600;
  }

  .adventure-section h2 {
    color: #086D59;
    font-weight: 700;
    font-size: 42px;

  }

  .adventure-icon-title {
    font-weight: 600;
    color: #00664d;
    font-size: 18px;
  }

  .adventure-icon-text {
    font-size: 14px;
    color: #333;
    max-width: 260px;
  }

  .adventure-icon-img {
    width: 70px;
    height: auto;
    margin-bottom: 10px;
  }
  .adventure-main-img {
    object-fit: cover;
    border-radius: 20px;
    width: 100%;
    /* margin-right: 60px; */
  }
  

  .reserve-btn {
    background-color: #086D59;
    color: #fff;
    padding: 10px 30px;
    border-radius: 30px;
    border: none;
    transition: background 0.3s ease;
  }

  .reserve-btn:hover {
    background-color: #005c45;
  }
  .adventure-card + .adventure-card {
    margin-top: 30px;
  }
  

  @media (max-width: 767px) {
    .adventure-section h2 {
      font-size: 24px;
    }

    .adventure-icon-text {
      max-width: 100%;
    }

    .adventure-icon-title {
      font-size: 16px;
    }

    .adventure-icon-img {
      width: 48px;
    }
  }
  .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;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  text-align: center;
}


  .blog-content {
    padding: 15px 10px;
  }

  .blog-title {
    font-size: 18px;
    font-weight: 600;
    color: #086D59;

  }

  .blog-date {
    color: #888;
    font-size: 14px;
  }
 .testimonial-section {
    background-color: #DAE7E5;
     position: relative; /* Needed for absolute positioning */
  overflow: hidden;
  }
  .tree-decor {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 150px;
  z-index: 0;
  opacity: 0.8;
  pointer-events: none;
}
@media (max-width: 768px) {
  .tree-decor {
    top: -0px;       /* Place it at the top */
    bottom: auto;     /* Remove the bottom setting */
    left: 10%;        /* Center horizontally */
    transform: translateX(-50%);
    width: 80px;     /* Reduce size on mobile */
  }
}
  
 .testimonial-card {
  background-color: transparent;
  border-radius: 16px;
  height: 100%;
}

.testimonial-card img.rounded-circle {
  border: 1px solid #086D59;
}

.testimonial-card .fa-star,
.testimonial-card .fa-star-half-alt {
  font-size: 14px;
}

  
  .nav-btn {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    border: 2px solid #086D59 !important; /* Bootstrap success green */
    background-color: transparent !important;
    color: #198754 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
  }
  
  .nav-btn:hover {
    background-color: #086D59 !important;
    color: #fff !important;
  }

  
  .nature-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.3); /* dark overlay */
    z-index: 1;
  }
  
  .nature-banner .container {
    position: relative;
    z-index: 2;
  }
  
  @media (max-width: 768px) {
    .nature-banner {
      min-height: 250px;
      padding: 40px 20px;
    }
  
    .nature-banner h2 {
      font-size: 1.5rem;
    }
  }

/* 
.contact-section {
  background-color: #e3f4f4;
} */

.icon-wrapper {
  background-color: #00C7A0;
  border-radius: 50%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
}
/* Set a soft border radius for all inputs and the form box */
.p-4.shadow.rounded.bg-white {
  border-radius: 12px !important;
}

/* Input and textarea fields */
.form-control {
  border-radius: 25px !important;
  border: 1px solid #00C7A0 !important; /* Default border color */
  font-size: 14px;
}

/* Focused state */
.form-control:focus,
.input-group-text:focus {
  border-color: #17BF9E !important; /* Highlight border color on focus */
  box-shadow: 0 0 0 0.2rem rgba(23, 191, 158, 0.25) !important; /* Optional soft glow */
}

/* Placeholder styling */
::placeholder,
::-webkit-input-placeholder,
:-moz-placeholder,
::-moz-placeholder,
:-ms-input-placeholder {
  font-size: 13px;
  color: #999;
}


/* Leaf Decor for Contact Section */
/* Static Leaf Decor Image in Bottom Left */
.leaf-decor-left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 220px;  /* Adjust width as needed */
  z-index: 0;
  opacity: 1;
  pointer-events: none; /* Prevent interaction */
}


/* Animate in when visible (optional class trigger) */


/* Responsive Adjustment */
@media (max-width: 768px) {
  .leaf-decor-left {
    display: none;
  }
}

.gallery-section img {
  object-fit: cover;
  height: 100%;
}

@media (max-width: 768px) {
  .gallery-section .row {
    flex-direction: column;
  }
}
/* 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: 8px;
  padding-bottom: 8px;
  margin-top: 0;
  margin-bottom: 0;
}

.footer-bottom .container {
  padding-top: 0;
  padding-bottom: 0;
}

.footer-bottom a {
  margin-left: 10px;
}
.footer-bottom a:first-child {
  margin-left: 0;
}


/* 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;
}
.footer-bottom .container {
  gap: 10px !important; /* smaller space between flex items */
}

/* 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;
  }
}
