 :root {
            --maroon: #70181f;
            --green: #427d3a;
            --black: #000000;
            --white: #ffffff;
            --light-bg: #f5f5f5;
            --text-gray: #555555;
            --border-light: #e0e0e0;
        }


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-gray);
    background: #fafafa;
    overflow-x: hidden;
}

/* Hero Section */
.leadership-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.68)), url(../assets/image/bg.webp?w=1200&h=600&fit=crop) center / cover;
    /* padding: 120px 0 100px; */
    position: relative;
    overflow: hidden;
}

.leadership-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 30px;
    border-radius: 50px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
} 
/* Overview Section */
        .overview-section {
            padding: 80px 0;
            background: var(--white);
            margin-top: -60px;
            position: relative;
            z-index: 20;
        }

        .overview-container {
            background: var(--white);
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 10px 50px rgba(0,0,0,0.1);
        }

        .overview-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .overview-text h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--black);
            margin-bottom: 20px;
        }

        .overview-text p {
            font-size: 1.05rem;
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .overview-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .overview-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-tag {
            display: inline-block;
            background: var(--green);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .section-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 800;
            color: var(--black);
            margin-bottom: 15px;
        }

        .section-desc {
            font-size: 1.1rem;
            color: var(--text-gray);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Objectives Section */
        .objectives-section {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .objectives-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .objective-card {
            background: var(--white);
            border-radius: 15px;
            padding: 40px;
            border-left: 5px solid var(--green);
            transition: all 0.3s ease;
        }

        .objective-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(66, 125, 58, 0.15);
        }

        .objective-icon {
            width: 70px;
            height: 70px;
            background: var(--green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .objective-icon i {
            font-size: 2rem;
            color: var(--white);
        }

        .objective-card h4 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 15px;
        }

        .objective-card p {
            font-size: 1rem;
            color: var(--text-gray);
            line-height: 1.7;
        }

        /* Programs Section */
        .programs-section {
            padding: 80px 0;
            background: var(--white);
        }

        .programs-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .program-card {
            background: var(--white);
            border: 2px solid var(--border-light);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .program-card:hover {
            transform: translateY(-10px);
            border-color: var(--green);
            box-shadow: 0 15px 40px rgba(66, 125, 58, 0.15);
        }

        .program-image {
            height: 200px;
            overflow: hidden;
        }

        .program-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.3s ease;
        }

        .program-card:hover .program-image img {
            transform: scale(1.1);
        }

        .program-content {
            padding: 30px;
        }

        .program-tag {
            display: inline-block;
            background: var(--green);
            color: var(--white);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .program-content h4 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 12px;
        }

        .program-content p {
            font-size: 0.95rem;
            color: var(--text-gray);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .program-features {
            list-style: none;
            padding: 0;
        }

        .program-features li {
            font-size: 0.9rem;
            color: var(--text-gray);
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
        }

        .program-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--green);
            font-weight: bold;
        }

        /* Benefits Section */
        .benefits-section {
            padding: 80px 0;
            background: var(--black);
        }

        .section-header.light .section-tag {
            background: var(--white);
            color: var(--black);
        }

        .section-header.light .section-title {
            color: var(--white);
        }

        .section-header.light .section-desc {
            color: rgba(255, 255, 255, 0.8);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .benefit-box {
            background: var(--white);
            border-radius: 15px;
            padding: 35px 25px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .benefit-box:hover {
            transform: translateY(-10px);
            background: var(--green);
        }

        .benefit-icon {
            font-size: 3rem;
            color: var(--green);
            margin-bottom: 15px;
        }

        .benefit-box:hover .benefit-icon {
            color: var(--white);
        }

        .benefit-box h5 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 10px;
        }

        .benefit-box:hover h5 {
            color: var(--white);
        }

        .benefit-box p {
            font-size: 0.9rem;
            color: var(--text-gray);
            line-height: 1.5;
        }

        .benefit-box:hover p {
            color: rgba(255, 255, 255, 0.9);
        }

        /* Process Section */
        .process-section {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .process-timeline {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--green);
            transform: translateX(-50%);
        }

        .process-item {
            display: flex;
            gap: 30px;
            margin-bottom: 50px;
            position: relative;
        }

        .process-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .process-content {
            flex: 1;
            background: var(--white);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .process-number {
            width: 60px;
            height: 60px;
            background: var(--green);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 800;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .process-content h4 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 12px;
        }

        .process-content p {
            font-size: 1rem;
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* Stats Section */
        .stats-section {
            padding: 80px 0;
            background: var(--maroon);
            text-align: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .stat-item {
            padding: 20px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: var(--green);
            text-align: center;
        }

        .cta-content h3 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            color: var(--white);
            margin-bottom: 20px;
        }

        .cta-content p {
            font-size: 1.2rem;
            color: var(--white);
            margin-bottom: 35px;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--white);
            color: var(--green);
            padding: 18px 45px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .cta-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            background: var(--maroon);
            color: var(--white);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .programs-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .overview-content {
                grid-template-columns: 1fr;
            }

            .objectives-grid {
                grid-template-columns: 1fr;
            }

            .programs-grid {
                grid-template-columns: 1fr;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .process-timeline::before {
                left: 30px;
            }

            .process-item,
            .process-item:nth-child(even) {
                flex-direction: row;
                padding-left: 80px;
            }

            .process-number {
                left: 30px;
                transform: translateX(0);
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }
        }