:root {
    /* Refined Color Palette - Corporate Vibrant */
    --primary-navy: #1E293B; /* Trustworthy Navy */
    --accent-gold: #EAB308; /* Sophisticated Warm Yellow/Gold */
    --accent-blue: #0ea5e9; /* Professional Light Blue */
    --bg-light: #FFFFFF;
    --bg-alt: #F8FAFC;
    --text-main: #334155;
    --text-muted: #64748b;
    --white: #ffffff;
    
    /* Gradients */
    --grad-hero: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    --grad-accent: linear-gradient(135deg, var(--accent-blue) 0%, #0284c7 100%);
    --grad-csr: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    
    /* Shadows & Effects */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 12px 40px rgba(30, 41, 59, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    
    /* Spacing & Radii */
    --radius-lg: 24px;
    --radius-md: 16px;
    --container-max: 1280px;
    --section-p: 120px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, .logo-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--primary-navy);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: var(--section-p) 0;
}

.text-center { text-align: center; }
.text-white { color: var(--white); }
.accent-text { color: var(--accent-gold); }
.highlight-yellow { color: #facc15; }
.gold { color: var(--accent-gold); font-weight: 700; }

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 100px; /* Massively increased from 72px */
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.15));
    transition: transform 0.3s;
}
.logo-img:hover {
    transform: scale(1.05);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 20px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.logo-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-blue);
}

.nav-highlight {
    color: var(--accent-blue) !important;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.btn-primary {
    background: var(--grad-accent);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

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

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

.btn-gold {
    background: var(--accent-gold);
    color: var(--primary-navy);
}

.btn-gold:hover {
    transform: scale(1.05);
    background: #facc15;
}

.btn-lg { padding: 18px 40px; font-size: 17px; }

/* Hero */
.hero {
    padding: 180px 0 120px;
    background: var(--grad-hero);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 80px;
}

.hero-h1 {
    font-size: 64px;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -2px;
    color: var(--primary-navy);
}

/* Forcing visibility on dark backgrounds with high specificity */
section#impact .h2 { color: var(--white) !important; }
footer#contact .h4 { color: var(--white) !important; }
footer#contact .footer-tagline { color: rgba(255, 255, 255, 1) !important; }

.bg-alt h2 { color: var(--white); }
.footer h4 { color: var(--white); }

.hero-p {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 580px;
    margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 20px; }

.badge {
    background: rgba(14, 165, 233, 0.1);
    color: var(--accent-blue);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-carousel-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 320px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    padding: 40px;
    overflow: hidden;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 8px;
}

.indicator {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(30, 41, 59, 0.2);
    cursor: pointer; transition: 0.3s;
}

.indicator.active {
    background: var(--accent-blue);
    width: 24px; border-radius: 4px;
}

.card-icon-group {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.card-icon-group i {
    font-size: 40px;
    color: var(--accent-blue);
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.wave-divider svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.wave-divider .shape-fill {
    fill: var(--bg-light);
}

/* Impact Ticker */
.impact-ticker {
    background: var(--primary-navy);
    color: var(--white);
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 4px solid var(--accent-gold);
}

.ticker-content {
    display: inline-block;
    animation: ticker 40s linear infinite reverse;
}

.impact-ticker span {
    font-size: 16px;
    font-weight: 500;
    margin-right: 60px;
    display: inline-flex;
    align-items: center;
}

.dot {
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
    margin-right: 60px;
}

/* Horizontal Events Marquee */
.horizontal-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 40px 0;
    margin-top: 20px;
    cursor: grab;
}

.marquee-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 30px;
    width: max-content;
    animation: scroll 70s linear infinite reverse;
}

.horizontal-marquee:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Scrolls half the duplicate width */
}

.marquee-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    width: 380px;
    box-shadow: var(--shadow-soft);
    white-space: normal;
    text-align: left;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.marquee-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: var(--grad-accent);
    opacity: 0;
    transition: 0.3s;
}

.marquee-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.marquee-card:hover::before {
    opacity: 1;
}

.marquee-card .card-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.1);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
    transition: 0.4s;
}

.marquee-card .card-icon i {
    font-size: 32px;
    color: var(--accent-blue);
}

