

    /* About Us page */

    
        :root {
            --glass-blue: rgba(74, 144, 226, 0.85);
            --deep-maroon: #8B0000;
            --sacred-gold: #D4AF37;
            --pure-white: #FFFFFF;
            --light-gray: #F8F9FA;
            --dark-blue: #1A365D;
            --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.08);
            --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.12);
            --transition-smooth: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: var(--light-gray);
            overflow-x: hidden;
            counter-reset: section;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 1.5rem;
        }

        .scripture-font {
            font-family: 'Crimson Text', serif;
            font-style: italic;
        }

        /* Header & Navigation - Matching index.html */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.4s ease;
            padding: 1rem 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-soft);
        }

        header.scrolled {
            padding: 0.6rem 0;
            background: rgba(255, 255, 255, 0.98);
            box-shadow: var(--shadow-strong);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .logo-container {
            display: flex;
            align-items: center;
            position: relative;
        }

        .logo-image {
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .logo-container:hover .logo-image {
            transform: scale(1.05);
        }

        .logo-text {
            margin-left: 1rem;
        }

        .logo-text h1 {
            font-size: 1.8rem;
            margin-bottom: 0.2rem;
            color: var(--dark-blue);
            line-height: 1.2;
        }

        .logo-text p {
            font-size: 0.9rem;
            color: var(--deep-maroon);
            font-weight: 500;
            letter-spacing: 1px;
        }

        .nav-desktop {
            display: flex;
            align-items: center;
        }

        .nav-desktop ul {
            display: flex;
            list-style: none;
        }

        .nav-desktop li {
            margin-left: 2rem;
            position: relative;
        }

        .nav-desktop a {
            text-decoration: none;
            color: var(--dark-blue);
            font-weight: 500;
            font-size: 1rem;
            padding: 0.5rem 0;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-desktop a:hover {
            color: var(--deep-maroon);
        }

        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--sacred-gold);
            transition: width 0.3s ease;
        }

        .nav-desktop a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: var(--dark-blue);
            cursor: pointer;
        }

        /* Hero Section with Parallax */
        .hero-about {
            height: 80vh;
            min-height: 600px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 80px;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)),
                        url('images/elders.jpg') center/cover fixed;
        }

        .hero-about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.1), transparent 70%);
        }

        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .particle {
            position: absolute;
            border-radius: 50%;
            background: var(--sacred-gold);
            opacity: 0.3;
            animation: float 20s infinite linear;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
            25% { transform: translateY(-20px) translateX(10px) rotate(90deg); }
            50% { transform: translateY(0) translateX(20px) rotate(180deg); }
            75% { transform: translateY(20px) translateX(10px) rotate(270deg); }
        }

        .hero-content-about {
            position: relative;
            z-index: 2;
            text-align: center;
            color: var(--pure-white);
            max-width: 900px;
            padding: 0 2rem;
        }

        .hero-content-about h1 {
            font-size: 3.8rem;
            margin-bottom: 1.5rem;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
            animation: fadeInUp 1s ease;
        }

        .hero-content-about h2 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--sacred-gold);
            font-weight: 400;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .hero-content-about p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1s ease 0.4s both;
        }

        .scripture-highlight {
            font-size: 1.5rem;
            color: var(--sacred-gold);
            margin: 2rem 0;
            padding: 1.5rem;
            border-left: 4px solid var(--sacred-gold);
            background: rgba(255, 255, 255, 0.05);
            border-radius: 0 10px 10px 0;
            animation: fadeInUp 1s ease 0.6s both;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
            color: white;
            font-size: 2rem;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }

        /* Main Content Sections */
        .section {
            padding: 5rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }

        .section-header h2 {
            font-size: 2.8rem;
            color: var(--dark-blue);
            position: relative;
            display: inline-block;
        }

        .section-header h2::before {
            counter-increment: section;
            content: "0" counter(section) ".";
            position: absolute;
            left: -60px;
            top: -10px;
            font-size: 1.2rem;
            color: var(--deep-maroon);
            opacity: 0.7;
            font-family: 'Inter', sans-serif;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--sacred-gold);
            border-radius: 2px;
        }

        .section-header p {
            font-size: 1.2rem;
            color: #666;
            max-width: 700px;
            margin: 1.5rem auto 0;
        }

        /* Interactive Timeline */
        .timeline-container {
            position: relative;
            overflow: hidden;
            padding: 3rem 0;
        }

        .timeline-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            padding: 2rem 0;
        }

        .timeline-item {
            flex: 0 0 300px;
            margin: 0 1.5rem;
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: var(--shadow-soft);
            transition: var(--transition-smooth);
            cursor: pointer;
            position: relative;
        }

        .timeline-item:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-strong);
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            background: var(--deep-maroon);
            border-radius: 50%;
            border: 4px solid white;
            box-shadow: 0 0 0 4px var(--sacred-gold);
        }

        .timeline-year {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--deep-maroon);
            margin-bottom: 1rem;
            text-align: center;
        }

        .timeline-content h4 {
            font-size: 1.2rem;
            color: var(--dark-blue);
            margin-bottom: 1rem;
        }

        .timeline-content p {
            color: #666;
            font-size: 0.95rem;
        }

        .timeline-controls {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .timeline-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: white;
            border: 2px solid var(--deep-maroon);
            color: var(--deep-maroon);
            font-size: 1.2rem;
            cursor: pointer;
            transition: var(--transition-smooth);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .timeline-btn:hover {
            background: var(--deep-maroon);
            color: white;
            transform: scale(1.1);
        }

        /* Vision, Mission & Values */
        .vmv-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-top: 2rem;
        }

        .vmv-card {
            background: white;
            border-radius: 15px;
            padding: 2.5rem;
            text-align: center;
            transition: var(--transition-smooth);
            border-top: 5px solid var(--sacred-gold);
            position: relative;
            overflow: hidden;
        }

        .vmv-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--deep-maroon), var(--glass-blue));
        }

        .vmv-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-strong);
        }

        .vmv-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--glass-blue), var(--deep-maroon));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 1.8rem;
        }

        .vmv-card h3 {
            font-size: 1.5rem;
            color: var(--dark-blue);
            margin-bottom: 1.5rem;
        }

        .values-list {
            list-style: none;
            text-align: left;
            margin-top: 1.5rem;
        }

        .values-list li {
            margin-bottom: 1rem;
            padding-left: 2rem;
            position: relative;
            color: #555;
        }

        .values-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--sacred-gold);
            font-weight: bold;
        }

        /* Leadership Structure */
        .org-chart {
            position: relative;
            min-height: 600px;
            margin: 3rem 0;
        }

        .org-level {
            display: flex;
            justify-content: center;
            margin-bottom: 4rem;
            position: relative;
        }

        .org-node {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: var(--shadow-soft);
            text-align: center;
            min-width: 200px;
            transition: var(--transition-smooth);
            position: relative;
            z-index: 2;
        }

        .org-node:hover {
            transform: scale(1.05);
            box-shadow: var(--shadow-strong);
            z-index: 10;
        }

        .org-node.president {
            background: linear-gradient(135deg, var(--deep-maroon), #a30000);
            color: white;
        }

        .org-node.president h4 {
            color: white;
        }

        .org-node.chairman {
            background: linear-gradient(135deg, var(--glass-blue), #2a6bb0);
            color: white;
        }

        .org-node.chairman h4 {
            color: white;
        }

        .org-connector {
            position: absolute;
            background: var(--glass-blue);
            height: 2px;
            z-index: 1;
        }

        .org-connector.vertical {
            width: 2px;
            height: 50px;
        }

        /* Strategic Development Roadmap */
        .roadmap {
            position: relative;
            padding: 3rem 0;
        }

        .roadmap-track {
            position: relative;
            height: 4px;
            background: #e0e0e0;
            margin: 4rem 0;
        }

        .roadmap-track::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, var(--deep-maroon), var(--glass-blue));
            clip-path: polygon(0 0, 75% 0, 75% 100%, 0% 100%);
        }

        .roadmap-milestone {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            text-align: center;
            width: 120px;
            margin-left: -60px;
        }

        .milestone-dot {
            width: 24px;
            height: 24px;
            background: white;
            border: 4px solid var(--sacred-gold);
            border-radius: 50%;
            margin: 0 auto 1rem;
            position: relative;
            z-index: 2;
        }

        .milestone-dot.completed {
            background: var(--deep-maroon);
        }

        .roadmap-milestone p {
            font-size: 0.9rem;
            color: #666;
            margin-top: 0.5rem;
        }

        /* Ministries Grid */
        .ministries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .ministry-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: var(--transition-smooth);
            cursor: pointer;
            opacity: 0;
            transform: translateY(30px);
        }

        .ministry-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .ministry-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: var(--shadow-strong);
        }

        .ministry-header {
            background: linear-gradient(135deg, var(--glass-blue), var(--deep-maroon));
            color: white;
            padding: 1.5rem;
            text-align: center;
        }

        .ministry-header h4 {
            color: white;
            margin-bottom: 0;
        }

        .ministry-content {
            padding: 1.5rem;
        }

        .ministry-stats {
            display: flex;
            justify-content: space-around;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid #eee;
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--deep-maroon);
            display: block;
        }

        .stat-label {
            font-size: 0.8rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Institutions */
        .institution-card {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 4rem;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
        }

        .institution-card:nth-child(even) .institution-img {
            order: 2;
        }

        .institution-card:nth-child(even) .institution-content {
            order: 1;
        }

        .institution-img {
            height: 400px;
            position: relative;
            overflow: hidden;
        }

        .institution-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .institution-card:hover .institution-img img {
            transform: scale(1.05);
        }

        .institution-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: var(--sacred-gold);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .institution-content {
            padding: 3rem;
        }

        .institution-content h3 {
            font-size: 2rem;
            color: var(--dark-blue);
            margin-bottom: 1.5rem;
        }

        .institution-features {
            list-style: none;
            margin-top: 2rem;
        }

        .institution-features li {
            margin-bottom: 1rem;
            padding-left: 2rem;
            position: relative;
            color: #555;
        }

        .institution-features li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--deep-maroon);
            font-weight: bold;
        }




