/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700&display=swap');

:root {
    /* Colors from Logo */
    --primary-color: #2894b4; /* Logo Teal */
    --primary-light: #48aed0;
    --primary-dark: #1b6d85;
    
    --secondary-color: #fbb03b; /* Logo Orange */
    --secondary-light: #fcc366;
    
    --accent-color: #e6332a; /* Logo Red */
    
    --bg-white: #FFFFFF;
    --bg-light-gray: #F8FAFC;
    --bg-gray: #F1F5F9;
    
    --text-main: #0F172A; /* Slate 900 */
    --text-muted: #64748B; /* Slate 500 */
    
    /* Effects & Spacing */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.12);
    
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: 1px solid rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Typography */
    --font-sans: 'Cairo', 'Inter', sans-serif;
    --font-heading: 'Cairo', 'Outfit', sans-serif;

    /* Navbar height — logo 80px + 5px top/bottom padding */
    --navbar-height: 95px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background-color: var(--bg-light-gray);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* Global Animated Background */
.animated-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    background: #f8fafc;
}

.blob-1, .blob-2, .blob-3 {
    position: absolute;
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.4;
    animation: float 20s infinite ease-in-out alternate;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: var(--primary-light);
    animation-delay: 0s;
}

.blob-2 {
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: rgba(251, 176, 59, 0.3); /* Secondary */
    animation-delay: -5s;
    animation-duration: 25s;
}

.blob-3 {
    top: 40%;
    left: 50%;
    width: 40vw;
    height: 40vw;
    background: rgba(40, 148, 180, 0.2);
    transform: translate(-50%, -50%);
    animation-delay: -10s;
    animation-duration: 30s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(5%, 10%) scale(1.1); }
    100% { transform: translate(-5%, -5%) scale(0.9); }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Base Layout & Utilities */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section base — starts BELOW the fixed navbar */
.section {
    padding: 100px 0;
}

/* Hero section fills full viewport */
section[style*="min-height: 100vh"] {
    padding-top: var(--navbar-height) !important;
}

.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-smooth);
    border: none;
    outline: none;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    box-shadow: 0 4px 14px rgba(15, 118, 110, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 118, 110, 0.4);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.3);
}

.btn-secondary:hover {
    background-color: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

/* Glassmorphism Classes */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: var(--radius-lg);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 5px 0;
    transition: all var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.brand-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 3px;
    background-color: var(--secondary-color);
    transition: width var(--transition-fast);
    border-radius: 2px;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
    left: auto;
}

.nav-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Custom Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    background: var(--bg-white);
    border-radius: var(--radius-full);
    padding: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    margin-inline-end: 15px;
}

.lang-btn {
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    background: transparent;
}

.lang-btn.active, .lang-btn:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 2px 8px rgba(40, 148, 180, 0.3);
}

/* Glassmorphism Overrides for Premium Feel */
.glass {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}
.glass:hover {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

/* Alerts */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    font-weight: 500;
}

.alert-success {
    background-color: #DEF7EC;
    color: #03543F;
    border: 1px solid #84E1BC;
}

.alert-error {
    background-color: #FDE8E8;
    color: #9B1C1C;
    border: 1px solid #F8B4B4;
}

.alert-info {
    background-color: #E1EFFE;
    color: #1E429F;
    border: 1px solid #C3DDFD;
}

.alert-warning {
    background-color: #FDF6B2;
    color: #723B13;
    border: 1px solid #FCE96A;
}

/* Forms */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-main);
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: 1rem;
    background-color: var(--bg-white);
    transition: all var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

/* Footer */
.site-footer {
    background-color: var(--text-main);
    color: var(--bg-white);
    padding: 80px 0 40px;
    margin-top: 80px;
}

/* Responsive Design */
.nav-collapse {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 5px;
    margin-right: auto;
}