.marquee-card:hover .card-icon {
    background: var(--accent-blue);
}

.marquee-card:hover .card-icon i {
    color: var(--white);
}

.marquee-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-navy);
}

.marquee-card p {
    color: var(--text-color);
    line-height: 1.6;
}

/* CSR Section */
.bg-alt { background: var(--grad-csr); }

.csr-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.badge-navy { background: rgba(255, 255, 255, 0.1); color: var(--white); }

.csr-stats {
    display: flex;
    gap: 40px;
    margin: 40px 0;
}

.stat-num {
    display: block;
    font-size: 32px;
    font-family: 'Outfit';
    font-weight: 800;
    color: var(--accent-gold);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.floating-impact-card {
    background: var(--glass-bg);
    padding: 60px;
    border-radius: var(--radius-lg);
    position: relative;
}

.floating-impact-card i {
    font-size: 48px;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.floating-impact-card p {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-navy);
    font-style: italic;
}

/* Why Us Section & Impact Fixes */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 40px; }

#impact .activity-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    transition: transform 0.3s, background 0.3s;
}

#impact .activity-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

#impact .activity-card h4, #impact .activity-card p { color: var(--white); }
#impact .activity-card .card-icon i { color: var(--accent-gold); }
#impact .p-sub { color: rgba(255, 255, 255, 0.7); }

.image-placeholder-modern {
    height: 500px;
    background: #f1f5f9;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.abstract-blobs { position: absolute; inset: 0; }
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.blob-1 { width: 300px; height: 300px; background: rgba(14, 165, 233, 0.2); top: -50px; left: -50px; }
.blob-2 { width: 300px; height: 300px; background: rgba(234, 179, 8, 0.15); bottom: -50px; right: -50px; }

.floating-icon-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-hover);
}

.floating-icon-box i { font-size: 64px; color: var(--accent-gold); margin-bottom: 10px; }
.floating-icon-box span { font-weight: 700; font-size: 18px; }

.value-item { margin-bottom: 32px; }
.value-item h5 { font-size: 20px; margin-bottom: 8px; }

/* Interactivity / Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer & Pre-Footer Redesign */
.pre-footer {
    background: var(--grad-accent);
    border-radius: var(--radius-lg);
    padding: 60px;
    text-align: center;
    transform: translateY(-50px);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.2);
    position: relative;
    z-index: 10;
}

.cta-banner h2 { font-size: 36px; margin-bottom: 16px; }
.cta-banner p { font-size: 18px; margin-bottom: 30px; opacity: 0.9; }
.cta-buttons { display: flex; gap: 20px; justify-content: center; }
.btn-outline-white { border: 2px solid var(--white); color: var(--white); background: transparent; }
.btn-outline-white:hover { background: var(--white); color: var(--accent-blue); }

.footer {
    background: var(--primary-navy);
    color: var(--white);
    padding: 0 0 40px 0;
    border-top: 4px solid var(--accent-gold);
}

.footer-main-wrapper { padding-top: 80px; }

/* Aggressive CSS Color Splashes */
.css-splash {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px); /* Massive blur for organic glowing paint feel */
    z-index: 0;
    pointer-events: none;
    opacity: 0.6; /* High opacity for vibrancy */
}

