        /* Define custom properties for the color palette */
        :root {
            --bg-color: #FAFBF8;
            --primary-color: #85C88A;
            --accent-color: #F5D76E;
            --text-color: #1E3D2F;
            --secondary-text-color: #4F4F4F;
            --highlight-color: #F2A65A;
            --font-heading: 'Poppins', sans-serif;
            --font-body: 'Inter', sans-serif;
            --font-accent: 'Roboto', sans-serif;
        }

        body {
            background-color:#85C88A;
            color: var(--text-color);
            font-family:Georgia, 'Times New Roman', Times, serif;
            font-style: initial;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            letter-spacing: -0.02em;
        }

        /* --- Marquee Animation --- */
        .marquee {
            overflow: hidden;
            position: relative;
            white-space: nowrap;
            background: linear-gradient(90deg, #F5D76E, #FFF6D8);
        }
        .marquee-content {
            display: inline-block;
            animation: marquee 25s linear infinite;
        }
        @keyframes marquee {
            0% { transform: translateX(0%); }
            100% { transform: translateX(-100%); }
        }

        /* --- Navigation Underline Animation --- */
        .nav-link {
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 50%;
            background-color: var(--primary-color);
            transition: all 0.3s ease-in-out;
            transform: translateX(-50%);
        }
        .nav-link:hover::after {
            width: 100%;
        }

        /* --- Hero Section Animations --- */
        .hero-bg {
            background: linear-gradient(180deg, #FAFBF8 0%, #E4F7E7 100%);
        }
        .floating-icon {
            animation: float 6s ease-in-out infinite;
        }
        .floating-icon:nth-child(2) { animation-delay: 2s; }
        .floating-icon:nth-child(3) { animation-delay: 4s; }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        /* Typewriter effect */
        .typewriter h1 {
            overflow: hidden; 
            border-right: .15em solid var(--highlight-color); 
            white-space: nowrap; 
            margin: 0 auto; 
            animation: typing 3.5s steps(40, end), blink-caret .75s step-end infinite;
        }
        @keyframes typing {
            from { width: 0 }
            to { width: 100% }
        }
        @keyframes blink-caret {
            from, to { border-color: transparent }
            50% { border-color: var(--highlight-color); }
        }
        
        /* --- General Animations & Transitions --- */
        .scroll-animate {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        .scroll-animate.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* --- Card Flip Animation --- */
        .flip-card { perspective: 1000px; }
        .flip-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.8s;
            transform-style: preserve-3d;
        }
        .flip-card:hover .flip-card-inner { transform: rotateY(180deg); }
        .flip-card-front, .flip-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            border-radius: 0.75rem; /* lg */
        }
        .flip-card-back { transform: rotateY(180deg); }

        /* Testimonial Carousel */
        .carousel-container {
            overflow: hidden;
            position: relative;
        }
        .carousel-track {
            display: flex;
            animation: scroll 40s linear infinite;
        }
        .carousel-track:hover {
            animation-play-state: paused;
        }
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* --- Header on Scroll --- */
        .header-scrolled {
            border:#1E3D2F;
            box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            backdrop-filter: blur(11px);
        }
        
        /* CTA button pulse */
        .pulse {
            animation: pulse-animation 2s infinite;
        }
        @keyframes pulse-animation {
            0% { box-shadow: 0 0 0 0 rgba(133, 200, 138, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(133, 200, 138, 0); }
            100% { box-shadow: 0 0 0 0 rgba(133, 200, 138, 0); }
        }

        /* Auth Modal Tabs */
        .auth-tab.active {
            border-bottom-color: var(--primary-color);
            color: var(--primary-color);
        }
 