/* Hero Banner Section - Gap Fixed */
.hero-full-banner {
    width: 100%;
    position: relative;
    line-height: 0;
    
    /* FIX 1: Set margin-top to 0. 
       (If your header is "fixed/sticky" and overlaps the image after this, 
       increase this slightly to 10px, 20px, etc., until it sits perfectly flush) */
    margin-top: 0px; 
    padding: 0;
}

/* FIX 2: Properly hide the SEO text so it takes up ZERO physical space.
   This prevents the <h1> and <h3> default margins from pushing the banner down. */
.seo-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.banner-wrapper {
    width: 100%;
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
}

.responsive-banner {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
}

/* Gradient Fade at the bottom of the banner */
.banner-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px; /* Subtle fade */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
    pointer-events: none;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero-full-banner {
        /* FIX 3: Also set mobile margin-top to 0 to prevent gaps on phones */
        margin-top: 0px; 
    }
}

    /*Popup*/
    :root {
        --primary-green: #2ecc71;
        --secondary-blue: #004080;
        --accent-coral: #ff7675;
        --text-dark: #333;
        --text-muted: #555;
    }

    body { font-family: 'Poppins', sans-serif; margin: 0; background-color: #f8f9fa; }

    /* --- CTA BUTTON STYLING --- */
    .cta-wrapper { padding: 40px 20px; text-align: center; }
    
    .btn-open-popup {
        background: linear-gradient(45deg, var(--secondary-blue), #0056b3);
        color: #fff;
        padding: 14px 30px;
        border: none;
        border-radius: 50px;
        font-size: 1rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        box-shadow: 0 8px 20px rgba(0, 64, 128, 0.3);
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 12px;
    }

    .btn-open-popup:hover { transform: translateY(-3px); box-shadow: 0 12px 25px rgba(0, 64, 128, 0.4); }
    
    /* UPDATED: Animation applied directly, runs forever, no hover needed */
    .btn-open-popup i { 
        animation: phoneShake 1.2s infinite ease-in-out; 
    }

    /* --- MODAL STYLING (RESIZED SMALLER) --- */
    .modal-overlay {
        position: fixed; top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(8px);
        display: none; justify-content: center; align-items: center; z-index: 9999;
    }

    .modal-overlay.active { display: flex !important; }

    .modal-box {
        background: #fff;
        width: 90%;
        /* CHANGED: Reduced max-width from 380px to 300px */
        max-width: 300px; 
        border-radius: 30px; /* Slightly reduced radius */
        position: relative;
        /* CHANGED: Reduced padding */
        padding: 35px 20px 30px; 
        text-align: center;
        box-shadow: 0 20px 50px rgba(0,0,0,0.2);
        animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .close-modal { 
        position: absolute; top: 15px; right: 15px; 
        font-size: 24px; border: none; background: none; 
        cursor: pointer; color: #ccc; 
    }

    .profile-ring {
        /* CHANGED: Reduced size from 130px to 100px */
        width: 100px; height: 100px; margin: 0 auto 15px;
        border-radius: 50%; padding: 4px;
        background: linear-gradient(to right, #ff7675, #6c5ce7, #004080);
    }

    .profile-ring img { 
        width: 100%; height: 100%; border-radius: 50%; 
        object-fit: cover; border: 3px solid #fff; 
    }

    .expert-label { 
        color: var(--accent-coral); font-size: 12px; 
        font-weight: 800; text-transform: uppercase; margin-bottom: 5px; 
    }
    
    .expert-name { 
        color: var(--secondary-blue); 
        /* CHANGED: Font size reduced */
        font-size: 24px; 
        font-weight: 900; margin: 0 0 10px; 
    }
    
    .expert-tagline { 
        color: var(--text-muted); 
        /* CHANGED: Font size reduced */
        font-size: 0.85rem; 
        line-height: 1.4; margin-bottom: 20px; 
    }

    .actions-container { display: flex; flex-direction: column; gap: 10px; }

    .btn-call {
        background: var(--primary-green); color: #fff; text-decoration: none;
        /* CHANGED: Reduced padding and font size */
        padding: 12px; border-radius: 12px; font-size: 1rem; font-weight: 700;
        display: flex; align-items: center; justify-content: center; gap: 8px;
    }

    .btn-whatsapp {
        background: #fff; color: var(--secondary-blue); border: 2px solid var(--secondary-blue);
        text-decoration: none; 
        /* CHANGED: Reduced padding and font size */
        padding: 12px; border-radius: 12px; font-size: 1rem; font-weight: 700;
        display: flex; align-items: center; justify-content: center; gap: 8px;
    }

    .secondary-contact { margin-top: 15px; font-size: 0.8rem; color: var(--text-muted); }

    @keyframes popIn { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }
    
    /* UPDATED ANIMATION: Continuous ringing */
    @keyframes phoneShake { 
        0% { transform: rotate(0deg); } 
        10% { transform: rotate(15deg); } 
        20% { transform: rotate(-15deg); } 
        30% { transform: rotate(15deg); } 
        40% { transform: rotate(-15deg); } 
        50% { transform: rotate(0deg); } 
        100% { transform: rotate(0deg); } 
    }

/* ============================================== 
   13. FOOTER SECTION 
   ============================================== */

.site-footer {
    background-color: #0d3c75; /* Brand Dark Blue */
    color: #ffffff;
    padding: 70px 0 0 0;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 10;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

/* --- Brand Column --- */
.brand-col {
    flex: 1.2; /* Slightly wider */
}

.footer-logo {
    width: 160px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1); /* Makes logo white */
}

.footer-desc {
    font-size: 14px;
    color: #dbeafe; /* Light Blue-White */
    line-height: 1.7;
    margin-bottom: 25px;
    padding-right: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background-color: #f7941d; /* Brand Orange */
    transform: translateY(-3px);
}

/* --- Headings & Links --- */
.footer-heading {
    color: #f7941d; /* Brand Orange */
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Small underline for headings */
.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #dbeafe;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 10px;
    color: #f7941d;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px; /* Subtle slide effect */
}

/* --- Contact & Offices --- */
.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #fff;
}

.contact-item i {
    color: #f7941d;
    font-size: 16px;
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

/* Office Locations Styling */
.office-locations {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.office-block h5 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    border-left: 3px solid #f7941d; /* Orange accent line */
    padding-left: 8px;
}

.office-block p {
    font-size: 12px;
    color: #dbeafe;
    line-height: 1.5;
    padding-left: 11px; /* Align with text above */
}

/* --- Footer Bottom --- */
.footer-bottom {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: 0.3s;
}

.legal-links a:hover {
    color: #f7941d;
}

.legal-links span {
    margin: 0 10px;
}

/* --- Responsive for Footer --- */
@media (max-width: 900px) {
    .footer-top {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-col {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        padding-bottom: 20px;
    }
    
    .footer-col:last-child {
        border-bottom: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Hero Banner Section - No Gap Version */
.hero-full-banner {
    width: 100%;
    position: relative;
    line-height: 0;
    /* REDUCE this number until the gap disappears. 
       Usually, headers are between 70px and 85px */
    margin-top: 70px; 
    padding: 0;
}

.banner-wrapper {
    width: 100%;
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
}

.responsive-banner {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
}

/* Gradient Fade at the bottom of the banner */
.banner-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px; /* Subtle fade */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
    pointer-events: none;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero-full-banner {
        margin-top: 70px; /* Adjust for mobile menu height */
    }
}

    /* Main Section Container */
    .blueprint-vision {
        padding: 30px 5%;
        background-color: #ffffff;
        font-family: 'Poppins', sans-serif;
        position: relative;
        overflow: hidden;
    }

    .blueprint-grid {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background-image: radial-gradient(#d1d1d1 1px, transparent 1px);
        background-size: 25px 25px;
        opacity: 0.4;
        z-index: 0;
    }

    .su-content-container {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .su-vision-header {
        text-align: center;
        margin-bottom: 15px;
    }

    .su-hero-img-750 {
        width: 100%;
        max-width: 750px;
        height: auto;
        filter: drop-shadow(0 10px 20px rgba(0,0,0,0.05));
    }

    .su-vision-layout {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
        margin-bottom: 10px;
    }

    /* LEFT: STEM Narrative Styles */
    .su-narrative {
        flex: 1;
        position: relative;
        padding: 25px;
        background: rgba(255,255,255,0.7);
        backdrop-filter: blur(5px);
    }

    /* New STEM List Styling */
    .stem-container {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 15px;
    }

    .stem-row {
        display: flex;
        align-items: baseline;
    }

    /* The S, T, E, M letters */
    .stem-drop {
        font-family: 'Poppins', sans-serif; /* Using Poppins as requested */
        font-size: 1.8rem;
        font-weight: 800;
        color: #f37021; /* Brand Orange */
        line-height: 1;
        margin-right: 8px;
        width: 20px; /* Fixed width for alignment */
    }

    .stem-text {
        font-size: 1.05rem;
        color: #444;
        line-height: 1.3;
        font-weight: 400;
    }

    .stem-closing {
        font-size: 1.1rem;
        color: #0056b3; /* Brand Blue */
        font-weight: 600;
        margin: 0;
        padding-top: 10px;
        border-top: 1px dashed #ddd;
    }

    /* CENTER: Animation */
    .su-animation-center {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* RIGHT: Impact Stack */
    .su-impact-stack {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 15px; 
    }

    .su-pillar-row {
        display: flex;
        align-items: center;
        gap: 15px;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
    }

    .su-num {
        font-family: 'Poppins', sans-serif;
        font-size: 1.1rem;
        font-weight: 700;
        color: #f37021;
        opacity: 0.5;
    }

    .su-pillar-txt h4 {
        margin: 0;
        font-size: 1.05rem;
        text-transform: uppercase;
        color: #0056b3;
        letter-spacing: 0.5px;
        font-weight: 700;
    }

    .su-pillar-txt p {
        margin: 2px 0 0 0;
        font-size: 0.95rem;
        color: #555;
    }

    /* Corner Marks */
    .su-corner-mark {
        position: absolute;
        width: 15px;
        height: 15px;
        border: 2px solid #f37021;
    }
    .top-left { top: 0; left: 0; border-right: none; border-bottom: none; }
    .bottom-right { bottom: 0; right: 0; border-left: none; border-top: none; }

    /* FOOTER */
    .su-vision-conclusion {
        text-align: center;
        margin-top: 0px;
    }

    .su-logic-line {
        width: 1px;
        height: 25px;
        background: #f37021;
        margin: 0 auto 10px;
    }

    .su-vision-conclusion p {
        font-size: 1.3rem;
        font-weight: 300;
        color: #222;
        margin: 0;
    }

    .su-vision-conclusion span {
        font-weight: 700;
        color: #0056b3;
        padding: 3px 12px;
        border-left: 4px solid #f37021;
        background: #f8f9fa;
        margin-left: 10px;
    }

    /* Mobile Responsive Logic */
    @media (max-width: 991px) {
        .su-vision-layout {
            flex-direction: column;
            gap: 20px;
        }
        .su-animation-center {
            order: -1; 
        }
        dotlottie-wc {
            width: 220px !important;
            height: 220px !important;
        }
        .su-vision-conclusion p { font-size: 1.1rem; }
    }


        /* --- SCOPED CSS TO PREVENT CONFLICTS --- */
        #su-funnel-v2 {
            --su-orange: #F37021;
            --su-blue: #0056B3;
            --su-dark: #1e293b;
            --su-light-blue: #eff6ff;
            --bg-color: #f8fafc;
            --font-head: 'Poppins', sans-serif;
            --font-body: 'Poppins', sans-serif;
            
            font-family: var(--font-body);
            background-color: var(--bg-color);
            overflow: hidden; 
            width: 100%;
        }

        #su-funnel-v2 * { box-sizing: border-box; }

        #su-funnel-v2 .illustration-section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        /* --- HEADER --- */
        #su-funnel-v2 .header-box { margin-bottom: 50px; }
        
        #su-funnel-v2 .header-img { 
            width: 750px !important;
            max-width: 100%; 
            height: auto; 
            display: inline-block;
        }

        #su-funnel-v2 .funnel-wrapper {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* --- 1. TOP: INPUT FUNNEL (Breathing Animation) --- */
        #su-funnel-v2 .funnel-mouth {
            width: 100%;
            max-width: 900px;
            background: #ffffff;
            border: 2px solid #cbd5e1; /* Slightly thicker for effect */
            border-bottom: none;
            border-radius: 40px 40px 200px 200px; 
            padding: 50px 40px 110px 40px; 
            position: relative;
            z-index: 2;
            box-shadow: 0 20px 60px rgba(0, 86, 179, 0.05);
            margin: 0 auto;
            /* CONTINUOUS PULSE ANIMATION */
            animation: funnelPulse 4s ease-in-out infinite;
        }

        @keyframes funnelPulse {
            0% { box-shadow: 0 20px 60px rgba(0, 86, 179, 0.05); border-color: #cbd5e1; }
            50% { box-shadow: 0 20px 70px rgba(0, 86, 179, 0.15); border-color: #93c5fd; }
            100% { box-shadow: 0 20px 60px rgba(0, 86, 179, 0.05); border-color: #cbd5e1; }
        }

        #su-funnel-v2 .section-badge {
            background: var(--su-blue); color: white;
            padding: 8px 25px; border-radius: 30px;
            font-family: var(--font-head); font-weight: 700; 
            text-transform: uppercase; font-size: 0.85rem;
            position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
            white-space: nowrap;
            z-index: 5;
        }

        /* Input Pills Grid */
        #su-funnel-v2 .input-grid { 
            display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; 
        }
        
        /* 
           Wrapper handles the "Drop In" (One time).
           Inner Pill handles the "Float" (Continuous).
        */
        #su-funnel-v2 .pill-wrapper {
            opacity: 0;
            animation: dropIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        }
        
        #su-funnel-v2 .input-pill {
            background: var(--su-light-blue);
            border: 1px solid #bfdbfe;
            padding: 12px 22px;
            border-radius: 50px;
            display: flex; align-items: center; gap: 10px;
            font-size: 0.9rem; font-weight: 600; color: var(--su-blue);
            transition: 0.3s;
            cursor: default;
            /* CONTINUOUS FLOAT */
            animation: floatContinuous 3s ease-in-out infinite;
        }

        #su-funnel-v2 .input-pill:hover { 
            background: var(--su-orange); color: white; border-color: var(--su-orange); 
            transform: scale(1.05) !important; /* Override float transform on hover */
            animation-play-state: paused; /* Stop floating when hovered */
        }
        #su-funnel-v2 .input-pill i { color: inherit; }

        /* KEYFRAMES */
        @keyframes dropIn {
            0% { opacity: 0; transform: translateY(-80px) scale(0.8); }
            100% { opacity: 1; transform: translateY(0) scale(1); }
        }

        @keyframes floatContinuous {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-6px); }
            100% { transform: translateY(0px); }
        }

        /* --- STAGGERED DELAYS (Randomness) --- */
        /* Drop Delays (Entrance) */
        #su-funnel-v2 .pill-wrapper:nth-child(1) { animation-delay: 0.1s; }
        #su-funnel-v2 .pill-wrapper:nth-child(2) { animation-delay: 0.2s; }
        #su-funnel-v2 .pill-wrapper:nth-child(3) { animation-delay: 0.3s; }
        #su-funnel-v2 .pill-wrapper:nth-child(4) { animation-delay: 0.4s; }
        #su-funnel-v2 .pill-wrapper:nth-child(5) { animation-delay: 0.5s; }
        #su-funnel-v2 .pill-wrapper:nth-child(6) { animation-delay: 0.6s; }
        #su-funnel-v2 .pill-wrapper:nth-child(7) { animation-delay: 0.7s; }
        #su-funnel-v2 .pill-wrapper:nth-child(8) { animation-delay: 0.8s; }
        #su-funnel-v2 .pill-wrapper:nth-child(9) { animation-delay: 0.9s; }
        #su-funnel-v2 .pill-wrapper:nth-child(10) { animation-delay: 1.0s; }

        /* Float Speeds (Continuous Randomness) */
        #su-funnel-v2 .pill-wrapper:nth-child(odd) .input-pill { animation-duration: 4s; }
        #su-funnel-v2 .pill-wrapper:nth-child(even) .input-pill { animation-duration: 5s; animation-delay: 1s; }
        #su-funnel-v2 .pill-wrapper:nth-child(3n) .input-pill { animation-duration: 3.5s; animation-delay: 0.5s; }


        /* --- 2. MIDDLE: FUSION CORE (Fixed Size) --- */
        #su-funnel-v2 .fusion-core-container {
            margin-top: -95px; /* Pull up */
            position: relative;
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        /* STRICT FIX FOR CIRCLE SIZING */
        #su-funnel-v2 .core-circle {
            width: 140px !important;
            height: 140px !important;
            min-width: 140px;
            min-height: 140px;
            background: white;
            border-radius: 50%;
            position: relative;
            display: flex; 
            align-items: center; 
            justify-content: center;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            border: 6px solid #f8fafc;
            flex: 0 0 140px; 
        }

        #su-funnel-v2 .spin-ring {
            position: absolute;
            width: 100%; height: 100%;
            border-radius: 50%;
            border: 3px dashed var(--su-blue);
            animation: slowSpin 10s linear infinite;
            opacity: 0.3;
        }

        #su-funnel-v2 .core-center {
            width: 90px; height: 90px;
            background: var(--su-dark);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: var(--su-orange);
            font-size: 2.5rem; 
            position: relative;
            z-index: 2;
            box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
            overflow: hidden;
        }

        /* Gear Spin */
        #su-funnel-v2 .core-gear {
            animation: spinGear 6s linear infinite;
        }

        #su-funnel-v2 .core-label {
            margin-top: 15px;
            background: white;
            padding: 6px 18px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            color: #64748b;
            box-shadow: 0 5px 10px rgba(0,0,0,0.05);
            border: 1px solid #e2e8f0;
            z-index: 11;
        }

        @keyframes slowSpin { 100% { transform: rotate(360deg); } }
        @keyframes spinGear { 100% { transform: rotate(360deg); } }

        /* Connector */
        #su-funnel-v2 .connector-arrow {
            color: var(--su-orange);
            font-size: 1.8rem;
            margin-top: 10px;
            margin-bottom: 20px;
            animation: bounce 1.5s infinite;
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(5px); }
        }

        /* --- 3. BOTTOM: OUTPUT CARDS --- */
        #su-funnel-v2 .output-section {
            width: 100%;
            max-width: 1100px;
            margin-top: 0;
        }
        
        #su-funnel-v2 .output-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        #su-funnel-v2 .output-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.06);
            transition: all 0.4s ease;
            position: relative;
            border-bottom: 4px solid var(--su-blue);
            height: 100%;
        }

        #su-funnel-v2 .output-card:hover { 
            transform: translateY(-10px); 
            box-shadow: 0 20px 45px rgba(0,0,0,0.12); 
            border-bottom-color: var(--su-orange);
        }

        #su-funnel-v2 .card-img-box { height: 170px; width: 100%; overflow: hidden; position: relative; }
        #su-funnel-v2 .card-img-box img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; display: block; }
        #su-funnel-v2 .output-card:hover .card-img-box img { transform: scale(1.1); }

        #su-funnel-v2 .card-content { padding: 25px; text-align: left; }
        
        #su-funnel-v2 .card-content h3 { margin: 0 0 10px 0; color: #0D3C75; font-family: var(--font-head); font-size: 1.25rem; line-height: 1.3; }
        #su-funnel-v2 .card-content p { margin: 0; color: #64748b; font-size: 14px; line-height: 1.5; }

        #su-funnel-v2 .step-num {
            position: absolute; top: 15px; right: 15px;
            background: rgba(255,255,255,0.9);
            padding: 5px 12px; border-radius: 8px;
            font-weight: 800; font-size: 0.9rem; color: var(--su-dark);
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        @media (max-width: 1024px) {
            #su-funnel-v2 .output-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 900px) {
            #su-funnel-v2 .output-grid { grid-template-columns: 1fr; }
            #su-funnel-v2 .header-img { width: 100% !important; }
            #su-funnel-v2 .funnel-mouth { padding: 40px 20px 80px 20px; border-radius: 30px; }
            #su-funnel-v2 .input-pill { font-size: 0.8rem; padding: 10px 15px; }
        }


        /* Section 3 Impact Story 1*/
        :root {
            --primary: #0D3C75;
            --accent: #f97316;
            --dark: #0D3C75;
            --text-light: #475569;
            --glass: rgba(255, 255, 255, 0.9);
            --shadow-lg: 0 20px 50px -12px rgba(0, 0, 0, 0.15);
        }

        body { 
            margin: 0; 
            font-family: 'Poppins', sans-serif; 
            background: #f8fafc; 
            overflow-x: hidden; 
        }
        
        * { box-sizing: border-box; }

        /* --- SECTION CONTAINER --- */
        .impact-section-wrapper {
            position: relative;
            width: 100%;
            min-height: 100vh; /* Keeps the "Big Section" feel */
            display: flex;
            flex-direction: column;
            justify-content: center; /* Centers content vertically */
            padding: 40px 5%;
            background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
            overflow: hidden;
        }

        /* Abstract Background Elements */
        .bg-decoration {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.5;
            z-index: 0;
        }
        .blob-1 { top: -10%; left: -10%; width: 600px; height: 600px; background: rgba(37, 99, 235, 0.08); }
        .blob-2 { bottom: -10%; right: -10%; width: 500px; height: 500px; background: rgba(249, 115, 22, 0.08); }

        /* --- 1. HEADER IMAGE (Fixed Size) --- */
        .section-header {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            z-index: 2;
        }

        .heading-img {
            /* FIXED: Exactly 750px max width as requested */
            max-width: 750px; 
            width: 100%;
            height: auto;
            display: inline-block;
            filter: drop-shadow(0 10px 15px rgba(0,0,0,0.05));
        }

        /* --- 2. LAYOUT GRID --- */
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            max-width: 1400px;
            margin: 0 auto;
            align-items: center; /* Vertically aligns image and text */
            position: relative;
            z-index: 2;
        }

        /* --- LEFT: VISUALS --- */
        .visual-column {
            display: flex;
            flex-direction: column;
            gap: 25px; /* Space between Image and Stats */
        }

        /* The Image Frame */
        .image-frame {
            width: 100%;
            /* FIXED: Uses aspect ratio to prevent "destroying" layout */
            aspect-ratio: 4 / 3; 
            max-height: 550px;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            position: relative;
        }

        .image-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Ensures image fills frame without stretching */
            transition: transform 1s ease;
        }

        .visual-column:hover .image-frame img {
            transform: scale(1.05);
        }

        /* The Stats Bar (Now UNDER the image) */
        .stats-bar-under {
            background: #ffffff;
            border: 1px solid rgba(0,0,0,0.05);
            border-radius: 20px;
            padding: 25px 30px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.06);
            /* Slide up animation */
            animation: slideUp 1s ease-out forwards;
        }

        @keyframes slideUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .stat-item {
            text-align: center;
            position: relative;
            flex: 1;
        }
        
        /* Divider lines between stats */
        .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0; top: 10%;
            height: 80%; width: 1px;
            background: #e2e8f0;
        }

        .stat-val {
            display: block;
            font-family: 'Poppins', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 5px;
        }

        .stat-lbl {
            font-size: 0.8rem;
            color: #64748b;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* --- RIGHT: TEXT --- */
        .text-column {
            padding: 10px;
        }

        .badge {
            display: inline-block;
            background: rgba(37, 99, 235, 0.1);
            color: var(--primary);
            padding: 8px 16px;
            border-radius: 50px;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 0.85rem;
            margin-bottom: 20px;
        }

        .main-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            line-height: 1.2;
            color: #0D3C75 !important;
            margin: 0 0 20px 0;
            font-weight: 700;
        }

        .main-title span { color: inherit; }

        .intro-text {
            font-size: 1.1rem;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 35px;
            border-left: 4px solid #e2e8f0;
            padding-left: 20px;
        }

        /* Accordion Stack */
        .accordion-stack {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .acc-card {
            background: #fff;
            border-radius: 16px;
            border: 1px solid rgba(0,0,0,0.05);
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .acc-card:hover {
            transform: translateX(5px);
            border-color: rgba(37, 99, 235, 0.3);
        }

        .acc-header {
            padding: 18px 25px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .header-left { display: flex; align-items: center; gap: 15px; }

        .icon-box {
            width: 40px; height: 40px;
            background: #f1f5f9;
            border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            color: #64748b; font-size: 1.1rem;
            transition: 0.3s;
        }

        .acc-title {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--dark);
        }

        .acc-body {
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            transition: all 0.4s ease;
            background: #f8fafc;
        }

        .acc-inner {
            padding: 0 25px 20px 80px;
            font-size: 0.95rem;
            color: #555;
            line-height: 1.6;
        }

        /* Active State */
        .acc-card.active {
            box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
            border-color: var(--primary);
        }
        .acc-card.active .icon-box { background: var(--primary); color: #fff; }
        .acc-card.active .acc-body { max-height: 150px; opacity: 1; }
        .plus-icon { transition: 0.3s; color: #cbd5e1; }
        .acc-card.active .plus-icon { transform: rotate(45deg); color: var(--primary); }

        /* --- RESPONSIVE --- */
        @media (max-width: 1024px) {
            .content-grid { grid-template-columns: 1fr; gap: 40px; }
            .image-frame { max-height: 450px; }
            .impact-section-wrapper { padding-top: 60px; height: auto; }
            .heading-img { width: 90%; }
        }

        @media (max-width: 600px) {
            .main-title { font-size: 1.5rem; }
            .stats-bar-under { flex-direction: column; gap: 20px; align-items: flex-start; }
            .stat-item { width: 100%; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #f1f5f9; padding-bottom: 10px; text-align: left; }
            .stat-item:not(:last-child)::after { display: none; }
            .stat-item:last-child { border: none; }
            .acc-inner { padding: 0 20px 20px 20px; }
        }
        /* Section 5 Impact Story 2 */
                :root {
            --primary: #0D3C75;
            --accent: #f97316;
            --dark: #0D3C75;
            --text-light: #475569;
            --glass: rgba(255, 255, 255, 0.9);
            --shadow-lg: 0 20px 50px -12px rgba(0, 0, 0, 0.15);
        }

        body { 
            margin: 0; 
            font-family: 'Poppins', sans-serif; 
            background: #f8fafc; 
            overflow-x: hidden; 
        }
        
        * { box-sizing: border-box; }

        /* --- SECTION CONTAINER --- */
        .impact-section-wrapper {
            position: relative;
            width: 100%;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 60px 5%;
            background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
            overflow: hidden;
        }

        /* Abstract Background Elements */
        .bg-decoration {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.5;
            z-index: 0;
        }
        .blob-1 { top: -10%; left: -10%; width: 600px; height: 600px; background: rgba(37, 99, 235, 0.08); }
        .blob-2 { bottom: -10%; right: -10%; width: 500px; height: 500px; background: rgba(249, 115, 22, 0.08); }

        /* --- LAYOUT GRID --- */
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            max-width: 1400px;
            margin: 0 auto;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        /* --- LEFT: VISUALS --- */
        .visual-column {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .image-frame {
            width: 100%;
            aspect-ratio: 4 / 3; 
            max-height: 550px;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            position: relative;
        }

        .image-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1s ease;
        }

        .visual-column:hover .image-frame img {
            transform: scale(1.05);
        }

        /* Stats Bar */
        .stats-bar-under {
            background: #ffffff;
            border: 1px solid rgba(0,0,0,0.05);
            border-radius: 20px;
            padding: 25px 30px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.06);
            animation: slideUp 1s ease-out forwards;
        }

        @keyframes slideUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .stat-item {
            text-align: center;
            position: relative;
            flex: 1;
        }
        
        .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0; top: 10%;
            height: 80%; width: 1px;
            background: #e2e8f0;
        }

        .stat-val {
            display: block;
            font-family: 'Poppins', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 5px;
        }

        .stat-lbl {
            font-size: 0.75rem;
            color: #64748b;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* --- RIGHT: NARRATIVE --- */
        .text-column {
            padding: 10px;
        }

        .badge {
            display: inline-block;
            background: rgba(37, 99, 235, 0.1);
            color: var(--primary);
            padding: 8px 16px;
            border-radius: 50px;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 0.85rem;
            margin-bottom: 20px;
        }

        .main-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            line-height: 1.2;
            color: #0D3C75 !important;
            margin: 0 0 20px 0;
            font-weight: 700;
        }

        .main-title span { color: inherit; }

        .intro-text {
            font-size: 1rem;
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 30px;
            border-left: 4px solid var(--primary);
            padding-left: 20px;
        }

        /* Accordion Stack */
        .accordion-stack {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .acc-card {
            background: #fff;
            border-radius: 16px;
            border: 1px solid rgba(0,0,0,0.05);
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .acc-card:hover {
            transform: translateX(5px);
            border-color: rgba(37, 99, 235, 0.3);
        }

        .acc-header {
            padding: 18px 25px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .header-left { display: flex; align-items: center; gap: 15px; }

        .icon-box {
            width: 40px; height: 40px;
            background: #f1f5f9;
            border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            color: #64748b; font-size: 1.1rem;
            transition: 0.3s;
        }

        .acc-title {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--dark);
        }

        .acc-body {
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            transition: all 0.4s ease;
            background: #f8fafc;
        }

        .acc-inner {
            padding: 0 25px 20px 80px;
            font-size: 0.92rem;
            color: #555;
            line-height: 1.6;
        }

        /* Active State */
        .acc-card.active {
            box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
            border-color: var(--primary);
        }
        .acc-card.active .icon-box { background: var(--primary); color: #fff; }
        .acc-card.active .acc-body { max-height: 400px; opacity: 1; }
        .plus-icon { transition: 0.3s; color: #cbd5e1; }
        .acc-card.active .plus-icon { transform: rotate(45deg); color: var(--primary); }

        /* --- RESPONSIVE --- */
        @media (max-width: 1024px) {
            .content-grid { grid-template-columns: 1fr; gap: 40px; }
            .image-frame { max-height: 400px; }
            .impact-section-wrapper { padding-top: 60px; height: auto; }
        }

        @media (max-width: 600px) {
            .main-title { font-size: 1.5rem; }
            .stats-bar-under { flex-direction: column; gap: 15px; align-items: flex-start; }
            .stat-item { width: 100%; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #f1f5f9; padding-bottom: 10px; }
            .stat-item:not(:last-child)::after { display: none; }
            .acc-inner { padding: 0 20px 20px 20px; }
        }



        /* Section 4 Impact Story 3 */
        :root {
            --primary: #0D3C75;
            --accent: #f97316;
            --dark: #0D3C75;
            --text-light: #475569;
            --glass: rgba(255, 255, 255, 0.9);
            --shadow-lg: 0 20px 50px -12px rgba(0, 0, 0, 0.15);
        }

        body { 
            margin: 0; 
            font-family: 'Poppins', sans-serif; 
            background: #f8fafc; 
            overflow-x: hidden; 
        }
        
        * { box-sizing: border-box; }

        /* --- SECTION CONTAINER --- */
        .impact-section-wrapper {
            position: relative;
            width: 100%;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 80px 5%;
            background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
            overflow: hidden;
        }

        /* Abstract Background Elements */
        .bg-decoration {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.5;
            z-index: 0;
        }
        .blob-1 { top: -10%; left: -10%; width: 600px; height: 600px; background: rgba(37, 99, 235, 0.08); }
        .blob-2 { bottom: -10%; right: -10%; width: 500px; height: 500px; background: rgba(249, 115, 22, 0.08); }

        /* --- LAYOUT GRID --- */
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            max-width: 1400px;
            margin: 0 auto;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        /* --- LEFT: VISUALS --- */
        .visual-column {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .image-frame {
            width: 100%;
            aspect-ratio: 4 / 3; 
            max-height: 550px;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            position: relative;
        }

        .image-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1s ease;
        }

        .visual-column:hover .image-frame img {
            transform: scale(1.05);
        }

        /* Stats Bar */
        .stats-bar-under {
            background: #ffffff;
            border: 1px solid rgba(0,0,0,0.05);
            border-radius: 20px;
            padding: 25px 30px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.06);
            animation: slideUp 1s ease-out forwards;
        }

        @keyframes slideUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .stat-item {
            text-align: center;
            position: relative;
            flex: 1;
        }
        
        .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0; top: 10%;
            height: 80%; width: 1px;
            background: #e2e8f0;
        }

        .stat-val {
            display: block;
            font-family: 'Poppins', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 5px;
        }

        .stat-lbl {
            font-size: 0.75rem;
            color: #64748b;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* --- RIGHT: NARRATIVE --- */
        .text-column {
            padding: 10px;
        }

        .badge {
            display: inline-block;
            background: rgba(37, 99, 235, 0.1);
            color: var(--primary);
            padding: 8px 16px;
            border-radius: 50px;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 0.85rem;
            margin-bottom: 20px;
        }

        .main-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            line-height: 1.2;
            color: #0D3C75 !important;
            margin: 0 0 20px 0;
            font-weight: 700;
        }

        .main-title span { color: inherit; }

        .intro-text {
            font-size: 1.05rem;
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 35px;
            border-left: 4px solid var(--accent);
            padding-left: 20px;
        }

        /* Accordion Stack */
        .accordion-stack {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .acc-card {
            background: #fff;
            border-radius: 16px;
            border: 1px solid rgba(0,0,0,0.05);
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .acc-card:hover {
            transform: translateX(5px);
            border-color: rgba(37, 99, 235, 0.3);
        }

        .acc-header {
            padding: 18px 25px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .header-left { display: flex; align-items: center; gap: 15px; }

        .icon-box {
            width: 40px; height: 40px;
            background: #f1f5f9;
            border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            color: #64748b; font-size: 1.1rem;
            transition: 0.3s;
        }

        .acc-title {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--dark);
        }

        .acc-body {
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            transition: all 0.4s ease;
            background: #f8fafc;
        }

        .acc-inner {
            padding: 0 25px 20px 80px;
            font-size: 0.95rem;
            color: #555;
            line-height: 1.6;
        }

        /* Active State */
        .acc-card.active {
            box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
            border-color: var(--primary);
        }
        .acc-card.active .icon-box { background: var(--primary); color: #fff; }
        .acc-card.active .acc-body { max-height: 350px; opacity: 1; }
        .plus-icon { transition: 0.3s; color: #cbd5e1; }
        .acc-card.active .plus-icon { transform: rotate(45deg); color: var(--primary); }

        /* --- RESPONSIVE --- */
        @media (max-width: 1024px) {
            .content-grid { grid-template-columns: 1fr; gap: 40px; }
            .image-frame { max-height: 400px; }
            .impact-section-wrapper { padding-top: 60px; height: auto; }
        }

        @media (max-width: 600px) {
            .main-title { font-size: 1.5rem; }
            .stats-bar-under { flex-direction: column; gap: 15px; align-items: flex-start; }
            .stat-item { width: 100%; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #f1f5f9; padding-bottom: 10px; }
            .stat-item:not(:last-child)::after { display: none; }
            .acc-inner { padding: 0 20px 20px 20px; }
        }



        /* Section 6 Our Out Reach */
                /* --- VARIABLES --- */
        :root {
            --su-blue: #0e305e;
            --su-orange: #f36f21;
            --su-bg-light: #f8fbfd;
        }

        /* --- SECTION STYLES --- */
        .reach-section {
            padding: 10px 5%;
            background-color: var(--su-bg-light);
            font-family: 'Poppins', sans-serif;
            position: relative;
            overflow: hidden;
        }

        /* Abstract Map Grid Background */
        .map-grid-bg {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: 
                linear-gradient(rgba(14, 48, 94, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(14, 48, 94, 0.03) 1px, transparent 1px);
            background-size: 40px 40px;
            z-index: 0;
        }

        .reach-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* --- HEADER --- */
        .reach-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .reach-title {
            font-family: 'Poppins', sans-serif;
            font-size: 3rem;
            color: var(--su-blue);
            margin: 0;
            font-weight: 700;
        }

        .reach-title span {
            color: var(--su-orange);
            position: relative;
            display: inline-block;
        }

        /* Underline Effect */
        .reach-title span::after {
            content: '';
            position: absolute;
            bottom: 5px; left: 0; width: 100%; height: 10px;
            background: rgba(243, 111, 33, 0.2);
            z-index: -1;
            transform: skewX(-20deg);
        }

        /* --- THE COMPASS GRID (The Wow Factor) --- */
        .compass-layout {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            grid-template-rows: auto auto auto;
            gap: 20px;
            align-items: center;
            justify-items: center;
            margin-bottom: 70px;
            position: relative;
        }

        /* Connecting Lines (CSS Drawing) */
        .compass-lines {
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            width: 80%; height: 80%;
            z-index: -1;
        }
        
        .line-v, .line-h {
            position: absolute;
            background: #e2e8f0;
            border-radius: 4px;
        }
        .line-v { width: 2px; height: 100%; left: 50%; top: 0; }
        .line-h { width: 100%; height: 2px; top: 50%; left: 0; }

        /* The Central Core (1000+ Programs) */
        .core-circle {
            grid-column: 2;
            grid-row: 2;
            width: 220px; height: 220px;
            background: var(--su-blue);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            box-shadow: 0 0 0 15px rgba(14, 48, 94, 0.05), 0 0 40px rgba(14, 48, 94, 0.3);
            animation: pulseCore 3s infinite;
            z-index: 2;
        }

        @keyframes pulseCore {
            0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(14, 48, 94, 0.4); }
            70% { transform: scale(1.02); box-shadow: 0 0 0 20px rgba(14, 48, 94, 0); }
            100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(14, 48, 94, 0); }
        }

        .core-num {
            font-family: 'Poppins', sans-serif;
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1;
            color: var(--su-orange);
        }

        .core-txt {
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 5px;
            font-weight: 600;
        }

        /* The Satellite Nodes (Geographic Locations) */
        .geo-node {
            background: white;
            padding: 15px 25px;
            border-radius: 12px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            text-align: center;
            border: 1px solid #eee;
            width: 200px;
            transition: transform 0.3s;
            position: relative;
            z-index: 2;
        }

        .geo-node:hover { transform: translateY(-5px); border-color: var(--su-orange); }

        .geo-icon {
            font-size: 1.5rem;
            color: var(--su-orange);
            margin-bottom: 8px;
        }

        .geo-title {
            font-weight: 700;
            color: var(--su-blue);
            margin-bottom: 4px;
            font-size: 1.1rem;
        }

        .geo-sub { font-size: 0.85rem; color: #666; }

        /* Positioning Nodes */
        .node-n { grid-column: 2; grid-row: 1; } /* North */
        .node-s { grid-column: 2; grid-row: 3; } /* South */
        .node-w { grid-column: 1; grid-row: 2; justify-self: end; } /* West */
        .node-e { grid-column: 3; grid-row: 2; justify-self: start; } /* East */

        /* --- MISSION FOOTER --- */
        .mission-footer {
            background: linear-gradient(135deg, #fff 0%, #f1f5f9 100%);
            border-left: 5px solid var(--su-orange);
            padding: 40px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            gap: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
        }

        .badge-16 {
            background: var(--su-blue);
            color: white;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 2rem;
            padding: 15px 25px;
            border-radius: 12px;
            white-space: nowrap;
        }

        .mission-text {
            font-size: 1.2rem;
            color: #475569;
            line-height: 1.6;
        }

        /* RESPONSIVE */
        @media (max-width: 900px) {
            .compass-layout {
                display: flex;
                flex-direction: column;
                gap: 20px;
            }
            .compass-lines { display: none; } /* Hide lines on mobile */
            
            .node-w, .node-e { justify-self: center; }
            .core-circle { width: 180px; height: 180px; order: -1; margin-bottom: 20px; }
            .core-num { font-size: 2.5rem; }
            
            .mission-footer { flex-direction: column; text-align: center; }
        }

        /* Section 7 Our Commitment Section */
        /* --- GLOBAL RESET & VARS --- */
        * { box-sizing: border-box; margin: 0; padding: 0; }
        
        :root {
            --su-blue: #0e305e;
            --su-orange: #f36f21;
            --su-light-bg: #f8fbfd;
            --su-gray-bg: #f3f6f9;
            --shadow-soft: 0 20px 60px rgba(14, 48, 94, 0.08);
            --shadow-card: 0 10px 30px rgba(0,0,0,0.05);
        }

        body { font-family: 'Poppins', sans-serif; overflow-x: hidden; }

        /* --- BACKGROUND SECTION (Invite) --- */
        .light-invite-section {
            padding: 80px 5%;
            background-color: var(--su-light-bg);
            position: relative;
            min-height: 100vh;
        }

        .dot-pattern {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background-image: radial-gradient(#cbd5e1 1.5px, transparent 1.5px);
            background-size: 40px 40px; opacity: 0.4; z-index: 0;
        }

        .invite-container {
            max-width: 1200px; margin: 0 auto; position: relative; z-index: 2;
            display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center;
        }

        /* Invite Left */
        .invite-title {
            font-family: 'Poppins', sans-serif; font-size: 2rem;
            color: #0D3C75; line-height: 1.2; margin: 0 0 20px 0; font-weight: 700;
        }
        .year-pill {
            display: inline-block; background: #eef2ff; color: var(--su-blue);
            padding: 8px 16px; border-radius: 30px; font-weight: 700;
            font-size: 0.85rem; text-transform: uppercase; margin-bottom: 25px;
        }
        .invite-desc { font-size: 1.1rem; color: #475569; line-height: 1.6; margin-bottom: 30px; }
        
        .belief-list { list-style: none; }
        .belief-list li {
            display: flex; align-items: start; gap: 15px; margin-bottom: 15px;
            font-size: 1.05rem; color: var(--su-blue); font-weight: 500;
        }
        .belief-list li i { color: var(--su-orange); margin-top: 5px; }

        /* Invite Card */
        .white-card {
            background: white; padding: 50px; border-radius: 30px;
            box-shadow: var(--shadow-soft); text-align: center;
            position: relative; overflow: hidden; border: 1px solid white;
        }
        .white-card::before {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 6px;
            background: linear-gradient(90deg, var(--su-blue), var(--su-orange));
        }
        .card-text { color: #64748b; margin-bottom: 20px; line-height: 1.6; }
        .tagline { color: var(--su-blue); font-weight: 700; margin-bottom: 30px; display: block; }

        .btn-join {
            display: inline-flex; align-items: center; gap: 10px;
            background: var(--su-blue); color: white; padding: 16px 35px;
            border-radius: 50px; font-weight: 700; cursor: pointer; border: none;
            transition: 0.3s; font-size: 1rem;
        }
        .btn-join:hover { background: var(--su-orange); transform: translateY(-3px); }

        /* =========================================
           MODAL & OR DIVIDER STYLES 
        ========================================= */
        .modal-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(14, 48, 94, 0.85); backdrop-filter: blur(6px);
            display: none; justify-content: center; align-items: center;
            z-index: 9999; padding: 20px;
        }
        .modal-overlay.active { display: flex; }

        .dual-modal-box {
            background: #fff;
            width: 100%; max-width: 950px;
            border-radius: 24px;
            position: relative;
            display: grid;
            grid-template-columns: 1.3fr 0.9fr; 
            overflow: visible;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
            animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        @keyframes slideUp {
            from { opacity: 0; transform: translateY(40px) scale(0.95); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }

        /* CLOSE BUTTON */
        .close-dual-modal {
            position: absolute; top: 15px; right: 20px;
            width: 36px; height: 36px;
            border-radius: 50%; border: none; background: #fff;
            font-size: 20px; cursor: pointer; color: #64748b;
            display: flex; align-items: center; justify-content: center;
            transition: 0.2s; z-index: 20;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .close-dual-modal:hover { background: #f1f5f9; color: var(--su-orange); transform: rotate(90deg); }

        /* --- LEFT: FORM --- */
        .modal-form-side {
            padding: 40px 50px;
            background: #fff;
            border-top-left-radius: 24px;
            border-bottom-left-radius: 24px;
        }
        .modal-form-side h2 {
            font-family: 'Poppins', sans-serif; font-size: 2rem;
            color: var(--su-blue); margin-bottom: 8px;
        }
        .modal-form-side h2 span { color: var(--su-orange); }
        .modal-form-side p { color: #64748b; margin-bottom: 25px; font-size: 0.95rem; }

        .input-group { margin-bottom: 15px; }
        .input-group label {
            display: block; font-weight: 600; margin-bottom: 6px;
            color: #334155; font-size: 0.9rem;
        }

        .input-field { position: relative; }
        .input-field i {
            position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
            color: #94a3b8; font-size: 1.1rem; transition: 0.3s; pointer-events: none;
        }
        .input-field input {
            width: 100%; padding: 12px 16px 12px 48px;
            background: #f8fafc; border: 1px solid #e2e8f0;
            border-radius: 10px; font-family: 'Poppins', sans-serif;
            font-size: 0.95rem; color: var(--su-blue); transition: all 0.3s ease;
        }
        .input-field input:focus {
            background: #fff; border-color: var(--su-blue);
            box-shadow: 0 0 0 4px rgba(14, 48, 94, 0.1); outline: none;
        }
        .input-field input:focus + i { color: var(--su-blue); }

        .btn-submit-full {
            width: 100%; padding: 14px; margin-top: 10px;
            background: var(--su-orange); color: white;
            border: none; border-radius: 10px;
            font-weight: 600; font-size: 1rem; cursor: pointer;
            box-shadow: 0 4px 14px rgba(243, 111, 33, 0.3); transition: 0.3s;
        }
        .btn-submit-full:hover { background: #d95e16; transform: translateY(-2px); }

        /* --- CENTER: OR DIVIDER --- */
        .modal-divider {
            position: absolute;
            top: 50%;
            left: 59%; 
            transform: translate(-50%, -50%);
            width: 44px; height: 44px;
            background: #fff;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-weight: 700; color: #94a3b8; font-size: 0.85rem;
            box-shadow: 0 0 0 1px #e2e8f0, 0 4px 12px rgba(0,0,0,0.08);
            z-index: 10;
        }

        /* --- RIGHT: EXPERT --- */
        .modal-expert-side {
            background: var(--su-gray-bg);
            padding: 40px;
            border-top-right-radius: 24px;
            border-bottom-right-radius: 24px;
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            text-align: center;
        }
        .expert-avatar {
            width: 100px; height: 100px;
            border-radius: 50%; border: 4px solid #fff;
            margin-bottom: 15px; object-fit: cover;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .expert-tag {
            color: var(--su-orange); font-weight: 700; font-size: 0.75rem;
            letter-spacing: 1px; text-transform: uppercase; margin-bottom: 5px;
        }
        .expert-name { font-size: 1.5rem; color: var(--su-blue); margin-bottom: 8px; }
        .expert-desc {
            font-size: 0.9rem; color: #64748b; margin-bottom: 25px;
            line-height: 1.5; max-width: 90%;
        }
        
        .expert-actions { width: 100%; display: flex; flex-direction: column; gap: 10px; }

        .btn-call {
            background: #22c55e; color: white; padding: 12px;
            border-radius: 8px; text-decoration: none; font-weight: 600;
            display: flex; align-items: center; justify-content: center; gap: 8px;
            transition: 0.2s; box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
        }
        .btn-call:hover { background: #16a34a; transform: translateY(-2px); }

        .btn-whatsapp {
            background: #fff; color: #075e54;
            border: 1px solid #075e54; padding: 12px;
            border-radius: 8px; text-decoration: none; font-weight: 600;
            display: flex; align-items: center; justify-content: center; gap: 8px;
            transition: 0.2s;
        }
        .btn-whatsapp:hover { background: #075e54; color: #fff; }

        /* --- RESPONSIVE MOBILE --- */
        @media (max-width: 850px) {
            .invite-container { grid-template-columns: 1fr; }
            .invite-title { font-size: 1.8rem; }

            .dual-modal-box {
                grid-template-columns: 1fr;
                max-width: 500px;
                max-height: 90vh;
                overflow-y: auto;
            }

            .modal-form-side {
                padding: 30px 25px;
                border-radius: 24px 24px 0 0; 
            }

            .modal-expert-side {
                padding: 40px 25px 30px;
                border-radius: 0 0 24px 24px; 
            }

            .modal-divider {
                top: auto; bottom: auto;
                left: 50%;
                transform: translateX(-50%);
                position: relative;
                margin-top: -22px; 
                margin-bottom: -22px; 
                background: #fff;
                box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            }
        }

        /* ============================================== 
   3. 5-COLUMN PARALLAX GALLERY (ALWAYS 5 COLUMNS)
   ============================================== */
.parallax-gallery {
    position: relative;
    width: 100%;
    height: 150vh; 
    background: #f4f7fc;
    overflow: hidden; 
    
    display: flex;
    justify-content: center;
    align-items: center; /* Center vertically to cover top/bottom edges */
    padding-top: 0; 
}

.gallery-wrapper {
    display: flex;
    gap: 10px; /* Reduced gap slightly so 5 columns fit better */
    
    /* Scale logic to cover corners (Edge-to-Edge) */
    transform: rotate(-15deg) scale(1.4); 
    transform-origin: center center;
    
    width: 160vw; /* Very wide to ensure it covers screen edges */
}

/* --- Columns --- */
.gallery-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    
    /* Force 5 columns: 100% / 5 = 20% max width */
    min-width: 0; /* Important: prevents columns from forcing overflow */
    max-width: 20%; 

    /* Animation */
    animation: simpleFloat 8s ease-in-out infinite;
}

/* Even columns float in reverse */
.gallery-col:nth-child(even) {
    animation-direction: reverse;
    animation-duration: 10s;
}

/* --- Images --- */
.gallery-col img {
    width: 100%;
    display: block;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    object-fit: cover;
    background-color: #ddd;
    min-height: 120px; /* Slightly smaller min-height to fit */
}

/* --- Responsive Updates --- */
@media screen and (max-width: 768px) {
    .parallax-gallery {
        height: 100vh;
    }
    .gallery-wrapper {
        width: 250vw; /* Make wrapper huge on mobile to fit 5 cols properly */
        transform: rotate(-10deg) scale(1.6);
        gap: 8px;
    }
    
    /* I removed the code that hid columns 4 and 5 here. 
       Now all 5 columns will show on mobile too. */
       
    .gallery-col {
        /* Ensure they stay side-by-side */
        max-width: 20%; 
    }
}

/* --- Animation Keyframes --- */
@keyframes simpleFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-40px); }
    100% { transform: translateY(0); }
}



/* --- Vertical Waterfall Section Styling --- */

.su-waterfall-section {
    position: relative;
    padding: 60px 0;
    background: #ffffff; /* Pure White Background */
    font-family: inherit; /* Inherit font from your theme */
    overflow: hidden;
}

/* 2. Header & Title */
.su-waterfall-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 15px;
    position: relative;
    z-index: 10;
}

.su-title-wrapper {
    display: inline-block;
}

.su-title-img {
    width: 750px; /* Exact size requested */
    max-width: 100%; /* Responsive safety */
    height: auto;
    display: block;
}

/* 3. Stream Container (The Window) */
.su-stream-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 500px; /* Height of the viewing area */
    overflow: hidden;
}

/* REMOVED: Section 4 (White Fade Gradients) was deleted here */

/* 5. The Grid Setup */
.su-stream-grid {
    display: flex;
    justify-content: space-between;
    height: 100%;
    padding: 0 20px;
}

.su-col {
    position: relative;
    width: 18%; /* 5 Columns evenly spaced */
    height: 100%;
    display: flex;
    justify-content: center;
}

/* 6. The Moving Track */
.su-track {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px; /* Space between logos vertically */
    padding: 20px 0;
    width: 100%;
    will-change: transform; /* Performance optimization */
}

/* 7. Image Styling (The Magic Blend) */
.su-track img {
    width: 100%;
    max-width: 130px; /* Maximum logo size */
    height: auto;
    object-fit: contain;
    
    /* This removes the white box from JPGs so they look transparent */
    mix-blend-mode: multiply; 
    
    opacity: 0.9;
    filter: saturate(100%); /* Full Color */
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}

/* Hover Effects */
.su-track img:hover {
    transform: scale(1.2); /* Pop up */
    opacity: 1;
    z-index: 100;
}

/* Pause column on hover */
.su-col:hover .su-track {
    animation-play-state: paused;
}

/* 8. Animations */
.su-move-up {
    animation: suScrollUp linear infinite;
}

.su-move-down {
    animation: suScrollDown linear infinite;
}

/* Animation Speeds */
.su-speed-slow { animation-duration: 35s; }
.su-speed-med  { animation-duration: 25s; }
.su-speed-fast { animation-duration: 20s; }

@keyframes suScrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); } /* Scrolls exactly half the duplicate list */
}

@keyframes suScrollDown {
    0% { transform: translateY(-50%); }
    100% { transform: translateY(0); }
}

/* 9. Mobile Responsiveness */
@media (max-width: 768px) {
    .su-title-img { 
        width: 90%; 
    }
    .su-stream-container {
        height: 400px;
    }
    .su-stream-grid {
        justify-content: space-around;
    }
    .su-col {
        width: 30%; /* Make columns wider */
    }
    /* Hide columns 4 and 5 on mobile to prevent clutter */
    .su-col:nth-child(4),
    .su-col:nth-child(5) {
        display: none;
    }
    .su-track img {
        max-width: 90px;
    }
}

:root { --bg: #ffffff; --ink: #101828; --slate: #475467; }
.traction-area { 
    background: var(--bg); font-family: 'Poppins', sans-serif; 
    padding: 20px 20px; color: var(--ink); 
}
.traction-inner { max-width: 1000px; margin: 0 auto; }

/* Header Style */
.traction-intro { margin-bottom: 50px; }
.dot-line { width: 40px; height: 4px; background: var(--ink); border-radius: 2px; margin-bottom: 15px; }
.traction-intro h2 { font-size: 32px; font-weight: 800; margin: 0; letter-spacing: -1px; }
.traction-intro p { color: var(--slate); margin-top: 8px; font-size: 16px; }

/* Grid & Tiles */
.traction-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.stat-tile { 
    background: #ffffff; padding: 32px; border-radius: 24px;
    box-shadow: 10px 10px 30px rgba(166, 180, 200, 0.3), -10px -10px 30px #ffffff;
    transition: transform 0.2s ease;
}
.stat-tile:hover { transform: translateY(-5px); }

.stat-top { display: flex; align-items: baseline; gap: 4px; margin-bottom: 12px; }
.stat-label { display: block; width: 100%; font-size: 11px; font-weight: 800; text-transform: uppercase; color: var(--slate); letter-spacing: 1px; margin-bottom: 4px; }
.stat-num { font-size: 48px; font-weight: 800; letter-spacing: -2px; }
.stat-unit { font-size: 24px; font-weight: 800; color: var(--slate); }

/* Animated Accent Bar */
.stat-bar { height: 6px; background: #eee; border-radius: 3px; margin-bottom: 16px; position: relative; overflow: hidden; }
.stat-bar::after { 
    content: ''; position: absolute; left: 0; top: 0; height: 100%; width: var(--w); 
    background: var(--bg); border-radius: 3px; transform: translateX(-100%); transition: transform 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.active .stat-bar::after { transform: translateX(0); }

.stat-tile p { font-size: 14px; line-height: 1.5; color: var(--slate); margin: 0; }
.stat-tile p b { color: var(--ink); }
@media (max-width: 600px) { .stat-num { font-size: 38px; } }


:root { --p-blue: #0D3C75; --p-green: #10b981; --mg-text: #0D3C75; }

.mg-impact {
    position: relative; padding: 10px 20px; background: #ffffff;
    font-family: 'Poppins', sans-serif; overflow: hidden;
}

/* REMOVED: Section Fades CSS */

/* Moving Aura Decoration */
.mg-aura {
    position: absolute; top: 20%; left: 30%; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    filter: blur(60px); z-index: 1; animation: auraMove 10s infinite alternate;
}
@keyframes auraMove { 
    0% { transform: translate(0, 0); } 
    100% { transform: translate(100px, 50px); } 
}

.mg-container { max-width: 1100px; margin: 0 auto; position: relative; z-index: 5; }

/* Grid Layout */
.mg-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }

/* Left Pillar */
.mg-monument { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; }
.mg-big-num { font-size: 110px; font-weight: 800; line-height: 0.8; letter-spacing: -6px; color: var(--p-blue); }
.mg-m-label strong { display: block; font-size: 24px; letter-spacing: 2px; color: var(--mg-text); }
.mg-m-label span { font-size: 14px; color: #94a3b8; font-weight: 600; }

.mg-subhead { font-size: 32px; font-weight: 800; margin-bottom: 15px; letter-spacing: -1px; }
.mg-left p { font-size: 18px; color: #64748b; line-height: 1.6; }

/* Right Cards */
.mg-glass-card {
    background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(10px);
    padding: 35px; border-radius: 32px; border: 1px solid #f1f5f9;
    display: flex; gap: 25px; margin-bottom: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px -15px rgba(0,0,0,0.05);
}
.mg-glass-card:hover { transform: translateX(15px) scale(1.02); border-color: var(--p-blue); box-shadow: 0 20px 50px -10px rgba(37, 99, 235, 0.1); }
.accent-green:hover { border-color: var(--p-green); box-shadow: 0 20px 50px -10px rgba(16, 185, 129, 0.1); }

.mg-card-icon { width: 50px; height: 50px; border-radius: 14px; background: #eff6ff; color: var(--p-blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.accent-green .mg-card-icon { background: #ecfdf5; color: var(--p-green); }
.mg-card-icon svg { width: 24px; height: 24px; }

.mg-card-body h4 { font-size: 20px; font-weight: 800; margin: 0 0 8px 0; }
.mg-card-body p { margin: 0; color: #64748b; font-size: 15px; }

/* UPDATED: Methodology Loop UI - Forces One Line */
.mg-loop { 
    margin-top: 15px; 
    font-size: 10px; /* Reduced slightly to fit */
    font-weight: 700; 
    text-transform: uppercase; 
    color: var(--p-blue); 
    letter-spacing: 0.5px;
    
    /* The Logic to keep it on one line */
    white-space: nowrap; 
    display: flex;
    align-items: center;
    gap: 3px; 
}

.mg-loop span { 
    background: #eff6ff; 
    padding: 4px 6px; /* Reduced padding slightly */
    border-radius: 4px; 
}

/* Stats UI */
.mg-stats-row { display: flex; gap: 30px; margin-top: 15px; }
.mg-stat strong { display: block; font-size: 24px; font-weight: 800; color: var(--mg-text); }
.mg-stat span { font-size: 12px; color: #94a3b8; font-weight: 600; text-transform: uppercase; }

/* Responsive */
@media (max-width: 900px) {
    .mg-layout { grid-template-columns: 1fr; gap: 40px; }
    .mg-big-num { font-size: 80px; }
    .mg-glass-card:hover { transform: translateY(-10px); }
    
    /* Ensure scroll on small mobiles if text is still too wide */
    .mg-loop { overflow-x: auto; padding-bottom: 5px; } 
}/* STEM STREAM SECTION */
.stem-stream-section {
    padding: 60px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.section-intro {
    text-align: center;
    margin-bottom: 40px;
}

.heading-png {
    max-width: 750px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.title-line {
    width: 50px;
    height: 3px;
    background-color: #ffcc00;
    margin: 8px auto 0;
}

.stream-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px 0;
}

.stream-row {
    display: flex;
    overflow: hidden;
    user-select: none;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.stream-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.stream-track img {
    height: 240px;
    width: 340px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #e1e8ed;
    background: #f8fafc;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.stream-left .stream-track {
    animation: scrollLeftInfinite 50s linear infinite;
}

.stream-right .stream-track {
    animation: scrollRightInfinite 50s linear infinite;
}

.stream-row:hover .stream-track {
    animation-play-state: paused;
}

.stream-track img:hover {
    transform: scale(1.05) translateY(-5px);
    border: 3px solid #003d71;
    box-shadow: 0 15px 30px rgba(0, 61, 113, 0.15);
    z-index: 10;
}

@keyframes scrollLeftInfinite {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-100% / 2)); }
}

@keyframes scrollRightInfinite {
    from { transform: translateX(calc(-100% / 2)); }
    to { transform: translateX(0); }
}

@media (max-width: 768px) {
    .stream-track img {
        height: 160px;
        width: 240px;
    }
    .stream-row {
        mask-image: none;
    }
}