/* Specific Splash Locations */
.splash-hero-gold {
    background: radial-gradient(circle, #FFC436 0%, rgba(255, 196, 54, 0) 70%);
    width: 800px; height: 800px;
    top: -200px; right: -300px;
}
.splash-hero-orange {
    background: radial-gradient(circle, #FF6B35 0%, rgba(255, 107, 53, 0) 70%);
    width: 600px; height: 600px;
    bottom: -150px; left: -200px;
}

.splash-mission-teal {
    background: radial-gradient(circle, #008170 0%, rgba(0, 129, 112, 0) 70%);
    width: 900px; height: 900px;
    top: -300px; left: -400px;
    opacity: 0.4;
}

.splash-impact-blue {
    background: radial-gradient(circle, #0ea5e9 0%, rgba(14, 165, 233, 0) 70%);
    width: 1000px; height: 1000px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
}

.splash-team-purple {
    background: radial-gradient(circle, #a855f7 0%, rgba(168, 85, 247, 0) 70%);
    width: 900px; height: 900px;
    top: -100px; right: -200px;
    opacity: 0.4;
}

/* Team Section */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.team-card {
    flex: 0 1 260px; /* Fixes block size for perfect centering */
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.team-img-wrapper {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-blue));
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--white);
}

.team-name {
    font-family: 'Outfit';
    font-size: 20px;
    color: var(--primary-navy);
    margin-bottom: 5px;
}

.team-role {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.logo-footer { 
    height: 120px; /* Massive footprint but constrained for footer */
    width: auto;
    align-self: flex-start; /* Prevents flex cross-axis stretching */
    object-fit: contain;
    margin-bottom: 20px; 
    /* Removed filter causing white shape distortion */
}
.footer-tagline { font-size: 16px; margin-bottom: 20px; max-width: 300px; color: rgba(255, 255, 255, 0.9); }

.social-circles { display: flex; gap: 12px; }
.social-circle {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 20px; transition: all 0.3s ease;
    text-decoration: none;
}
.social-circle:hover { background: var(--accent-gold); color: var(--primary-navy); transform: translateY(-3px); }

.footer-heading { color: var(--white); font-family: 'Outfit'; font-size: 20px; margin-bottom: 24px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,0.9); text-decoration: none; transition: 0.3s; font-weight: 500; }
.footer-links a:hover { color: var(--accent-gold); padding-left: 5px; }

.contact-ul { list-style: none; }
.contact-ul li { display: flex; gap: 15px; margin-bottom: 20px; align-items: flex-start; line-height: 1.5; color: rgba(255,255,255,0.9); }
.contact-icon { color: var(--accent-gold); font-size: 24px; line-height: 1; margin-top: 2px;}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: rotate(3deg) translateY(0); }
    50% { transform: rotate(5deg) translateY(-20px); }
}

@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Modal CSS */
.modal-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1; pointer-events: auto;
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-content {
    background: var(--white);
    max-width: 600px;
    width: 90%;
    position: relative;
    border-radius: var(--radius-lg);
    padding: 0;
    overflow: hidden;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: left;
}

.close-modal {
    position: absolute; right: 20px; top: 20px;
    background: none; border: none; font-size: 24px;
    cursor: pointer; color: var(--white);
    transition: color 0.3s;
    z-index: 10;
}
.close-modal:hover { color: var(--accent-gold); }

.modal-header {
    background: var(--primary-navy); color: var(--white);
    padding: 30px 40px; border-bottom: 4px solid var(--accent-gold);
}
.modal-header h2 { font-family: 'Outfit'; font-size: 28px; margin-bottom: 8px; }
.modal-header p { color: rgba(255,255,255,0.8); font-size: 16px; margin-bottom: 0;}

.modal-body {
    padding: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 30px;
}
.bank-details p { margin-bottom: 12px; font-size: 15px; color: var(--text-main); }
.bank-details strong { color: var(--primary-navy); }

.qr-placeholder {
    margin-top: 15px; background: #f8fafc; border: 2px dashed #cbd5e1;
    border-radius: 12px; height: 160px; display: flex; flex-direction: column;
    align-items: center; justify-content: center; color: var(--text-main);
}
.qr-placeholder i { font-size: 64px; margin-bottom: 10px; color: var(--accent-blue);}

.modal-footer {
    padding: 20px 40px; background: #f1f5f9; border-top: 1px solid #e2e8f0;
}
.modal-footer .small-text { font-size: 13px; color: #64748b; display: flex; align-items: center; gap: 8px; margin-bottom: 0;}
.modal-footer .small-text i { color: var(--accent-gold); font-size: 16px; }
.modal-footer .small-text i { color: var(--accent-gold); font-size: 16px; }

/* --- Events Section --- */
.events-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.event-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 380px;
}
.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.2);
}

.event-img-wrap {
    position: relative;
    height: 220px;
    width: 100%;
    overflow: hidden;
}
.event-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.event-card:hover .event-img-wrap img {
    transform: scale(1.05);
}