/* Historical Leadership Gallery - Enhanced */
.gallery-container {
    position: relative;
    margin: 3rem 0;
    padding: 0 4rem;
}

.gallery-track-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 1rem;
}

.gallery-track {
    display: flex;
    gap: 2.5rem;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 1rem;
    min-height: 400px;
}

.leader-portrait {
    flex: 0 0 300px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    opacity: 0.9;
}

.leader-portrait:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    opacity: 1;
    z-index: 10;
}

.leader-portrait.active {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.portrait-img-container {
    height: 250px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--glass-blue), var(--deep-maroon));
}

.portrait-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.leader-portrait:hover .portrait-img-container img {
    transform: scale(1.1);
}

.portrait-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    font-weight: bold;
    background: linear-gradient(45deg, rgba(139, 0, 0, 0.8), rgba(74, 144, 226, 0.8));
}

.portrait-content {
    padding: 2rem;
    text-align: center;
    background: white;
    position: relative;
}

.leader-portrait::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--sacred-gold), var(--deep-maroon));
    z-index: 2;
}

.portrait-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
    line-height: 1.3;
}

.portrait-role {
    color: var(--deep-maroon);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: block;
    min-height: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portrait-years {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: linear-gradient(135deg, var(--light-gray), #eef2f7);
    color: var(--dark-blue);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid var(--sacred-gold);
}

.gallery-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 5;
}

.gallery-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--deep-maroon);
    color: var(--deep-maroon);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    box-shadow: var(--shadow-soft);
}