@media (max-width: 991px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        box-shadow: var(--shadow-md);
        padding: 24px;
        flex-direction: column;
        gap: 24px;
        display: none; /* hidden by default */
        border-top: 1px solid rgba(0,0,0,0.05);
        z-index: 999;
    }
    
    .nav-collapse.active {
        display: flex;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 20px;
    }
    
    .nav-actions {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }
    
    .nav-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .lang-switcher {
        justify-content: center;
        margin-bottom: 10px;
    }

    h1 {
        font-size: 2.2rem !important;
    }
    
    h2 {
        font-size: 1.8rem !important;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero-visual {
        transform: scale(0.8);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .stat-grid, .stagger-container {
        grid-template-columns: 1fr !important;
    }
    
    .hero-visual {
        transform: scale(0.6);
        height: 350px;
    }
    
    div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    
    div[style*="grid-template-columns: 1fr 2fr"] {
        grid-template-columns: 1fr !important;
    }
    
    div[style*="grid-template-columns: 2fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}

/* ==========================================
   Homepage Redesign & Innovative Components
   ========================================== */

/* Badge Styling */
.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.badge-primary-glow {
    background: rgba(40, 148, 180, 0.12);
    color: var(--primary-color);
    border: 1px solid rgba(40, 148, 180, 0.25);
}

.badge-amber-glow {
    background: rgba(251, 176, 59, 0.15);
    color: #d97706;
    border: 1px solid rgba(251, 176, 59, 0.3);
}

.badge-red-glow {
    background: rgba(230, 51, 42, 0.12);
    color: var(--accent-color);
    border: 1px solid rgba(230, 51, 42, 0.25);
}

.badge-cyber {
    background: rgba(40, 148, 180, 0.12);
    color: #059669;
    border: 1px solid rgba(40, 148, 180, 0.3);
}

/* Text Gradient */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Custom Hero Layout */
.hero-wrapper {
    position: relative;
    padding-top: calc(var(--navbar-height) + 20px);
    padding-bottom: 70px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
    margin-bottom: 36px;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white !important;
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(40, 148, 180, 0.35);
    border-radius: var(--radius-full);
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(40, 148, 180, 0.45);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-main) !important;
    border: 2px solid rgba(40, 148, 180, 0.25);
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: var(--primary-color);
    color: white !important;
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Stats Section Styling */
.stats-section-container {
    padding: 20px 0 60px;
    position: relative;
    z-index: 20;
}

.stats-grid-innovative {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card-innovative {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-card-innovative::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.stat-card-innovative:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(40, 148, 180, 0.12);
    background: #ffffff;
}

.stat-card-innovative:hover::before {
    opacity: 1;
}

.stat-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.6rem;
    transition: transform var(--transition-smooth);
}

.stat-card-innovative:hover .stat-icon-wrapper {
    transform: scale(1.08);
}

.stat-number {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
}

/* About Brief Section */
.about-brief-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 50px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05);
    position: relative;
    overflow: hidden;
}

.about-pillars-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 36px;
}

.pillar-item {
    background: var(--bg-light-gray);
    padding: 20px 16px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: all var(--transition-fast);
}

.pillar-item:hover {
    background: #ffffff;
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(40, 148, 180, 0.12);
}

.pillar-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* Young Founders Program Section */
.young-founders-hero-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 32px;
    padding: 50px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.25);
}

.young-founders-hero-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(251, 176, 59, 0.2) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

.yf-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px;
}

.yf-feature-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px;
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.yf-feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary-color);
    transform: translateY(-4px);
}

.yf-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--secondary-color), #f59e0b);
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
    font-weight: bold;
}

/* Learning Tracks Section */
.tracks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}

.track-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 36px 30px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all var(--transition-smooth);
    height: 100%;
}

.track-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.track-card-explorer { border-top: 6px solid var(--primary-color); }
.track-card-builder { border-top: 6px solid var(--secondary-color); }
.track-card-founder { border-top: 6px solid var(--accent-color); }

.track-badge-level {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    display: inline-block;
    margin-bottom: 20px;
}

.track-card-explorer .track-badge-level { background: rgba(40, 148, 180, 0.1); color: var(--primary-color); }
.track-card-builder .track-badge-level { background: rgba(251, 176, 59, 0.15); color: #d97706; }
.track-card-founder .track-badge-level { background: rgba(230, 51, 42, 0.1); color: var(--accent-color); }

/* Mentorship Section */
.mentorship-card-innovative {
    background: #ffffff;
    border-radius: 32px;
    padding: 50px;
    box-shadow: 0 15px 45px rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.mentor-outcome-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.mentor-outcome-item {
    background: var(--bg-light-gray);
    padding: 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all var(--transition-fast);
    border: 1px solid rgba(0,0,0,0.03);
}

.mentor-outcome-item:hover {
    background: white;
    border-color: rgba(40, 148, 180, 0.2);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transform: translateY(-3px);
}

.mentor-outcome-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: rgba(40, 148, 180, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

/* AI & Tech Section */
.tech-ai-section-card {
    background: linear-gradient(135deg, #090d16 0%, #111827 100%);
    border-radius: 32px;
    padding: 55px;
    color: white;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.tech-ai-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.tech-ai-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 30px 24px;
    text-align: center;
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.tech-ai-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: var(--primary-color);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(40, 148, 180, 0.2);
}

.tech-ai-icon {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    background: rgba(40, 148, 180, 0.15);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 20px;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-cta-group {
        justify-content: center;
    }
    .stats-grid-innovative {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-pillars-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .yf-features-grid, .tracks-grid, .tech-ai-grid {
        grid-template-columns: 1fr;
    }
    .mentor-outcome-grid {
        grid-template-columns: 1fr;
    }
    .about-brief-card, .young-founders-hero-card, .mentorship-card-innovative, .tech-ai-section-card {
        padding: 36px 24px;
    }
}

@media (max-width: 576px) {
    .stats-grid-innovative {
        grid-template-columns: 1fr;
    }
    .about-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================
   Scroll Animations & Reveal Styles
   ========================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.scroll-reveal-left {
    opacity: 0;
    transform: translateX(45px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.scroll-reveal-right {
    opacity: 0;
    transform: translateX(-45px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.scroll-reveal-zoom {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.scroll-reveal.scroll-reveal-active,
.scroll-reveal-left.scroll-reveal-active,
.scroll-reveal-right.scroll-reveal-active,
.scroll-reveal-zoom.scroll-reveal-active {
    opacity: 1 !important;
    transform: translateY(0) scale(1) translateX(0) !important;
}


