 :root {
            --primary-color: #6c5ce7;
            --secondary-color: #a29bfe;
            --light-color: #f8f9fa;
            --dark-color: #343a40;
            --white-color: #ffffff;
            --nature-green: #3a7a8a;
            --nature-dark-green: #2a5a65;
        }
html, body {
    max-width: 100%;
    overflow-x: hidden;
}
        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--nature-green);
            color: var(--white-color);
            scroll-behavior: smooth;
        }

        .hero-content {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 600px;
    width: 100%;
    font-size: 1rem;
    line-height: 1.6;
}


        .navbar-custom {
            background-color: var(--nature-green);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .navbar-toggler {
            border-color: rgba(255, 255, 255, 0.5);
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        .nav-link {
            font-weight: 500;
            margin: 0 10px;
            color: var(--white-color) !important;
            transition: all 0.3s ease;
        }

        .nav-link:hover,
        .nav-link:focus {
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }

        .nav-link.active {
            color: var(--secondary-color) !important;
            font-weight: 600;
        }

        .btn-primary-custom {
            background-color: var(--primary-color);
            border: none;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .btn-primary-custom:hover {
            background-color: hsl(252, 10%, 90%);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

      
        .feature-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px #0000001a;
            background-color: var(--white-color);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .retreat-section {
            background-color: var(--nature-dark-green);
            padding: 4rem 0;
            position: relative;
        }

        .form-section {
            background-color: var(--white-color);
            padding: 5rem 0;
        }

        .contact-note {
            background-color: #f8f9fa;
            padding: 2rem;
            border-radius: 10px;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .fade-image {
            transition: opacity 1s ease-in-out;
            opacity: 1;
        }

        .fade-out {
            opacity: 0;
        }

        .image-box {
            width: 100%;
            max-width: 700px;
            height: 450px;
            overflow: hidden;
            margin: auto;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        footer {
            background-color: var(--dark-color);
            color: var(--white-color);
            padding: 50px 0 20px;
        }

        footer a {
            transition: all 0.3s ease;
        }

        footer a:hover {
            color: var(--secondary-color) !important;
            text-decoration: underline !important;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background-color: #0c0c0c1a;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background-color: var(--white-color);
            transform: translateY(-3px);
        }

        .testimonial-card {
            background-color: var(--white-color);
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
        }

        .testimonial-text {
            color: var(--dark-color);
            font-style: italic;
        }

        .testimonial-author {
            color: var(--primary-color);
            font-weight: 600;
        }

        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
        }

        @media (max-width: 768px) {
            .hero-section {
                min-height: auto;
                padding: 6rem 0;
            }

            .image-box {
                height: 350px;
                margin-top: 2rem;
            }

            .navbar-nav {
                padding-top: 1rem;
            }

            .btn-primary-custom {
                margin-top: 1rem;
            }
        }

        
    .zoom-bg {
        transition: background-image 1s ease-in-out; /* ⚠️ this won't animate image smoothly */
        /* Instead, use opacity + fade */
        opacity: 1;
        transition: opacity 3s ease-in-out;
    }




        .zoom-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('assets/images/logo.png') no-repeat center center/cover;
            z-index: 0;
            animation: zoomInOut 20s ease-in-out infinite;
        }

        @keyframes zoomInOut {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }
        }

        .glass-effect {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            z-index: 2;
            position: relative;
        }

        .image-hover-container {
            height: 200px;
            overflow: hidden;
            border-radius: 12px;
            position: relative;
        }

        .image-hover-container {
    position: relative;
    overflow: hidden;
}

.hero-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    background: url('your-image.jpg') no-repeat center center/cover;
    padding: 1rem;
}

.hover-title {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6); /* dark semi-transparent overlay */
    text-align: center;
    padding: 10px 0;
    transition: bottom 0.4s ease-in-out;
}

.image-hover-container:hover .hover-title {
    bottom: 0;
}

        #zoomBg {
    background-image: url('your-image-path.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}


.zoom-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

@media (max-width: 768px) {
    .hero-section .text-center {
        text-align: center !important;
        padding: 0 1rem;
    }

    .hero-section .lead {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}



        .zoom-bg-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .zoom-bg-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 2s ease-in-out;
        }

        .zoom-bg-img.active {
            opacity: 1;
            z-index: 1;
        }

       @media (max-width: 576px) {
  .mobile-shrink {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .mobile-shrink .lead {
    font-size: 0.9rem !important;
    margin-bottom: 0.5rem !important;
  }

  .mobile-shrink .quote-box {
    padding: 0.75rem !important;
    margin-bottom: 0.5rem !important;
    max-width: 95% !important;
  }
}


        .map-responsive iframe {
            width: 100%;
            height: 300px;
        }

        @media (max-width: 576px) {
            .map-responsive iframe {
                width: 100% !important;
                height: 200px !important;
                /* Optional: Reduce height on mobile */
            }
        }