    /* ========== GLOBAL STYLES ========== */
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
     :root {
        --primary-color: #28B485;
        --primary-dark: #20897a;
        --secondary-color: #FFFF00;
        --secondary-dark: #FFC700;
        --text-dark: #1a1a1a;
        --text-light: #666;
        --bg-light: #f8f8f8;
        --bg-white: #ffffff;
        --border-color: #e0e0e0;
        --spacing-unit: 1rem;
    }
    
    html,
    body {
        overflow-x: hidden;
    }
    
    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: var(--text-dark);
        line-height: 1.6;
        background-color: var(--bg-white);
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 var(--spacing-unit);
    }
    /* ========== NEW HOME SECTIONS & OVERRIDES ========== */
    
    .btn {
        display: inline-block;
        padding: 0.5rem 1.2rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        font-size: 0.85rem;
    }
    
    .btn-primary {
        background: var(--primary-color);
        color: white;
        box-shadow: 0 4px 15px rgba(40, 180, 133, 0.3);
    }
    
    .btn-primary:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
    }
    
    .btn-secondary {
        background: var(--secondary-color);
        color: var(--text-dark);
    }
    
    .founder-detail {
        padding: 6rem 0;
        background: #f9fbf9;
    }
    
    .founder-grid {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 5rem;
        align-items: center;
    }
    
    .founder-img-wrapper {
        position: relative;
    }
    
    .founder-img-wrapper::before {
        content: '';
        position: absolute;
        top: -10px;
        left: -10px;
        width: 380px;
        height: 100%;
        border: 2px solid var(--primary-color);
        border-radius: 12px;
        z-index: 0;
        margin: 0 auto;
        right: 0;
    }
    
    .founder-img-wrapper img {
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
        border-radius: 12px;
        position: relative;
        z-index: 1;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        display: block;
    }
    
    .founder-info h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        color: var(--text-dark);
    }
    
    .founder-info p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        color: #555;
    }
    /* ========== WHAT WE DO SECTION ========== */
    
    .what-we-do {
        padding: 6rem 0;
        background: #fff;
        color: var(--text-dark);
    }
    
    .what-we-do h2 {
        font-size: 3.5rem;
        margin-bottom: 2rem;
        color: var(--text-dark);
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: -1px;
        position: relative;
        display: inline-block;
    }
    
    .what-we-do h2::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: #FFFF00;
        border-radius: 2px;
    }
    
    .what-we-do-bowl {
        margin-top: 2rem;
        background: #28B485;
        border-radius: 0 0 50% 50%;
        margin-left: -4rem;
        margin-right: -4rem;
        padding: 5rem 6rem;
        color: white;
    }
    
    .what-we-do p {
        font-size: 1.1rem;
        line-height: 1.6;
        color: white;
        margin: 0;
    }
    
    .single-column {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
        background: #fdfaf5;
        padding: 6rem 4rem 0;
        border-radius: 50% 50% 30px 30px / 12% 12% 5px 5px;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
        position: relative;
        overflow: hidden;
    }
    /* ========== OUR IMPACT SPLIT SECTION ========== */
    
    .our-impact-split {
        padding: 6rem 0;
        background: #f9fbf9;
    }
    
    .impact-split-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
    
    .impact-text-content h2 {
        font-size: 3rem;
        color: var(--text-dark);
        margin-bottom: 2rem;
        position: relative;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: -1px;
    }
    
    .impact-text-content h2::after {
        content: '';
        display: block;
        width: 50px;
        height: 3px;
        background: var(--secondary-color);
        margin-top: 10px;
        margin-bottom: 2rem;
    }
    
    .impact-highlight {
        font-size: 1.5rem;
        line-height: 2;
        font-weight: 700;
        color: #28B485;
        margin-bottom: 1.5rem;
    }
    
    .impact-text-content p {
        font-size: 1.1rem;
        line-height: 1.6;
        color: #444;
    }
    
    .impact-image-column img {
        width: 100%;
        max-width: 500px;
        height: 450px;
        margin: 0 auto;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        display: block;
        object-fit: cover;
    }
    
    @media (max-width: 768px) {
        .btn,
        .btn-primary,
        .btn-campaign,
        .btn-secondary {
            width: fit-content !important;
            display: inline-block !important;
            padding: 0.6rem 1.5rem !important;
            /* Reduced padding for "shorter" width */
            margin: 0 auto;
        }
        .impact-split-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }
        .impact-text-content h2::after {
            margin: 10px auto 0;
        }
        .impact-image-column img {
            max-width: 320px;
            height: 350px;
        }
        .what-we-do,
        .our-impact-split {
            padding: 4rem 1.5rem;
        }
        .what-we-do h2,
        .impact-text-content h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
        }
        .what-we-do-bowl {
            margin-left: -1.5rem;
            margin-right: -1.5rem;
            padding: 3rem 1.5rem;
            border-radius: 0 0 50% 50%;
        }
        .what-we-do p {
            font-size: 1rem;
            line-height: 1.5;
        }
        .impact-highlight {
            font-size: 1.3rem;
            line-height: 1.5;
        }
        .single-column {
            padding: 3rem 1.5rem;
            border-radius: 40px;
        }
    }
    /* National Environment Conference Redesign */
    
    .conference-split {
        padding: 5rem 0;
        background: #fdfaf5;
    }
    
    .conference-grid-new {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
    
    .conference-text-new h2 {
        font-size: 4rem;
        line-height: 1.1;
        font-weight: 800;
        color: #4a5d4e;
        margin-bottom: 0.5rem;
    }
    
    .location-tag {
        font-size: 1.5rem;
        color: #333;
        font-weight: 700;
        margin-bottom: 2rem;
    }
    
    .conference-text-new p {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #666;
        margin-bottom: 3rem;
    }
    
    .conference-images-new .image-stack {
        display: flex;
        gap: 15px;
    }
    
    .conference-images-new img {
        width: 50%;
        height: 500px;
        object-fit: cover;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }
    
    @media (max-width: 992px) {
        .conference-grid-new {
            grid-template-columns: 1fr;
            text-align: center;
        }
        .conference-text-new h2 {
            font-size: 2.8rem;
        }
        .conference-images-new img {
            height: 350px;
        }
    }
    /* Green Awareness Walk Redesign */
    
    .walk-split {
        padding: 5rem 0;
        background: #fff;
    }
    
    .walk-grid-new {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 5rem;
        align-items: center;
    }
    
    .walk-image-collage {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .collage-top {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .walk-image-collage img {
        width: 100%;
        object-fit: cover;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }
    
    .collage-top img {
        height: 200px;
    }
    
    .collage-bottom img {
        height: 350px;
    }
    
    .walk-text-new h2 {
        font-size: 4rem;
        line-height: 1.1;
        font-weight: 800;
        color: #4a5d4e;
        margin-bottom: 2rem;
    }
    
    .walk-text-new p {
        font-size: 1.15rem;
        line-height: 1.8;
        color: #555;
        margin-bottom: 3rem;
    }
    
    @media (max-width: 992px) {
        .walk-grid-new {
            grid-template-columns: 1fr;
        }
        .walk-images-new {
            order: 1;
        }
        .walk-text-new {
            order: 2;
            text-align: center;
        }
        .walk-text-new h2 {
            font-size: 2.8rem;
        }
    }
    /* Campaign Section Redesign */
    
    .campaign-split {
        padding: 5rem 0;
        background: #f9f9f9;
        overflow: hidden;
    }
    
    .campaign-grid-new {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
    
    .campaign-text-new h2 {
        font-size: 4rem;
        line-height: 1.1;
        font-weight: 800;
        color: #4a5d4e;
        margin-bottom: 2rem;
        text-transform: none;
    }
    
    .campaign-text-new p {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #666;
        margin-bottom: 3rem;
        max-width: 90%;
    }
    
    .btn-campaign {
        background: #ffffff;
        color: var(--primary-color);
        padding: 0.8rem 2.5rem;
        border-radius: 50px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: inline-block;
        transition: all 0.3s ease;
        border: 2px solid var(--primary-color);
        width: fit-content;
    }
    
    .btn-campaign:hover {
        background: var(--primary-color);
        color: white;
    }
    
    .campaign-images-new {
        position: relative;
    }
    
    .image-stack {
        display: flex;
        gap: 10px;
    }
    
    .image-stack img {
        width: 50%;
        height: 600px;
        object-fit: cover;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    
    @media (max-width: 992px) {
        .campaign-grid-new {
            grid-template-columns: 1fr;
            text-align: center;
        }
        .campaign-text-new h2 {
            font-size: 2.5rem;
        }
        .campaign-text-new p {
            margin: 0 auto 2rem;
        }
        .image-stack img {
            height: 400px;
        }
    }
    
    .team-section {
        padding: 6rem 0;
        background: #f4f4f4;
        text-align: center;
    }
    
    .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 3rem;
        margin-top: 4rem;
    }
    
    .team-member {
        background: white;
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
    }
    
    .team-member:hover {
        transform: translateY(-10px);
    }
    
    .team-member img {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 1.5rem;
        border: 4px solid var(--primary-color);
        padding: 5px;
        background: #fff;
    }
    
    .team-member h4 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
        color: var(--text-dark);
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    .team-member p {
        color: var(--primary-color);
        font-weight: 600;
        text-transform: uppercase;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .team-member p {
        color: var(--primary-color);
        font-weight: 600;
        font-size: 0.9rem;
    }
    /* Pillars Section Redesign */
    
    .pillars-section {
        background: #fff;
        padding-bottom: 2rem;
    }
    
    .pillars-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        min-height: 500px;
    }
    
    .pillar-card {
        padding: 4rem 3rem;
        color: white;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .pillar-card h3 {
        font-size: 2.8rem;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 2.5rem;
        color: white;
        text-transform: none;
        text-align: left;
    }
    
    .pillar-card p {
        font-size: 1.1rem;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 4rem;
        text-align: left;
    }
    
    .pillar-line {
        width: 50px;
        height: 6px;
        background: var(--secondary-color);
        margin-top: auto;
    }
    
    .pillar-1 {
        background-color: #58c19f;
    }
    /* Lightest */
    
    .pillar-2 {
        background-color: #48b490;
    }
    
    .pillar-3 {
        background-color: #38a781;
    }
    
    .pillar-4 {
        background-color: #289a72;
    }
    /* Darkest */
    
    .pillar-card:hover {
        transform: scale(1.02);
        z-index: 10;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    
    @media (max-width: 1024px) {
        .pillars-container {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (max-width: 768px) {
        .pillars-container {
            grid-template-columns: 1fr;
        }
        .pillar-card {
            padding: 3rem 2rem;
            min-height: 350px;
        }
        .pillar-card h3 {
            font-size: 2.2rem;
        }
    }
    
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
        margin: 3rem 0;
    }
    
    .gallery-img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 10px;
        cursor: pointer;
        transition: opacity 0.3s ease;
    }
    
    .gallery-img:hover {
        opacity: 0.9;
    }
    
    @media (max-width: 768px) {
        .section-grid,
        .founder-grid,
        .campaign-grid {
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }
        .hero-text h1 {
            font-size: 1.8rem;
        }
        .founder-info h2,
        .campaign-section h2 {
            font-size: 1.8rem;
        }
        .campaign-images-new img {
            height: 300px;
        }
        .team-grid {
            grid-template-columns: 1fr !important;
            max-width: 350px;
            margin: 4rem auto 0;
            gap: 2.5rem;
        }
        .team-section {
            padding: 4rem 1.5rem !important;
        }
        .team-member {
            padding: 2.5rem 1.5rem;
        }
        .team-member img {
            width: 180px !important;
            height: 180px !important;
        }
        .team-member h4 {
            font-size: 1.3rem;
        }
    }
    /* ========== HEADER & NAVIGATION ========== */
    
    .header {
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        position: fixed;
        top: 1rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        padding: 0.45rem 1.5rem;
        border-radius: 48px;
        border: 1px solid rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        width: 95%;
        max-width: 1300px;
        margin: 0;
    }
    
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .logo-section {
        flex-shrink: 0;
    }
    
    .logo img {
        height: 60px;
        width: auto;
        transition: all 0.3s ease;
        filter: none;
    }
    
    .logo {
        display: inline-block;
        transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    .logo:hover {
        transform: scale(1.02);
    }
    
    .nav-menu {
        display: none;
    }
    
    @media (min-width: 993px) {
        .nav-menu {
            display: flex !important;
        }
    }
    
    .header-right.desktop-only {
        display: none;
    }
    
    @media (min-width: 993px) {
        .header-right.desktop-only {
            display: flex !important;
        }
    }
    
    .nav-menu.active {
        display: block !important;
        right: 0 !important;
    }
    /* Transparent Header Toggle Fix */
    
    .mobile-nav-toggle {
        display: none !important;
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        background: transparent;
        padding: 5px;
        align-items: center;
        justify-content: center;
        border: none;
        box-shadow: none;
    }
    
    @media (max-width: 992px) {
        .mobile-nav-toggle {
            display: flex !important;
        }
    }
    
    .hamburger {
        display: block;
        width: 30px;
        height: 3px;
        background: var(--text-dark);
        position: relative;
        transition: all 0.3s ease;
        box-shadow: none;
    }
    
    .hamburger::before,
    .hamburger::after {
        content: '';
        position: absolute;
        width: 30px;
        height: 3px;
        background: var(--text-dark);
        transition: all 0.3s ease;
        box-shadow: none;
    }
    
    .hamburger::before {
        top: -10px;
    }
    
    .hamburger::after {
        bottom: -10px;
    }
    
    .mobile-nav-toggle {
        background: transparent;
        box-shadow: none;
        border: none;
    }
    
    .mobile-nav-toggle.active {
        z-index: 1001;
        /* Stay above the menu */
        position: fixed;
        right: 25px;
        top: 25px;
    }
    
    .mobile-nav-toggle.active .hamburger {
        background: transparent !important;
        box-shadow: none !important;
    }
    
    .mobile-nav-toggle.active .hamburger::before {
        transform: rotate(45deg);
        top: 0;
        background: var(--text-dark) !important;
    }
    
    .mobile-nav-toggle.active .hamburger::after {
        transform: rotate(-45deg);
        bottom: 0;
        background: var(--text-dark) !important;
    }
    
    .nav-menu>ul {
        display: flex;
        list-style: none;
        gap: 2.2rem;
        line-height: 1;
    }
    
    .nav-menu>ul>li {
        position: relative;
    }
    
    .nav-menu a {
        text-decoration: none;
        color: #333;
        font-weight: 600;
        font-size: 0.95rem;
        letter-spacing: 0.2px;
        text-transform: none;
        position: relative;
        padding: 0.4rem 0;
        transition: color 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
    
    .dropdown-menu {
        display: block !important;
        width: auto;
    }
    /* Hide mobile button by default */
    
    .mobile-only-btn {
        display: none;
    }
    
    .mobile-only {
        display: none;
    }
    
    .mobile-toggle {
        display: none;
    }
    
    .desktop-arrow {
        display: inline-block;
        font-size: 0.65rem;
        margin-left: 5px;
        vertical-align: middle;
        transition: transform 0.3s ease;
    }
    
    .dropdown:hover .desktop-arrow {
        transform: rotate(180deg);
    }
    /* Removed redundant mobile-nav-toggle definition */
    /* Desktop Dropdown Styles */
    
    .dropdown {
        position: relative;
    }
    
    .dropdown-menu {
        display: block !important;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: white;
        min-width: 280px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        border-radius: 4px;
        padding: 10px 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        z-index: 1000;
        list-style: none;
    }
    
    .dropdown:hover>.dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .dropdown-menu {
        min-width: 250px;
        max-width: 320px;
    }
    
    .dropdown-menu li {
        width: 100%;
        display: block;
    }
    
    .dropdown-menu a {
        width: 100%;
        box-sizing: border-box;
        white-space: normal;
    }
    
    @media (max-width: 992px) {
        .header-container {
            position: relative;
            padding: 0.15rem 1.6rem;
        }
        .logo img {
            height: 75px;
        }
        .desktop-only {
            display: none !important;
            visibility: hidden !important;
            opacity: 0 !important;
            height: 0 !important;
            overflow: hidden !important;
        }
        .mobile-only-btn {
            display: block;
        }
        .mobile-only {
            display: block;
        }
        .header-right.desktop-only {
            display: none !important;
        }
        /* Mobile toggle is handled in the consolidated block above */
        .hamburger {
            display: block;
            width: 25px;
            height: 2px;
            background: var(--text-dark);
            position: relative;
            transition: all 0.3s ease;
        }
        .hamburger::before,
        .hamburger::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: inherit;
            left: 0;
            transition: all 0.3s ease;
        }
        .hamburger::before {
            top: -8px;
        }
        .hamburger::after {
            bottom: -8px;
        }
        .nav-menu.active~.mobile-nav-toggle .hamburger {
            background: transparent;
        }
        .nav-menu.active~.mobile-nav-toggle .hamburger::before,
        .nav-menu.active~.mobile-nav-toggle .hamburger::after {
            background: #000;
        }
        .nav-menu.active~.mobile-nav-toggle .hamburger::before {
            transform: rotate(45deg);
            top: 0;
        }
        .nav-menu.active~.mobile-nav-toggle .hamburger::after {
            transform: rotate(-45deg);
            bottom: 0;
        }
        .mobile-menu-header {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 0 25px;
            margin-bottom: 25px;
            border-bottom: 1px solid #f0f0f0;
        }
        .mobile-logo img {
            height: 60px;
        }
        .nav-menu {
            display: none;
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
            padding: 2.5rem 1.5rem;
            transition: all 0.4s cubic-bezier(0, 0, 0.2, 1);
            box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            overflow-y: auto;
        }
        .nav-menu.active {
            display: block;
            right: 0;
        }
        .nav-menu>ul {
            flex-direction: column;
            gap: 0;
            margin: 0;
            padding: 0;
        }
        .nav-menu>ul>li {
            width: 100%;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: background 0.3s ease;
        }
        .nav-menu>ul>li>a {
            padding: 1.2rem 0.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.15rem;
            width: 100%;
            color: #333;
            font-weight: 700;
        }
        .nav-menu>ul>li>a:active {
            color: var(--primary-color);
        }
        .desktop-arrow {
            display: none;
        }
        .nav-text {
            order: 1;
        }
        .mobile-toggle {
            order: 2;
            display: inline-flex;
            width: 32px;
            height: 32px;
            background: rgba(40, 180, 133, 0.1);
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            font-weight: 300;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }
        .dropdown.active .mobile-toggle {
            background: var(--primary-color);
            color: white;
            transform: rotate(45deg);
            /* Turns + into x */
        }
        .dropdown-menu {
            position: static;
            opacity: 1;
            visibility: visible;
            transform: none;
            box-shadow: none;
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: #ffffff;
            min-width: 100%;
            display: block;
            border-left: 3px solid var(--primary-color);
            margin-left: 10px;
        }
        .dropdown.active .dropdown-menu {
            max-height: 1200px;
            padding: 0.5rem 0;
            margin-bottom: 1rem;
        }
        .mobile-only-btn {
            display: none;
        }
        .mobile-only-btn .contact-btn {
            width: 100%;
            text-align: center;
            justify-content: center;
            margin-top: 2rem;
            border-radius: 30px;
            padding: 1rem;
            background: var(--primary-color);
            color: white;
            box-shadow: 0 4px 15px rgba(40, 180, 133, 0.3);
        }
    }
    
    .dropdown-menu li {
        width: 100%;
        padding: 0 !important;
        border-bottom: none !important;
    }
    
    .dropdown-menu a {
        padding: 12px 25px !important;
        display: block !important;
        font-size: 0.95rem !important;
        text-transform: none !important;
        font-weight: 500 !important;
        color: #555 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.02) !important;
    }
    
    .dropdown-menu a:hover {
        background-color: rgba(40, 180, 133, 0.05);
        color: var(--primary-color) !important;
        padding-left: 30px !important;
    }
    
    .nav-menu a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--primary-color);
        transition: width 0.3s ease;
    }
    
    .nav-menu a:hover {
        color: var(--primary-color);
    }
    
    .nav-menu a:hover::after {
        width: 100%;
    }
    
    .header-right {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .search-box {
        display: none;
    }
    
    .contact-btn {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        color: white;
        padding: 0.55rem 1.3rem;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.85rem;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        box-shadow: 0 4px 15px rgba(40, 180, 133, 0.2);
        transition: all 0.3s ease;
    }
    
    .contact-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(40, 180, 133, 0.3);
        filter: brightness(1.1);
    }
    /* ========== HERO SECTION ========== */
    
    .hero {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 65%, rgba(0, 0, 0, 0.95) 100%), url('../../images/youth_1.jpg');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        padding: 0 2rem 3rem;
        margin-top: 0;
        position: relative;
        overflow: hidden;
        height: 100vh;
        display: flex;
        align-items: flex-end;
    }
    
    .hero::after {
        display: none;
    }
    /* Animation for Hero Text */
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .hero-text h1 {
        animation: fadeInUp 0.8s ease-out forwards;
    }
    
    .hero-text p {
        animation: fadeInUp 0.8s ease-out 0.2s forwards;
        opacity: 0;
        /* Star hidden for animation */
    }
    
    .hero-buttons {
        animation: fadeInUp 0.8s ease-out 0.4s forwards;
        opacity: 0;
        /* Start hidden for animation */
        margin-top: 2rem;
    }
    
    .hero .btn-primary {
        background: #ffffff;
        color: var(--primary-color);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        width: fit-content;
        min-width: 150px;
        text-align: center;
    }
    
    .hero .btn-primary:hover {
        background: #f0f0f0;
        color: var(--primary-dark);
        transform: translateY(-3px);
    }
    
    @keyframes heroBgFade {
        0%,
        45% {
            opacity: 0;
        }
        50%,
        95% {
            opacity: 1;
        }
        100% {
            opacity: 0;
        }
    }
    
    .hero::before {
        display: none;
    }
    
    .hero-content {
        display: flex;
        justify-content: flex-start;
        align-items: flex-end;
        max-width: 1300px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
        width: 100%;
        padding: 0 0 1rem;
        height: 100%;
    }
    
    .hero-text {
        flex: 1;
        max-width: 900px;
    }
    
    .hero-text h1 {
        font-size: 3.8rem;
        color: white;
        margin: 0;
        padding: 0;
        line-height: 1.05;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: -1.5px;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    }
    
    .hero-text p {
        color: white;
        font-size: 1.4rem;
        margin-top: 1.5rem;
        max-width: 700px;
        text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    }
    
    .hero-video {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 1rem;
        text-align: right;
        margin-bottom: 2rem;
    }
    
    .video-label {
        color: white;
        font-size: 0.95rem;
        font-weight: 700;
        max-width: 220px;
        line-height: 1.3;
        text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    }
    
    .video-placeholder {
        width: 75px;
        height: 55px;
        background: var(--primary-color);
        border-radius: 4px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    }
    
    .video-placeholder:hover {
        transform: scale(1.1);
        background: var(--secondary-color);
    }
    
    .video-placeholder:hover polygon {
        fill: var(--text-dark);
    }
    
    .video-placeholder svg {
        width: 28px;
        height: 28px;
    }
    
    .video-placeholder svg text {
        display: none;
    }
    /* ========== STATISTICS SECTION ========== */
    
    .stats {
        background-color: var(--primary-color);
        padding: 3rem 2rem;
        color: white;
        position: relative;
        z-index: 10;
        margin: -8rem auto 0;
        max-width: 1300px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    }
    
    .stats-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }
    
    .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 1.5rem;
        border-right: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .stat-item:last-child {
        border-right: none;
    }
    
    .stat-number {
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 0.5rem;
        line-height: 1;
        color: var(--secondary-color);
    }
    
    .stat-label {
        font-size: 0.9rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        opacity: 0.9;
        max-width: 250px;
    }
    
    .stat-label {
        font-size: 1rem;
        font-weight: 500;
        opacity: 0.95;
        max-width: 200px;
        margin: 0 auto;
        line-height: 1.3;
    }
    
    @media (max-width: 1024px) {
        .hero-text h1 {
            font-size: 3.5rem;
        }
        .stats {
            margin-top: -3rem;
            padding: 2rem 1rem;
        }
    }
    
    @media (max-width: 768px) {
        .stats {
            margin-top: 0;
            padding: 3rem 1.5rem;
        }
        .stats-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .hero {
            padding: 0 1.5rem 1rem;
            height: 100vh;
            min-height: -webkit-fill-available;
            text-align: left;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: flex-start;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.98) 95%), url('../../images/youth_1.jpg') !important;
            background-size: cover !important;
            background-position: center !important;
        }
        .hero-content {
            align-items: flex-start;
            padding: 0;
            margin-bottom: 0;
            height: auto;
        }
        .hero-text h1 {
            font-size: 2.22rem !important;
            margin-top: 0 !important;
            text-align: left !important;
            line-height: 1.12 !important;
            font-weight: 800 !important;
            text-transform: uppercase !important;
            letter-spacing: -0.2px !important;
            display: block !important;
        }
        /* Responsive Header Adjustments */
        .header {
            padding: 0.1rem 1.6rem;
            border-radius: 50px;
        }
        .logo img {
            height: 40px;
        }
        .hero-text p {
            font-size: 1.2rem;
            margin: 1.2rem 0;
            max-width: 100%;
            text-align: left;
        }
        .stat-item {
            border-right: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 1.5rem;
        }
        .stat-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        .stat-number {
            font-size: 2.5rem;
        }
        .hero-video {
            align-items: center;
            margin-top: 2rem;
            text-align: center;
        }
    }
    
    .carousel-wrapper {
        position: relative;
        max-width: 1000px;
        margin: 0 auto 3rem;
        padding: 2.5rem 2rem;
        background: linear-gradient(to bottom, #ffffff, #f9fbf9);
        border-radius: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        border-top: 4px solid var(--primary-color);
    }
    
    .carousel-container {
        position: relative;
    }
    
    .carousel-slide {
        display: none;
        opacity: 0;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        transform: scale(0.98);
    }
    
    .carousel-slide.active {
        display: block;
        opacity: 1;
        transform: scale(1);
    }
    
    .carousel-slide p {
        font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
        font-weight: 500;
        font-size: 1.2rem;
        line-height: 1.6;
        color: #333;
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
        font-style: italic;
    }
    
    .carousel-slide p::before,
    .fact-item p::before {
        content: '“';
        display: block;
        font-family: Georgia, serif;
        font-size: 4.5rem;
        color: var(--primary-color);
        opacity: 0.15;
        height: 2.2rem;
        line-height: 4.5rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }
    
    .carousel-slide p strong,
    .carousel-slide p em {
        color: var(--primary-color);
        font-weight: 700;
    }
    
    .carousel-link {
        display: inline-block;
        margin-top: 15px;
        color: var(--secondary-color);
        font-weight: 700;
        text-decoration: none;
        font-size: 0.95rem;
        font-style: normal;
        border-bottom: 2px solid var(--secondary-color);
        padding-bottom: 2px;
        transition: all 0.3s ease;
    }
    
    .carousel-link:hover {
        color: var(--primary-color);
        border-bottom-color: var(--primary-color);
        transform: translateX(5px);
    }
    
    .carousel-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: var(--primary-color);
        color: white;
        border: none;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        font-size: 1.4rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 10;
    }
    
    .carousel-nav:hover {
        background-color: var(--primary-dark);
        transform: translateY(-50%) scale(1.05);
    }
    
    .carousel-nav.prev {
        left: -20px;
    }
    
    .carousel-nav.next {
        right: -20px;
    }
    
    .carousel-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .carousel-header h2 {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
        color: var(--text-dark);
        letter-spacing: -1px;
        text-transform: uppercase;
        font-weight: 800;
        position: relative;
        display: inline-block;
        padding-bottom: 0.5rem;
    }
    
    .carousel-header h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: var(--primary-color);
        border-radius: 2px;
    }
    
    .facts-carousel .carousel-header h2 {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
        color: var(--text-dark);
        letter-spacing: -1px;
        text-transform: uppercase;
        font-weight: 800;
        position: relative;
        display: inline-block;
        padding-bottom: 0.5rem;
    }
    
    .facts-carousel .carousel-header h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: var(--primary-color);
        border-radius: 2px;
    }
    
    .carousel-header p {
        font-size: 1rem;
        color: var(--text-light);
        margin: 0 auto;
        max-width: 640px;
    }
    
    .facts-carousel h3 {
        display: none;
    }
    /* Carousel Pagination Dots */
    
    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 1.5rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #ddd;
        cursor: pointer;
        transition: all 0.3s ease;
        border: none;
        padding: 0;
    }
    
    .dot.active {
        background-color: var(--primary-color);
        transform: scale(1.2);
    }
    
    @media (max-width: 768px) {
        .carousel-wrapper {
            padding: 2rem 1.25rem;
        }
        .carousel-header h2 {
            font-size: 2rem;
        }
        .carousel-slide p {
            font-size: 1rem;
            max-width: 100%;
        }
        .carousel-nav {
            width: 40px;
            height: 40px;
            font-size: 1.2rem;
        }
        .carousel-nav.prev {
            left: 5px;
        }
        .carousel-nav.next {
            right: 5px;
        }
    }
    /* ========== FEATURED PROGRAMS SECTION ========== */
    
    .featured-programs {
        padding: 5rem 2rem;
        background: linear-gradient(135deg, #f8fafb 0%, #f0f4f8 100%);
    }
    
    .featured-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 3rem;
        animation: fadeInDown 0.6s ease-out;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
        color: var(--text-dark);
        margin-bottom: 0.5rem;
        font-weight: 800;
        background: linear-gradient(135deg, var(--primary-color) 0%, #1a9b6f 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .section-header p {
        font-size: 1.1rem;
        color: var(--text-light);
        margin: 0;
    }
    
    .featured-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
        grid-auto-rows: 280px;
    }
    
    .featured-card {
        position: relative;
        overflow: hidden;
        border-radius: 0;
        box-shadow: 0 6px 20px rgba(40, 180, 133, 0.1);
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border: none;
        background-clip: padding-box;
    }
    
    .featured-image {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: flex-end;
        position: relative;
        transition: transform 0.4s ease;
        margin: 0;
    }
    
    .featured-card:hover .featured-image {
        transform: scale(1.05);
    }
    
    .featured-card:nth-child(2) {
        grid-column: span 2;
    }
    
    .featured-card:nth-child(5) {
        grid-column: span 2;
    }
    
    .featured-card:hover {
        transform: translateY(-12px) scale(1.02);
        box-shadow: 0 15px 40px rgba(40, 180, 133, 0.3);
    }
    
    .featured-overlay {
        width: 100%;
        padding: 2.5rem;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0.95) 100%);
        color: white;
        transition: all 0.4s ease;
    }
    
    .featured-card:hover .featured-overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0.95) 100%);
    }
    
    .featured-category {
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--secondary-color);
        margin-bottom: 0.8rem;
        display: inline-block;
        padding: 0.4rem 0.8rem;
        background: rgba(255, 215, 0, 0.1);
        border-radius: 4px;
    }
    
    .featured-card h3 {
        font-size: 1.6rem;
        margin: 0;
        line-height: 1.3;
        color: white;
        font-weight: 800;
        transition: color 0.3s ease;
    }
    
    .featured-card:hover h3 {
        color: var(--secondary-color);
    }
    
    @media (max-width: 1024px) {
        .featured-programs {
            padding: 4rem 1.5rem;
        }
        .section-header h2 {
            font-size: 2rem;
        }
        .featured-grid {
            grid-template-columns: repeat(2, 1fr);
            grid-auto-rows: 240px;
            gap: 2rem;
        }
        .featured-card:nth-child(1) {
            grid-column: span 2;
            grid-row: span 1;
        }
        .featured-card:nth-child(2) {
            grid-column: span 1;
        }
        .featured-card:nth-child(5) {
            grid-column: span 1;
        }
        .featured-card h3 {
            font-size: 1.4rem;
        }
    }
    
    @media (max-width: 768px) {
        .featured-programs {
            padding: 3rem 1rem;
        }
        .section-header h2 {
            font-size: 1.8rem;
        }
        .section-header p {
            font-size: 1rem;
        }
        .featured-grid {
            grid-template-columns: 1fr;
            grid-auto-rows: 280px;
            gap: 2rem;
        }
        .featured-card:nth-child(1) {
            grid-column: span 1;
            grid-row: span 1;
        }
        .featured-card:nth-child(2) {
            grid-column: span 1;
        }
        .featured-card:nth-child(5) {
            grid-column: span 1;
        }
        .featured-overlay {
            padding: 2rem;
        }
        .featured-card h3 {
            font-size: 1.3rem;
        }
        .featured-category {
            font-size: 0.75rem;
        }
    }
    
    @media (max-width: 480px) {
        .featured-grid {
            grid-auto-rows: 240px;
        }
        .featured-card {
            height: auto;
        }
        .featured-overlay {
            padding: 1rem;
        }
        .featured-card h3 {
            font-size: 1rem;
        }
        .featured-category {
            font-size: 0.75rem;
            margin-bottom: 0.25rem;
        }
    }
    /* ========== ABOUT SECTION ========== */
    
    .about {
        padding: 4rem 2rem;
        background-color: var(--bg-light);
    }
    
    .programs {
        padding: 4rem 2rem;
        background-color: #f7f8fb;
    }
    
    .programs .section-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .programs .section-header h2 {
        font-size: 2.8rem;
        margin-bottom: 0.5rem;
        color: var(--text-dark);
    }
    
    .programs .section-header p {
        font-size: 1rem;
        color: var(--text-light);
    }
    
    .program-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        align-items: stretch;
    }
    
    .hidden-card {
        display: none !important;
    }
    
    .view-more-container .btn-secondary {
        background: transparent;
        color: var(--primary-color);
        border: 2px solid var(--primary-color);
        padding: 10px 25px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.85rem;
        border-radius: 50px;
        transition: all 0.3s ease;
        display: inline-block;
        text-decoration: none;
    }
    
    .view-more-container .btn-secondary:hover {
        background: var(--primary-color);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(40, 180, 133, 0.2);
    }
    
    .program-card {
        background: white;
        border-radius: 0;
        overflow: hidden;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        opacity: 0;
        transform: translateY(30px);
    }
    
    .program-card.visible {
        opacity: 1;
        transform: translateY(0);
        animation: slideUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    }
    
    .program-card.visible h3 {
        opacity: 1;
        animation: slideUpText 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.1s forwards;
    }
    
    .news-card.visible,
    .initiative-card.visible {
        opacity: 1;
        transform: translateY(0);
        animation: slideUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    }
    
    .initiative-card.visible h3,
    .initiative-card.visible p {
        opacity: 1;
    }
    
    .program-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 26px 55px rgba(0, 0, 0, 0.12);
    }
    
    .program-image {
        width: 100%;
        padding-top: 50%;
        background-size: cover;
        background-position: center;
    }
    
    .program-card h3 {
        padding: 1.2rem 1rem 1.4rem;
        margin: 0;
        font-size: 1rem;
        color: var(--text-dark);
        text-align: center;
        opacity: 0;
    }
    
    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes slideUpText {
        from {
            opacity: 0;
            transform: translateY(12px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @media (max-width: 1024px) {
        .program-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (max-width: 768px) {
        .program-grid {
            grid-template-columns: 1fr;
        }
        .program-card.visible {
            animation: slideUp 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) forwards !important;
        }
        .program-card.visible h3 {
            animation: slideUpText 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) forwards !important;
        }
        .program-card:nth-child(1) {
            animation-delay: 0.05s;
        }
        .program-card:nth-child(1) h3 {
            animation-delay: 0.15s;
        }
        .program-card:nth-child(2) {
            animation-delay: 0.12s;
        }
        .program-card:nth-child(2) h3 {
            animation-delay: 0.22s;
        }
        .program-card:nth-child(3) {
            animation-delay: 0.19s;
        }
        .program-card:nth-child(3) h3 {
            animation-delay: 0.29s;
        }
        .program-card:nth-child(4) {
            animation-delay: 0.26s;
        }
        .program-card:nth-child(4) h3 {
            animation-delay: 0.36s;
        }
        .program-card:nth-child(5) {
            animation-delay: 0.33s;
        }
        .program-card:nth-child(5) h3 {
            animation-delay: 0.43s;
        }
        .program-card:nth-child(6) {
            animation-delay: 0.40s;
        }
        .program-card:nth-child(6) h3 {
            animation-delay: 0.50s;
        }
        .program-card:nth-child(7) {
            animation-delay: 0.47s;
        }
        .program-card:nth-child(7) h3 {
            animation-delay: 0.57s;
        }
        .program-card:nth-child(8) {
            animation-delay: 0.54s;
        }
        .program-card:nth-child(8) h3 {
            animation-delay: 0.64s;
        }
        .program-card:nth-child(9) {
            animation-delay: 0.61s;
        }
        .program-card:nth-child(9) h3 {
            animation-delay: 0.71s;
        }
        .program-card:nth-child(10) {
            animation-delay: 0.68s;
        }
        .program-card:nth-child(10) h3 {
            animation-delay: 0.78s;
        }
        .program-card:nth-child(11) {
            animation-delay: 0.75s;
        }
        .program-card:nth-child(11) h3 {
            animation-delay: 0.85s;
        }
        .program-card:nth-child(12) {
            animation-delay: 0.82s;
        }
        .program-card:nth-child(12) h3 {
            animation-delay: 0.92s;
        }
    }
    
    .about-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .about-content {
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .about-content h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        color: var(--text-dark);
        text-align: center;
    }
    
    .about-content p {
        font-size: 1.1rem;
        color: var(--text-light);
        margin-bottom: 1rem;
        line-height: 1.8;
        text-align: center;
    }
    
    .read-more-link {
        color: white;
        background-color: var(--primary-color);
        padding: 0.8rem 2rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        display: inline-block;
        margin-top: 1rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(40, 180, 133, 0.2);
    }
    
    .read-more-link:hover {
        background-color: var(--primary-dark);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(40, 180, 133, 0.3);
    }
    
    .mission-vision {
        background: white;
        padding: 2rem;
        border-radius: 8px;
    }
    
    .mission-vision h3 {
        font-size: 2rem;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .mission-vision-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        align-items: stretch;
        padding: 0 1rem;
    }
    
    .mission-box {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        margin: 0;
        padding: 2rem;
        background: #ffffff;
        border-radius: 16px;
        border-left: 6px solid var(--primary-color);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    
    .mission-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
    }
    
    .mission-box h4 {
        color: #1d1d1d;
        margin-bottom: 1rem;
        font-size: 1.35rem;
    }
    
    .mission-box p {
        color: #555;
        line-height: 1.75;
        margin: 0;
    }
    /* ========== ABOUT FOUNDER SECTION ========== */
    
    .about-founder {
        padding: 5rem 2rem;
        background-color: var(--bg-white);
    }
    
    .about-founder-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
    
    .about-founder-content {
        animation: fadeInLeft 0.6s ease-out;
        text-align: center;
    }
    
    .about-founder-content h2 {
        font-size: 2.8rem;
        color: #2c3e50;
        margin-bottom: 2rem;
        font-weight: 800;
        text-align: center;
    }
    
    .about-founder-content p {
        font-size: 1.1rem;
        color: var(--text-light);
        line-height: 1.8;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .about-founder-content .btn {
        margin-top: 1.5rem;
        display: inline-block;
        background-color: var(--primary-color);
        color: white;
        padding: 0.8rem 2.5rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(40, 180, 133, 0.3);
    }
    
    .about-founder-content .btn:hover {
        background-color: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(40, 180, 133, 0.4);
        color: white;
    }
    
    .about-founder-image {
        text-align: center;
        animation: fadeInRight 0.6s ease-out;
    }
    
    .about-founder-image img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        margin-bottom: 1.5rem;
        max-width: 400px;
    }
    
    .founder-name {
        text-align: center;
    }
    
    .founder-title {
        font-size: 0.9rem;
        color: var(--primary-color);
        font-weight: 600;
        margin: 0;
        letter-spacing: 1px;
    }
    
    .founder-fullname {
        font-size: 1.8rem;
        color: var(--text-dark);
        font-weight: 800;
        margin: 0.5rem 0 0.25rem 0;
    }
    
    .founder-position {
        font-size: 0.95rem;
        color: var(--text-light);
        font-weight: 600;
        margin: 0;
    }
    
    @keyframes fadeInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    @media (max-width: 1024px) {
        .about-founder-container {
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }
        .about-founder-content h2 {
            font-size: 2.2rem;
        }
        .about-founder-image img {
            max-width: 350px;
        }
    }
    
    @media (max-width: 768px) {
        .about-founder {
            padding: 3rem 1.5rem;
        }
        .about-founder-container {
            gap: 2rem;
        }
        .about-founder-content h2 {
            font-size: 1.8rem;
        }
        .about-founder-content p {
            font-size: 1rem;
            text-align: center;
        }
        .about-founder-image img {
            max-width: 300px;
        }
        .founder-fullname {
            font-size: 1.4rem;
        }
    }
    
    @media (max-width: 480px) {
        .about-founder {
            padding: 2rem 1rem;
        }
        .about-founder-content h2 {
            font-size: 1.5rem;
        }
        .about-founder-image img {
            max-width: 250px;
        }
        .founder-fullname {
            font-size: 1.2rem;
        }
    }
    /* ========== NEWS SECTION ========== */
    
    .recent-updates {
        padding: 4rem 2rem;
        background-color: var(--bg-light);
        position: relative;
    }
    
    .recent-updates h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        color: var(--text-dark);
    }
    
    .more-link {
        position: absolute;
        top: 2rem;
        right: 2rem;
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 600;
    }
    
    .news-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 3rem auto 0;
    }
    
    .news-card {
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease;
        opacity: 0;
        transform: translateY(30px);
    }
    
    .news-card.visible {
        opacity: 1;
        transform: translateY(0);
        animation: slideUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    }
    
    .news-card:hover {
        transform: translateY(-5px);
    }
    
    .news-image {
        width: 100%;
        height: 200px;
        overflow: hidden;
    }
    
    .placeholder-image {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 600;
        font-size: 1.1rem;
    }
    
    .news-content {
        padding: 2rem;
    }
    
    .news-content h3 {
        color: var(--text-dark);
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }
    
    .news-content p {
        color: var(--text-light);
        margin-bottom: 1rem;
        line-height: 1.6;
    }
    
    .read-more {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }
    
    .read-more:hover {
        color: var(--primary-dark);
    }
    /* ========== TESTIMONIALS SECTION ========== */
    
    .testimonials {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        color: white;
        padding: 4rem 2rem;
    }
    
    .testimonials h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .testimonials-slider {
        max-width: 800px;
        margin: 0 auto;
        position: relative;
        min-height: 200px;
    }
    
    .testimonial-item {
        opacity: 0;
        position: absolute;
        width: 100%;
        text-align: center;
        transition: opacity 0.5s ease;
        padding: 2rem;
    }
    
    .testimonial-item.active {
        opacity: 1;
        position: relative;
    }
    
    .testimonial-text {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        font-style: italic;
        line-height: 1.8;
    }
    
    .testimonial-author {
        font-weight: 600;
        margin-bottom: 0;
    }
    
    .testimonial-nav {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .prev-slide,
    .next-slide {
        background-color: rgba(255, 255, 255, 0.2);
        color: white;
        border: 2px solid white;
        padding: 0.5rem 1rem;
        border-radius: 4px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .prev-slide:hover,
    .next-slide:hover {
        background-color: white;
        color: var(--primary-color);
    }
    /* ========== CTA SECTION ========== */
    
    .cta {
        background: linear-gradient(135deg, #E8F5F0 0%, #F0FFFE 100%);
        padding: 4rem 2rem;
        text-align: center;
    }
    
    .cta h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        color: var(--text-dark);
    }
    
    .cta p {
        font-size: 1.1rem;
        color: var(--text-light);
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .cta-buttons .btn {
        padding: 1rem 2.5rem;
        border-radius: 50px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
        min-width: 220px;
    }
    
    .cta-buttons .btn-primary {
        background-color: var(--primary-color);
        color: white;
        box-shadow: 0 4px 15px rgba(40, 180, 133, 0.3);
    }
    
    .cta-buttons .btn-primary:hover {
        background-color: var(--primary-dark);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(40, 180, 133, 0.4);
    }
    
    .cta-buttons .btn-secondary {
        background-color: white;
        color: var(--primary-color);
        border: 2px solid var(--primary-color);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }
    
    .cta-buttons .btn-secondary:hover {
        background-color: var(--primary-color);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(40, 180, 133, 0.2);
    }
    /* ========== FOOTER ========== */
    
    .footer {
        background-color: #f5f5f5;
        color: #666;
        padding: 3rem 2rem 1rem;
    }
    
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .footer-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
        margin-bottom: 3rem;
    }
    
    .footer-section h4 {
        margin-bottom: 1.5rem;
        color: #1a1a1a;
        font-size: 1rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .footer-section ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .footer-section ul li {
        margin-bottom: 0.8rem;
    }
    
    .footer-section ul li a {
        color: #666;
        text-decoration: none;
        font-size: 0.95rem;
        transition: color 0.3s ease;
    }
    
    .footer-section ul li a:hover {
        color: var(--primary-color);
    }
    
    .footer-section p {
        margin-bottom: 0.8rem;
        line-height: 1.6;
        font-size: 0.95rem;
    }
    
    .footer-contact {
        margin-top: 1.5rem;
    }
    
    .footer-contact p {
        margin-bottom: 0.8rem;
    }
    
    .contact-link {
        color: var(--primary-color);
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .contact-link:hover {
        color: var(--primary-dark);
        text-decoration: underline;
    }
    
    .social-icons {
        display: flex;
        gap: 0.8rem;
        flex-wrap: wrap;
        margin-bottom: 1rem;
    }
    
    .social-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: var(--primary-color);
        border-radius: 50%;
        color: white;
        text-decoration: none;
        font-size: 1rem;
        transition: all 0.3s ease;
    }
    
    .social-icon:hover {
        background-color: var(--primary-dark);
        transform: translateY(-3px);
    }
    
    .footer-bottom {
        border-top: 1px solid #ddd;
        padding-top: 2rem;
        text-align: center;
        color: #999;
        font-size: 0.9rem;
    }
    
    .footer-bottom p {
        margin-bottom: 0.5rem;
    }
    
    .footer-bottom a {
        color: #666;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .footer-bottom a:hover {
        color: #FFFF00;
    }
    
    @media (max-width: 1024px) {
        .footer-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }
    }
    
    @media (max-width: 768px) {
        .footer {
            padding: 2rem 1.5rem;
            text-align: center;
        }
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2.5rem;
            margin-bottom: 2rem;
        }
        .social-icons {
            justify-content: center;
        }
    }
    /* ========== RESPONSIVE DESIGN ========== */
    
    @media (max-width: 1024px) {
        .header-container {
            padding: 1.5rem 1rem;
        }
        .hero-video {
            order: -1;
        }
        .about-content h2,
        .testimonials h2,
        .cta h2 {
            font-size: 2.8rem;
        }
        .what-we-do h2,
        .impact-text-content h2 {
            font-size: 2.5rem;
        }
        .initiatives-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .stat-number {
            font-size: 2.5rem;
        }
    }
    
    @media (max-width: 768px) {
        .about {
            padding: 3rem 0.5rem;
        }
        .programs {
            padding: 3rem 0.5rem;
        }
        .programs .section-header h2 {
            font-size: 1.8rem;
        }
        .mission-vision {
            padding: 1.5rem 0.25rem;
        }
        .mission-vision-grid {
            grid-template-columns: 1fr;
            gap: 1rem;
            padding: 0;
        }
        .header {
            top: 0.75rem;
        }
        .header-container {
            padding: 1rem 1rem;
            flex-wrap: nowrap;
        }
        .logo-section {
            width: auto;
            margin-bottom: 0;
        }
        .nav-menu {
            display: none;
            width: 100%;
        }
        .nav-menu.active {
            display: block;
        }
        .nav-menu>ul {
            flex-direction: column;
            gap: 0;
            padding: 1rem 0;
        }
        .nav-menu>ul>li {
            border-bottom: 1px solid #f0f0f0;
        }
        .nav-menu>ul>li>a {
            display: block;
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--border-color);
        }
        .header-right {
            flex-direction: column;
            width: 100%;
            gap: 0.5rem;
        }
        .search-box {
            width: 100%;
            padding: 0.75rem;
        }
        .contact-btn {
            width: 100%;
            text-align: center;
        }
        .hero-video {
            order: 2;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0.5rem;
            margin-bottom: 0.75rem;
        }
        .video-label {
            font-size: 0.95rem;
            max-width: 100%;
            margin-bottom: 0.25rem;
            line-height: 1.3;
            flex: none;
            min-width: 0;
        }
        .video-placeholder {
            width: 64px;
            height: 48px;
            flex: none;
            order: 0;
        }
        .hero-buttons {
            flex-direction: column;
            gap: 1rem;
        }
        .btn {
            width: 100%;
            text-align: center;
            padding: 0.9rem 2rem;
        }
        .video-placeholder {
            max-width: 350px;
        }
        .stats-container {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 0.75rem;
            padding-bottom: 1rem;
        }
        .stat-item {
            min-width: 0;
            padding: 1rem 0.75rem;
            border-right: none;
        }
        .stat-number {
            font-size: 1.5rem;
        }
        .stat-label {
            font-size: 0.8rem;
        }
        .about-content h2,
        .recent-updates h2,
        .testimonials h2,
        .cta h2 {
            font-size: 2.2rem;
        }
        .what-we-do h2,
        .impact-text-content h2 {
            font-size: 2.2rem;
        }
        .section-subtitle {
            font-size: 1rem;
        }
        .mission-vision-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .mission-box {
            padding: 1.5rem;
            border-left-width: 3px;
        }
        .mission-box h4 {
            font-size: 1.1rem;
        }
        .mission-box p {
            font-size: 0.95rem;
        }
        .initiatives-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .initiative-card {
            padding: 1.5rem;
            opacity: 0;
            transform: translateY(30px);
        }
        .initiative-card h3 {
            font-size: 1.1rem;
        }
        .initiative-card p {
            font-size: 0.95rem;
        }
        .initiative-icon {
            font-size: 2.5rem;
        }
        .news-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .news-image {
            height: 150px;
        }
        .news-content {
            padding: 1.5rem;
        }
        .news-content h3 {
            font-size: 1.1rem;
        }
        .testimonials-slider {
            min-height: 180px;
        }
        .testimonial-text {
            font-size: 1.05rem;
        }
        .testimonial-nav {
            gap: 0.5rem;
        }
        .prev-slide,
        .next-slide {
            padding: 0.4rem 0.8rem;
            font-size: 0.9rem;
        }
        .cta-buttons {
            flex-direction: column;
            gap: 1rem;
        }
        .cta-buttons .btn {
            width: 100%;
        }
        .footer-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .footer-section {
            text-align: center;
        }
        .footer-section h3,
        .footer-section h4 {
            margin-bottom: 0.75rem;
        }
        .more-link {
            position: static;
            display: block;
            text-align: center;
            margin-bottom: 1.5rem;
        }
        .facts-carousel {
            padding: 2rem 1rem;
        }
        .facts-carousel h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .carousel-wrapper {
            padding: 1.5rem 2.5rem;
            min-height: 180px;
        }
        .fact-item p {
            font-size: 0.95rem;
        }
        .carousel-nav {
            width: 45px;
            height: 45px;
            font-size: 1.3rem;
        }
        .carousel-nav.prev {
            left: 0;
        }
        .carousel-nav.next {
            right: 0;
        }
    }
    
    @media (max-width: 480px) {
        .header-container {
            padding: 0.8rem 0.75rem;
        }
        .hero-text h1 {
            font-size: 1.25rem;
            margin-bottom: 0.65rem;
        }
        .hero-text p {
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }
        .btn {
            padding: 0.6rem 1.2rem;
            font-size: 0.9rem;
        }
        .stats-container {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 0.5rem;
        }
        .stat-item {
            padding: 0.85rem;
        }
        .stat-number {
            font-size: 1.1rem;
        }
        .stat-label {
            font-size: 0.65rem;
            line-height: 1.15;
        }
        .about-content h2,
        .recent-updates h2,
        .testimonials h2,
        .cta h2,
        .facts-carousel h3 {
            font-size: 1.5rem;
        }
        .what-we-do h2,
        .impact-text-content h2 {
            font-size: 2rem;
        }
        .hero-content {
            gap: 1rem;
        }
        .mission-box {
            padding: 1rem;
        }
        .mission-box h4 {
            font-size: 1rem;
        }
        .mission-box p {
            font-size: 0.85rem;
            line-height: 1.5;
        }
        .initiative-card {
            padding: 1.25rem;
        }
        .initiative-icon {
            font-size: 2rem;
            margin-bottom: 0.75rem;
        }
        .initiative-card h3 {
            font-size: 1rem;
            margin-bottom: 0.75rem;
        }
        .initiative-card p {
            font-size: 0.85rem;
        }
        .news-content {
            padding: 1rem;
        }
        .news-content h3 {
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }
        .news-content p {
            font-size: 0.85rem;
            margin-bottom: 0.75rem;
        }
        .testimonial-text {
            font-size: 0.95rem;
            margin-bottom: 0.75rem;
        }
        .testimonial-author {
            font-size: 0.9rem;
        }
        .prev-slide,
        .next-slide {
            padding: 0.3rem 0.6rem;
            font-size: 0.8rem;
        }
        .carousel-wrapper {
            padding: 1rem 2rem;
            margin: 0 -0.5rem;
            min-height: 160px;
        }
        .fact-item p {
            font-size: 0.85rem;
            line-height: 1.5;
        }
        .fact-link {
            font-size: 0.9rem;
        }
        .carousel-nav {
            width: 38px;
            height: 38px;
            font-size: 1.1rem;
        }
        .social-links {
            gap: 0.5rem;
        }
        .social-icon {
            width: 36px;
            height: 36px;
            font-size: 0.8rem;
        }
        .footer-section h3 {
            font-size: 1.1rem;
        }
        .footer-section h4 {
            font-size: 1rem;
        }
        .footer-section p {
            font-size: 0.85rem;
        }
        .about-content p {
            font-size: 0.95rem;
        }
        .cta p {
            font-size: 0.95rem;
        }
    }
    
    @media (max-width: 360px) {
        .logo img {
            height: 40px;
        }
        .header-right {
            gap: 0.25rem;
        }
        .search-box {
            padding: 0.5rem 0.75rem;
            font-size: 0.85rem;
        }
        .hero {
            padding: 1.5rem 0.75rem;
        }
        .hero-text h1 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }
        .hero-text p {
            font-size: 0.8rem;
            margin-bottom: 1rem;
        }
        .stats-container {
            gap: 0.75rem;
        }
        .stat-item {
            padding: 0.75rem;
        }
        .stat-number {
            font-size: 1rem;
        }
        .stat-label {
            font-size: 0.6rem;
        }
        .about-content h2,
        .recent-updates h2,
        .testimonials h2,
        .cta h2 {
            font-size: 1.3rem;
        }
        .what-we-do h2,
        .impact-text-content h2 {
            font-size: 1.8rem;
        }
        .initiative-card {
            padding: 1rem;
        }
        .initiative-icon {
            font-size: 1.8rem;
        }
        .carousel-wrapper {
            padding: 1rem 1.5rem;
        }
        .carousel-nav {
            width: 35px;
            height: 35px;
            font-size: 1rem;
        }
    }
    /* ========== ANIMATIONS ========== */
    
    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    /* ========== ABOUT PAGE STYLES ========== */
    
    .section-padding {
        padding: 80px 0;
    }
    
    .bg-light {
        background-color: var(--bg-light);
    }
    
    .text-center {
        text-align: center;
    }
    
    .about-hero {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../../images/youth_1.jpg");
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        min-height: 300px;
        padding-top: 100px;
        padding-bottom: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-align: center;
    }
    
    .about-hero h1 {
        font-size: 4rem;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    
    .section-title {
        font-size: 2.5rem;
        color: var(--text-dark);
        margin-bottom: 2rem;
        font-weight: 800;
        position: relative;
    }
    
    .about-grid {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 4rem;
        align-items: center;
    }
    
    .about-text h5 {
        font-size: 1.4rem;
        color: var(--primary-color);
        margin-bottom: 1.5rem;
        font-weight: 600;
        line-height: 1.4;
    }
    
    .about-text p {
        font-size: 1.1rem;
        color: var(--text-light);
        margin-bottom: 1.5rem;
    }
    
    .about-image img {
        width: 100%;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    
    .approach-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        margin-top: 4rem;
    }
    
    .approach-card {
        background: white;
        padding: 3rem;
        border-radius: 24px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
    }
    
    .approach-card:hover {
        transform: translateY(-10px);
    }
    
    .approach-icon {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 1.5rem;
    }
    
    .category-label {
        text-transform: uppercase;
        color: var(--primary-color);
        font-weight: 800;
        letter-spacing: 2px;
        font-size: 0.9rem;
        margin-bottom: 1rem;
        display: block;
    }
    
    .approach-card h5 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
        color: var(--text-dark);
    }
    
    .approach-card p {
        color: var(--text-light);
        line-height: 1.7;
    }
    
    .about-cta h2 {
        font-size: 3rem;
        margin: 1.5rem 0 3rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    @media (max-width: 768px) {
        .about-hero h1 {
            font-size: 3rem;
        }
        .about-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .approach-grid {
            grid-template-columns: 1fr;
        }
        .about-cta h2 {
            font-size: 2rem;
        }
    }
    /* ========== ACTIVITIES PAGE STYLES ========== */
    
    .activities-page {
        background: #fff;
    }
    
    .activities-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
        padding-bottom: 5rem;
    }
    
    .activity-card {
        background: #fff;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
    }
    
    .activity-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    }
    
    .activity-image {
        height: 250px;
        overflow: hidden;
    }
    
    .activity-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .activity-card:hover .activity-image img {
        transform: scale(1.1);
    }
    
    .activity-body {
        padding: 2rem;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .activity-body h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
        color: var(--text-dark);
        line-height: 1.3;
    }
    
    .activity-body p {
        color: var(--text-light);
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        flex: 1;
    }
    
    .activity-footer {
        padding: 0 2rem 2rem;
    }
    
    @media (max-width: 1024px) {
        .activities-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (max-width: 768px) {
        .activities-grid {
            grid-template-columns: 1fr;
        }
    }
    /* ========== UTILITY: SECTION HEADER ========== */
    
    .section-header .category-label {
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 2px;
        color: var(--primary-color);
        margin-bottom: 1rem;
        display: inline-block;
    }