  /* RESET */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
            background: #ffffff; 
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        :root {
            --g2: linear-gradient(45deg, #8cb500, #0047aa);
        }

        /* ==============================================
           NEW HERO SECTION (Updated with Parallax & Aesthetics)
           ============================================== */
       .hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: none;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}
       

        /* Interactive Dynamic Glow tracking mouse */
        .hero-cursor-glow {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 2;
            transition: background 0.15s ease;
        }

        /* Aesthetic Floating Particles */
        @keyframes floatUp {
            0% { transform: translateY(0) scale(1); opacity: 0; }
            20% { opacity: 0.5; }
            80% { opacity: 0.5; }
            100% { transform: translateY(-100vh) scale(1.5); opacity: 0; }
        }

        .hero-text {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUpHero 1.2s ease forwards;
    animation-delay: 0.3s;
}


@keyframes fadeUpHero {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
       
    /* NAV */
nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
    background: transparent !important;
}

.logo {
    display: inline-flex;
    align-items: center;
    padding: 0; /* Removed padding */
    border-radius: 0; /* Removed radius */
    
    /* REMOVED: background */
    background: transparent !important; 
    
    /* REMOVED: blur and borders */
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important; 
    
    transition: all 0.3s ease;
}

.logo img {
    width: 360px; 
    height: auto;
    display: block;
    
    /* Keeps the transparency trick for your renamed JPG */
    mix-blend-mode: multiply; 
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.nav-links a {
    padding: 0.5rem 1.0rem;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);

    transition: .4s ease;
}

.nav-links a:hover {
    background: rgba(255,255,255,0.35);
}

/* Add this to your existing CSS so dropdowns work with the pills */
.nav-item {
    position: relative;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* 1. THE DROPDOWN BOX: Forces vertical stacking */
.dropdown {
    position: absolute;
    top: 150%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(10, 35, 5, 0.95); /* Your dark green */
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 1rem;
    min-width: 220px; /* Slightly wider for better text fit */
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.1);

    /* 👈 ADD THESE TO FIX OVERLAP */
    display: flex;
    flex-direction: column; 
    gap: 8px; 
}

/* 2. THE DROPDOWN LINKS: Removes the "Pill" style */
.dropdown a {
    background: transparent !important; /* Removes the white pill color */
    border: none !important;            /* Removes the pill border */
    backdrop-filter: none !important;   /* Removes the extra blur */
    padding: 0.6rem 1rem !important;    /* Tighter padding */
    border-radius: 8px !important;      /* Subtle corners */
    display: block !important;
    width: 100%;
    text-align: left;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* 3. HOVER EFFECT: For individual links inside */
.dropdown a:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #a8e08a !important; /* Green highlight on hover */
}

.hero-cta {
    position: absolute;
    bottom: 4rem;
    right: clamp(3rem, 8vw, 8rem);
    display: flex;
    align-items: center;
    gap: 1.2rem;          /* 👈 THIS is the spacing you want */
    z-index: 5;
}


.glass-tile {
    position: relative;   /* ❌ no absolute anymore */
    padding: 2rem 3rem;
    max-width: 520px;

    color: #fff;
    font-size: 1.3rem;
    font-weight: 400;

    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 28px;

    transition: opacity .4s ease, transform .4s ease;
}

.scroll-icon {
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);

    border: 2px solid rgba(255,255,255,0.8);
    border-radius: 50%;

    cursor: pointer;
    transition: transform .25s ease, background .25s ease;
}

.scroll-icon img {
    width: 18px;
    height: auto;
    pointer-events: none;
}

