body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    margin-top: 90px;
    /* to avoid overlap with fixed header */

  
}

footer {
    margin-top: 24px; /* or 2rem or so, for mobile */
}

/* .navbar-custom {
  background-color: #00921d !important; /* FORCE override Bootstrap */
/* } */

.navbar-custom .nav-link {
    color: #000000;
    font-weight: 500;
    text-decoration: none;
}

.navbar-custom .nav-link:hover {
    color: green;
}

.search-wrapper {
    width: 180px;
}

.search-wrapper .form-control {
    font-size: 0.9rem;
}

.search-icon {
    pointer-events: none;
}

.logo-img {
    height: 90px;
    border-radius: 50%;
}

.logo-text {
    font-size: 1.5rem;
    /* color: white !important; */
}

.hero-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 420px;
  color: white;
  position: relative;
  transition: background-image 1s ease-in-out;
}

.hero-overlay {
  /* background: rgba(0, 0, 0, 0.5); */
  height: 100%;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(255, 255, 255, 0.6);
    border: none;
    border-radius: 50%;
    padding: 10px 15px;
    font-size: 20px;
    color: #198754;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.left-arrow {
    left: 20px;
}

.right-arrow {
    right: 20px;
}

.hero-section {
    background-size: cover;
    background-position: center;
    transition: background-image 0.6s ease-in-out;
}

.about-preview {
    background: linear-gradient(135deg, #2e7d32, #66bb6a);
    /* Forest green to light green */
    color: white;
}

.about-preview h2 {
    font-weight: 600;
}

.about-preview .btn {
    border: 1px solid #ffffff;
    color: #ffffff;
    transition: all 0.3s ease;
}

.about-preview .btn:hover {
    background-color: #ffffff;
    color: #2e7d32;
}

.booking-section {
    background: linear-gradient(to right, #e8f5e9, #f1f8e9);
    /* subtle green tones */
}

.booking-section h3 {
    color: #2e7d32;
    font-weight: 600;
}

.booking-section input[type="text"],
.booking-section input[type="date"],
.booking-section input[type="number"] {
    border-radius: 10px;
    padding: 10px;
}

.scrolling-container {
    overflow: hidden;
    position: relative;
}

.scrolling-cards {
    display: flex;
    gap: 16px;
    animation: scrollCards 30s linear infinite;
}

/* Enable scroll for both class structures */
.scroll-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  cursor: grab;
}

.scroll-wrapper:active {
  cursor: grabbing;
}

.scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.scroll-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
}

.scroll-row .card {
  flex: 0 0 auto;
  min-width: 280px;
  user-select: none;
}

.scroll-wrapper .card-img-top {
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}



.guide-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}


/* Auto-scroll animation */
@keyframes scrollCards {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.scroll-wrapper .card-img-top {
    height: 180px;
    /* Control height */
    object-fit: cover;
    /* Prevent image stretch */
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}


.scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.scroll-row {
    display: flex;
    flex-wrap: nowrap;
}

/* Scrolling container for Eco Camps & Homestays */
.scrolling-container {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  cursor: grab;
  scrollbar-width: none;         /* Firefox */
}

.scrolling-container::-webkit-scrollbar {
  display: none;                 /* Chrome, Safari, Edge */
}

.scrolling-container:active {
  cursor: grabbing;
}


.scrolling-cards {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  width: max-content;
  padding-bottom: 1rem;
}

.scrolling-cards .card {
  flex: 0 0 auto;
  min-width: 320px;  /* 🔥 Increase width here */
  max-width: 350px;
  user-select: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: none;
}

.scrolling-cards .card-img-top {
  height: 180px;
  object-fit: cover;
}


#retreats .rounded {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

#retreats .rounded:hover {
  transform: translateY(-4px);
}

.list-group-item-action:hover {
  background-color: #f0fdf4;
  color: #1a7f37;
  transition: background-color 0.2s ease-in-out;
}

.section-title a {
  color: #1a7f37;
  text-decoration: none;
}
#contact {
  padding-top: 100px; /* Adjust based on your header height */
}










footer .social-icons a {
    color: #ffffff !important;
    transition: color 0.3s, transform 0.3s;
}

footer .social-icons a:hover {
    color: #28a745 !important;
    /* Bootstrap success green */
    transform: scale(1.2);
}






/* Responsive styles for mobile */
@media (max-width: 767.98px) {
    .logo-img {
        height: 20px;
    }

    .logo-text {
        font-size: 0.5rem;
    }

    .search-wrapper {
        width: 80px;
    }

    .search-wrapper .form-control {
        font-size: 0.6rem;
        padding-left: 8px;
        padding-right: 25px;
        height: 26px;
    }

    .search-icon {
        font-size: 0.65rem;
        right: 10px;
    }

    .btn-sm {
        padding: 3px 6px;
        font-size: 0.55rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .navbar-toggler {
        padding: 2px 6px;
        font-size: 0.65rem;
        line-height: 1;
    }

    .navbar-custom .container>.d-flex {
        flex-wrap: nowrap !important;
        gap: 4px;
    }
}


@media (max-width: 768px) {
    body {
        margin-top: 45px;
        /* smaller mobile header */
    }
}

/* Very small phones */
@media (max-width: 480px) {
    body {
        margin-top: 45px;
    }
}