.event-date-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-navy);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    min-width: 60px;
}
.event-date-badge.disabled {
    background: #64748b;
}
.event-date-badge .month {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
    color: var(--accent-gold);
}
.event-date-badge.disabled .month {
    color: #f1f5f9;
}
.event-date-badge .day {
    display: block;
    font-size: 20px;
    font-weight: 900;
    font-family: 'Outfit';
    line-height: 1;
}

.event-details {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.event-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
    align-self: flex-start;
}
.event-status.pulse-status {
    background: rgba(14, 165, 233, 0.15);
    color: #38bdf8;
}
.event-status.concluded {
    background: rgba(255, 255, 255, 0.08);
    color: #94a3b8;
}

.event-details h4 {
    font-family: 'Outfit';
    font-size: 20px;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.3;
}
.event-details p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    line-height: 1.6;
}

/* --- Video Gallery --- */
.video-scroller {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px 0 40px 0;
    scroll-snap-type: x mandatory;
    margin-top: 20px;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}
.video-scroller::-webkit-scrollbar { display: none; /* Chrome */ }

.video-wrap {
    min-width: 320px;
    height: 540px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    scroll-snap-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.video-wrap:hover {
    transform: translateY(-5px);
}
.video-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}
.placeholder-video {
    flex-direction: column;
    color: var(--text-dark);
    text-align: center;
    padding: 20px;
}
.placeholder-video i { font-size: 54px; color: var(--accent-gold); margin-bottom: 20px; opacity: 0.9;}
.placeholder-video p { font-size: 18px; font-weight: 600; opacity: 0.8; margin-bottom: 5px;}

/* --- New Mission Layout (Clean & Balanced) --- */
.mission-visual-new {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}
.impact-pill {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}
.impact-pill:hover {
    transform: translateX(10px);
    background: var(--white);
    border-color: var(--accent-blue);
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.08);
}
.pill-icon {
    width: 55px;
    height: 55px;
    background: white;
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    flex-shrink: 0;
}
.pill-text strong {
    display: block;
    font-size: 18px;
    color: var(--primary-navy);
    font-family: 'Outfit';
    margin-bottom: 2px;
}
.pill-text span {
    font-size: 14px;
    color: var(--text-grey);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
    .grid-2, .hero-grid, .csr-container, .footer-grid { grid-template-columns: 1fr; gap: 60px; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .hero-h1 { font-size: 48px; }
    .programs-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    /* Navbar Scaling */
    .nav-container { height: auto; flex-direction: column; padding: 12px 0; gap: 10px; }
    .logo-img { height: 50px; } /* Must shrink heavily on mobile to prevent overlap */
    .brand-text { align-items: center; }
    .logo-title { font-size: 16px; text-align: center; }
    .logo-subtitle { display: none; } /* Hide on very small screens to save space */
    .nav-links { flex-wrap: wrap; justify-content: center; gap: 8px; width: 100%; }
    .nav-links a { font-size: 13px; padding: 4px 6px; }
    
    /* Layout Stacking */
    .grid-3 { grid-template-columns: 1fr; gap: 24px; }
    .grid-4 { grid-template-columns: 1fr; gap: 24px; }
    .grid-2 { grid-template-columns: 1fr; gap: 40px; }
    
    /* Padding & Typography Reduction */
    .section-padding { padding: 80px 0; }
    .hero { padding-top: 140px; }
    .hero-h1 { font-size: 36px; line-height: 1.1; }
    .h2 { font-size: 32px; }
    .hero-p { font-size: 16px; margin-bottom: 30px; }
    
    /* Splashes */
    .css-splash { opacity: 0.4; filter: blur(50px); }
    
    /* Carousel */
    .hero-carousel-container { height: 350px; }
    .carousel-slide h3 { font-size: 20px; }
    
    /* Modal */
    .modal-body { grid-template-columns: 1fr; gap: 20px; padding: 25px; }
    .qr-placeholder { height: 120px; }
    
    /* Footer */
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .social-circles { justify-content: center; }
    .contact-ul li { justify-content: center; text-align: left; }
    .logo-footer { height: 100px; margin-left: auto; margin-right: auto; }
    
    /* Team */
    .team-grid { gap: 30px; }
    .team-card { flex: 0 1 100%; max-width: 320px; }
}