.scroll-icon:hover {
    transform: translateY(4px);
    background: rgba(255,255,255,0.2);
}

        /* ==============================================
           HERO TEXT & CTA 
           ============================================== */
        .hero-text {
            position: absolute;
            top: 50%;
            left: 6vw;
            transform: translateY(-50%);
            max-width: 830px;
            color: #ffffff;
            z-index: 3;
            animation: fadeUpText 1.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
            /* Added smooth transition for JS Mouse Parallax */
            transition: transform 0.1s ease-out;
        }

        .hero-text h1 {
            font-size: clamp(2.6rem, 4.5vw, 4.2rem); 
            font-weight: 800;
            line-height: 1.05;
            letter-spacing: -1.5px;
            margin-bottom: 1.5rem;
            text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 12px 40px rgba(0, 0, 0, 0.8);
            transition: text-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .hero-text h1:hover {
            text-shadow: 0 8px 20px rgba(0, 0, 0, 0.5), 0 20px 50px rgba(0, 0, 0, 0.9);
        }

        .hero-subtitle {
            font-size: 1.25rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 1rem;
            letter-spacing: 0.5px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
        }

        .hero-text p:not(.hero-subtitle) {
            font-size: 1.15rem;
            font-weight: 400;
            line-height: 1.7;
            max-width: 650px;
            color: rgba(255, 255, 255, 0.85);
            letter-spacing: 0.2px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
        }

        .hero-cta {
            position: absolute;
            bottom: 4rem;
            right: clamp(3rem, 8vw, 8rem);
            display: flex;
            align-items: center;
            gap: 1.5rem;
            z-index: 5;
            opacity: 0;
            animation: fadeUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.6s forwards;
            /* Added smooth transition for JS Mouse Parallax */
            transition: transform 0.1s ease-out;
        }

        .glass-tile {
            position: relative;
            padding: 2.5rem 3.5rem;
            max-width: 520px;
            color: #fff;
            font-size: 1.25rem;
            line-height: 1.6;
            border-radius: 28px;
            overflow: hidden;

            /* REAL glass look */
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(70px) saturate(160%);
            -webkit-backdrop-filter: blur(70px) saturate(160%);

            /* soft border */
            border: 1px solid rgba(255, 255, 255, 0.18);

            /* depth */
            box-shadow:
                0 20px 40px rgba(0,0,0,0.35),
                inset 0 1px 0 rgba(255,255,255,0.4),
                inset 0 -1px 0 rgba(255,255,255,0.05);

            /* Removed 'all' to prevent stuttering with JS transforms */
            transition: box-shadow 0.5s ease, background 0.5s ease, border-color 0.5s ease, transform 0.5s ease;
        }

        .glass-tile:hover {
            transform: translateY(-10px) scale(1.02) rotateX(3deg) rotateY(-3deg);
            box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 40px rgba(255,255,255,0.05), inset 0 1px 0 rgba(255,255,255,0.6);
            background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 100%);
            border-color: rgba(255,255,255,0.15);
        }

        .glass-tile:hover::before {
            left: 200%;
        }

        .glass-tile.fade-out {
            opacity: 0;
            transform: translateY(30px) scale(0.95);
        }

        @keyframes ambientZoom {
            0% { transform: scale(1.02); }
            100% { transform: scale(1.10); } 
        }

        @keyframes fadeUpText {
            0% { opacity: 0; transform: translateY(calc(-50% + 50px)); filter: blur(8px); }
            100% { opacity: 1; transform: translateY(-50%); filter: blur(0); }
        }

        @keyframes fadeUp {
            0% { opacity: 0; transform: translateY(40px); filter: blur(5px); }
            100% { opacity: 1; transform: translateY(0); filter: blur(0); }
        }

        @keyframes floatIcon {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        @keyframes pulseRipple {
            0% { transform: scale(1); opacity: 0.6; }
            100% { transform: scale(1.6); opacity: 0; }
        }

        /* ==============================================
           CSS SECTION (Testimonials & Beyond)
           ============================================== */
        :root {
            /* Responsive spacing variables */
            --slider-spacing: 260px;
            --card-width: 220px;
            --card-height: 320px;
            --card-active-width: 280px;
            --card-active-height: 380px;
            
            /* Color Palette */
            --bg-color: #0f172a; 
            --text-main: #f8fafc;
            --text-muted: #94a3b8;
            --accent: #3b82f6;
            --accent-glow: rgba(59, 130, 246, 0.5);
        }

        @media (max-width: 768px) {
            :root {
                --slider-spacing: 320px;
                --card-width: 260px;
                --card-height: 360px;
                --card-active-width: 340px;
                --card-active-height: 460px;
            }
        }

        .testimonials-section {
            position: relative;
            padding: 6rem 2rem;
            text-align: center;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;

            background: linear-gradient(
                135deg,
                #021a12,
                #064e3b,
                #065f46,
                #0047aa    
            );
        }

        /* Animated Background Blobs */
        .bg-shape {
            position: absolute;
            filter: blur(80px);
            opacity: 0.4;
            z-index: 0;
            animation: float 20s infinite alternate ease-in-out;
            pointer-events: none;
        }

        .shape-1 {
            width: 400px;
            height: 400px;
            background: linear-gradient(45deg, #3b82f6, #8b5cf6);
            top: -10%;
            left: -10%;
            border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        }

        .shape-2 {
            width: 500px;
            height: 500px;
            background: linear-gradient(45deg, #10b981, #3b82f6);
            bottom: -20%;
            right: -10%;
            border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            animation-delay: -5s;
        }

        @keyframes float {
            0% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(50px, 30px) rotate(180deg); }
            100% { transform: translate(-30px, 60px) rotate(360deg); }
        }

        /* Section Header */
        .section-header {
            position: relative;
            z-index: 2;
            margin-bottom: 4rem;
        }

        .badge {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: rgba(59, 130, 246, 0.1);
            color: #60a5fa;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1rem;
            border: 1px solid rgba(59, 130, 246, 0.2);
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(to right, #fff, #94a3b8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Slider Container */
        .testimonials-slider {
            position: relative;
            height: var(--card-active-height);
            width: 100%;
            max-width: 1200px;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2;
            perspective: 1200px; 
        }

        .testimonial-card {
            position: absolute;
            width: var(--card-width);
            height: var(--card-height);
            border-radius: 24px;
            overflow: hidden;
            cursor: pointer;
            
            --is-inactive: min(var(--abs-offset), 1);
            --rx: 0deg; 
            --ry: 0deg; 
            
            transform: 
                translateX(calc(var(--offset) * var(--slider-spacing))) 
                scale(calc(1 - (var(--is-inactive) * 0.2)))
                rotateX(var(--rx))
                rotateY(var(--ry));
            
            opacity: calc(1 - (var(--is-inactive) * 0.5));
            filter: blur(calc(var(--is-inactive) * 3px)) brightness(calc(100% - (var(--is-inactive) * 40%)));
            z-index: calc(10 - var(--abs-offset));
            
            transition: 
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
                opacity 0.8s ease, 
                filter 0.8s ease,
                box-shadow 0.8s ease,
                width 0.8s cubic-bezier(0.25, 1, 0.5, 1),
                height 0.8s cubic-bezier(0.25, 1, 0.5, 1);
            
            transform-style: preserve-3d;
            box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
        }

        .testimonial-card.active.tracking {
            transition: 
                opacity 0.8s ease, 
                filter 0.8s ease,
                box-shadow 0.8s ease,
                width 0.8s ease,
                height 0.8s ease;
        }

        .testimonial-card::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 40%);
            pointer-events: none;
            z-index: 5;
            transition: opacity 0.5s;
        }

        .testimonial-card.active {
            width: var(--card-active-width);
            height: var(--card-active-height);
            box-shadow: 
                0 25px 50px -12px rgba(0,0,0,0.7), 
                0 0 0 1px rgba(255,255,255,0.1),
                0 0 40px var(--accent-glow);
            cursor: grab;
        }

        .testimonial-card.active:active {
            cursor: grabbing;
        }

        .testimonial-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1.2); 
            transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
            will-change: transform;
        }

        .testimonial-card.active img {
            transform: scale(1.05);
        }

        .card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.2) 60%, rgba(15, 23, 42, 0) 100%);
            opacity: 0.7;
            transition: opacity 0.8s ease;
            z-index: 1;
        }

        .testimonial-card.active .card-overlay {
            opacity: 1;
        }

        .card-icon {
            position: absolute;
            bottom: 20px;
            left: 20px;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 6;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .testimonial-card.active .card-icon {
            opacity: 1;
            transform: translateY(0);
        }
        
        .card-icon svg {
            width: 20px;
            height: 20px;
            fill: none;
            stroke: #fff;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        /* Content Area */
        .testimonial-content {
            margin-top: 4rem;
            max-width: 700px;
            margin-inline: auto;
            position: relative;
            z-index: 2;
            min-height: 160px; 
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .anim-text {
            opacity: 0;
            filter: blur(4px);
            transform: translateY(20px);
            transition: opacity 0.5s ease, filter 0.5s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .anim-text.visible {
            opacity: 1;
            filter: blur(0);
            transform: translateY(0);
        }

        .testimonial-content h3 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--text-main);
            letter-spacing: -0.02em;
        }

        .testimonial-content p {
            font-size: 1.25rem;
            color: var(--text-muted);
            line-height: 1.8;
            font-weight: 400;
            transition-delay: 0.1s; 
        }

        /* Modern Pagination */
        .slider-pagination {
            display: flex;
            gap: 12px;
            justify-content: center;
            margin-top: 1rem;
            z-index: 2;
            align-items: center;
        }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.2);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .dot::after {
            content: '';
            position: absolute;
            inset: -6px;
            border-radius: 50%;
            border: 1px solid var(--accent);
            opacity: 0;
            transform: scale(0.5);
            transition: all 0.4s ease;
        }

        .dot.active {
            background-color: var(--accent);
            width: 32px;
            border-radius: 12px;
            box-shadow: 0 0 15px var(--accent-glow);
        }

        .dot.active::after {
            opacity: 0; 
        }

        .dot:hover:not(.active) {
            background-color: rgba(255, 255, 255, 0.6);
            transform: scale(1.2);
        }

        /* ==============================================
           ECOSYSTEM IMPACT (BENTO GRID)
           ============================================== */
        :root {
            --primary-green: #16a34a;      
            --light-green: #dcfce7;        
            --neon-green: #84cc16;         
            --text-dark: #0f172a;          
            --text-muted: #64748b;         
            --card-bg: #ffffff;
            --bg-color: #f8fafc;           
        }

        .impact-section {
            position: relative;
            padding: 8rem 2rem;
            background: linear-gradient(180deg, #f0fdf4 0%, #f8fafc 100%);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: 100vh;
        }

        .impact-glow {
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(134, 239, 172, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
            top: -10%;
            left: -10%;
            z-index: 0;
            pointer-events: none;
            border-radius: 50%;
            filter: blur(40px);
        }
        
        .impact-glow-2 {
            position: absolute;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(253, 224, 71, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
            bottom: -20%;
            right: -10%;
            z-index: 0;
            pointer-events: none;
            border-radius: 50%;
            filter: blur(60px);
        }

        .impact-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 5rem;
            position: relative;
            z-index: 2;
        }

        .badge-green {
            background: var(--light-green);
            color: var(--primary-green);
            border-color: rgba(22, 163, 74, 0.2);
            box-shadow: 0 4px 14px 0 rgba(22, 163, 74, 0.1);
        }

        .text-gradient {
            background: linear-gradient(135deg, #065f46 0%, #16a34a 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .impact-subtitle {
            color: var(--text-muted);
            font-size: 1.125rem;
            margin-top: 1.5rem;
            line-height: 1.8;
            font-weight: 500;
        }

        .bento-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 1.5rem;
            width: 100%;
            max-width: 1200px;
            position: relative;
            z-index: 2;
        }

        .bento-card {
            grid-column: span 12;
            background-color: var(--card-bg);
            border: 1px solid rgba(22, 163, 74, 0.1);
            border-radius: 28px;
            position: relative;
            padding: 3rem;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            overflow: hidden;
            box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
            transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.4s ease, box-shadow 0.4s ease;
            cursor: default;
        }

        @media (min-width: 768px) {
            .bento-card:nth-child(1), .bento-card:nth-child(4) { grid-column: span 7; }
            .bento-card:nth-child(2), .bento-card:nth-child(3) { grid-column: span 5; }
        }

        .bento-card:hover {
            transform: translateY(-8px);
            border-color: rgba(22, 163, 74, 0.3);
            box-shadow: 0 20px 40px -10px rgba(22, 163, 74, 0.15);
        }

        .bento-card::before {
            content: "";
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: radial-gradient(
                800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
                rgba(134, 239, 172, 0.25), 
                transparent 40%
            );
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: 0;
            pointer-events: none;
        }
        
        .bento-card:nth-child(even)::before {
            background: radial-gradient(
                800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
                rgba(253, 224, 71, 0.25), 
                transparent 40%
            );
        }

        .bento-card:hover::before {
            opacity: 1;
        }

        .bento-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .bento-icon {
            width: 64px;
            height: 64px;
            background: var(--light-green);
            border: 1px solid rgba(22, 163, 74, 0.15);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: auto; 
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.4s ease;
            color: var(--primary-green);
        }

        .bento-card:nth-child(even) .bento-icon {
            background: #fef08a; 
            color: #ca8a04; 
            border-color: rgba(202, 138, 4, 0.15);
        }

        .bento-icon svg {
            width: 32px;
            height: 32px;
            stroke-width: 2;
        }

        .bento-card:hover .bento-icon {
            transform: scale(1.1) rotate(-5deg);
        }

        .bento-number-wrap {
            margin-top: 3rem;
            display: flex;
            align-items: baseline;
            gap: 4px;
        }

        .bento-number {
            font-size: 4rem;
            font-weight: 800;
            color: var(--text-dark);
            line-height: 1;
            letter-spacing: -3px;
        }

        .bento-suffix {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-green);
        }

        .bento-card:nth-child(even) .bento-suffix {
            color: #ca8a04; 
        }

        .bento-label {
            color: var(--text-muted);
            font-size: 1.125rem;
            font-weight: 600;
            margin-top: 0.75rem;
            line-height: 1.4;
        }

        /* ==========================================================================
   BHUMI GREEN ENERGY - NEW IMPROVED FOOTER CSS
   ========================================================================== */

.footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* Increased right padding (140px) to create a safe zone for floating icons */
    padding: 80px 140px 60px 80px; 
    background: linear-gradient(145deg, #0047a5, #003579);
    color: #fff;
    font-family: "Poppins", -apple-system, sans-serif;
    position: relative;
    overflow: hidden;
    gap: 50px;
}

/* --- LEFT COLUMN --- */
.footer-left {
    flex: 1.2;
    min-width: 300px;
}

.footer-left h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #ffffff;
}

.footer-badges {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.footer-badges span {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.dot {
    width: 10px;
    height: 10px;
    background: #00d063;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 12px rgba(0, 208, 99, 0.6);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 30px;
    max-width: 450px;
}

.footer-links li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    opacity: 1;
    padding-left: 5px;
    color: #00d063;
}

.footer-copy {
    font-size: 13px;
    opacity: 0.5;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

/* --- RIGHT COLUMN (FIXED) --- */
.footer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Keeps content away from the center */
    text-align: right;
    min-width: 350px;
}

.footer-desc {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 440px; /* Controlled width to avoid hitting social icons */
}

.footer-btn {
    padding: 14px 32px;
    border-radius: 50px;
    background: #ffffff;
    color: #003579;
    border: none;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    margin-bottom: 40px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-btn:hover {
    transform: scale(1.05) translateX(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    width: 250px;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.25));
    border-radius: 8px;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: #ffffff;
    font-size: 13px;
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.footer-legal a:hover {
    opacity: 1;
}

/* --- FLOATING SOCIAL PANEL (POSITIONED IN SAFE ZONE) --- */
.footer-floating-icons {
    position: absolute;
    right: 40px; /* Positioned inside the 140px padding zone */
    top: 50%;
    transform: translateY(-50%); /* Perfectly centered vertically */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    z-index: 10;
}

.circle-btn {
    width: 48px;
    height: 48px;
    background: #004fbb;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-btn:hover { 
    background: #00d063; 
    transform: translateY(-5px);
}

.side-icons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 40px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.15);
}

.icon-btn {
    width: 42px;
    height: 42px;
    background: #0051c5;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-btn img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.icon-btn:hover { 
    transform: scale(1.15) rotate(5deg);
    background: #0047a5;
}
        /* ==============================================
           RESPONSIVE DESIGN 
           ============================================== */
        @media (max-width: 1200px) {
            .hero-cta { right: 4rem; bottom: 4rem; }
            nav { padding: 1.5rem 3rem; }
            .logo img { width: 280px; }
            .footer { padding: 40px 60px; }
            .footer-right { margin-right: 0; }
        }

        @media (max-width: 900px) {
            nav { padding: 1.2rem 2rem; }
            .nav-links { gap: .6rem; }
            .nav-links a { padding: .6rem 1.4rem; font-size: .9rem; }
            .hero-cta { position: static; margin: 0 auto 2rem; justify-content: center; right: 4rem; bottom: 4rem;}
            .scroll-icon { display: none; }
            .footer { flex-direction: column; gap: 3rem; padding: 40px; }
            .footer-right { width: 100%; text-align: left; }
            .footer-logo { justify-content: flex-start; }
            .footer-floating-icons { display: none; }
            .testimonials-section { padding: 5rem 2rem; }
        }

        @media (max-width: 600px) {
            body { font-size: 14px; }
            nav { flex-direction: column; gap: 1rem; padding: 1rem; }
            .logo img { width: 220px; }
            .nav-links { flex-wrap: wrap; justify-content: center; }
            .nav-links a { padding: .5rem 1.2rem; font-size: .85rem; }
            .hero-text { left: 5%; right: 5%; text-align: center; }
            .hero-cta { right: auto; bottom: 2rem; }
            .footer { padding: 30px 25px; }
            .footer-left h2 { font-size: 22px; }
            .footer-links { font-size: 14px; }
        }