.gallery-btn:hover {
    background: var(--deep-maroon);
    color: white;
    transform: scale(1.15);
    box-shadow: var(--shadow-strong);
}

.gallery-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.gallery-btn:disabled:hover {
    background: white;
    color: var(--deep-maroon);
}

.gallery-indicator {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

.indicator-dots {
    display: flex;
    gap: 1rem;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator-dot.active {
    background: var(--deep-maroon);
    transform: scale(1.3);
    border-color: var(--sacred-gold);
}

.indicator-dot:hover {
    background: var(--sacred-gold);
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .gallery-container {
        padding: 0 3rem;
    }
    
    .leader-portrait {
        flex: 0 0 280px;
    }
    
    .portrait-img-container {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .gallery-container {
        padding: 0 2rem;
    }
    
    .gallery-track-container {
        padding: 1.5rem 0.5rem;
    }
    
    .leader-portrait {
        flex: 0 0 260px;
    }
    
    .portrait-img-container {
        height: 200px;
    }
    
    .gallery-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .portrait-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .gallery-container {
        padding: 0 1rem;
    }
    
    .leader-portrait {
        flex: 0 0 240px;
    }
    
    .portrait-img-container {
        height: 180px;
    }
    
    .gallery-track {
        gap: 1.5rem;
    }
    
    .portrait-content h4 {
        font-size: 1.1rem;
    }
    
    .portrait-role {
        font-size: 0.85rem;
    }
}









        /* Historical Gallery */
        .gallery-container {
            position: relative;
            overflow: hidden;
            margin: 3rem 0;
        }

        .gallery-track {
            display: flex;
            gap: 2rem;
            padding: 2rem;
            transition: transform 0.5s ease;
        }

        .leader-portrait {
            flex: 0 0 250px;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: var(--transition-smooth);
        }

        .leader-portrait:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: var(--shadow-strong);
        }

        .portrait-img {
            height: 200px;
            background: linear-gradient(135deg, var(--glass-blue), var(--deep-maroon));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
        }

        .portrait-content {
            padding: 1.5rem;
            text-align: center;
        }

        .portrait-content h4 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            color: var(--dark-blue);
        }

        .portrait-content p {
            color: var(--deep-maroon);
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .portrait-years {
            font-size: 0.8rem;
            color: #666;
        }

        /* Legacy & Impact */
        .impact-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .impact-card {
            background: white;
            border-radius: 15px;
            padding: 2.5rem;
            text-align: center;
            transition: var(--transition-smooth);
        }

        .impact-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-strong);
        }

        .impact-number {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--deep-maroon);
            line-height: 1;
            margin-bottom: 1rem;
            display: block;
        }

        .impact-label {
            font-size: 1.1rem;
            color: var(--dark-blue);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .impact-description {
            color: #666;
            font-size: 0.95rem;
        }

        /* Faith Foundations */
        .foundations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .foundation-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: var(--transition-smooth);
            border: 1px solid rgba(139, 0, 0, 0.1);
        }

        .foundation-card:hover {
            background: white;
            transform: translateY(-5px);
            border-color: var(--sacred-gold);
        }

        .foundation-icon {
            font-size: 2.5rem;
            color: var(--deep-maroon);
            margin-bottom: 1.5rem;
            display: block;
        }

        .foundation-card h4 {
            font-size: 1.3rem;
            color: var(--dark-blue);
            margin-bottom: 1rem;
        }

        /* Footer - Matching index.html */
        footer {
            background: var(--dark-blue);
            color: white;
            padding: 4rem 2rem 2rem;
            margin-top: 5rem;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
        }

        .footer-column h4 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: white;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .footer-column h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--sacred-gold);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 0.8rem;
        }

        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: white;
            padding-left: 5px;
        }

        .footer-logo {
            display: flex;
            justify-content: flex-start;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: var(--sacred-gold);
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }

        /* Mobile Responsiveness */
        @media (max-width: 1024px) {
            .vmv-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .institution-card {
                grid-template-columns: 1fr;
                gap: 0;
            }
            
            .institution-card:nth-child(even) .institution-img,
            .institution-card:nth-child(even) .institution-content {
                order: initial;
            }
            
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-desktop {
                display: none;
            }
            
            .hero-content-about h1 {
                font-size: 2.5rem;
            }
            
            .hero-content-about h2 {
                font-size: 1.4rem;
            }
            
            .section {
                padding: 3rem 1.5rem;
            }
            
            .section-header h2 {
                font-size: 2.2rem;
            }
            
            .section-header h2::before {
                position: relative;
                left: 0;
                top: 0;
                display: block;
                margin-bottom: 0.5rem;
            }
            
            .impact-stats {
                grid-template-columns: 1fr;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .hero-content-about h1 {
                font-size: 2rem;
            }
            
            .hero-content-about p {
                font-size: 1rem;
            }
            
            .logo-text h1 {
                font-size: 1.4rem;
            }
            
            .section-header h2 {
                font-size: 1.8rem;
            }
            
            .ministries-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(15px);
            z-index: 2000;
            padding: 2rem;
            transform: translateX(-100%);
            transition: transform 0.4s ease;
            overflow-y: auto;
        }

        .mobile-menu.active {
            transform: translateX(0);
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .mobile-menu-close {
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--dark-blue);
            cursor: pointer;
        }

        .mobile-nav ul {
            list-style: none;
        }

        .mobile-nav li {
            margin-bottom: 1rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .mobile-nav a {
            display: block;
            padding: 1rem 0;
            font-size: 1.1rem;
            color: var(--dark-blue);
            text-decoration: none;
            font-weight: 500;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        
  
.org-chart{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
    margin-top:50px;
}

.org-card{
    position:relative;
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:all 0.4s ease;
    overflow:hidden;
    border-top:4px solid var(--deep-maroon);
}

.org-card:hover{
    transform:translateY(-10px);
}

.org-badge{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--deep-maroon),#b8860b);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:bold;
}

.org-card h3{
    margin-bottom:12px;
    color:var(--deep-maroon);
    font-size:1.3rem;
}

.org-card p{
    color:#555;
    margin-bottom:15px;
    line-height:1.6;
}

.org-card span{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:rgba(128,0,32,0.1);
    color:var(--deep-maroon);
    font-size:14px;
    font-weight:600;
}