: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;
}
/* 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: 700px;
            margin: 0 auto;
        }

        /* Stats Section */
        .stats-section {
            padding: 80px 0;
            background: var(--white);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .stat-box {
            background: var(--light-bg);
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .stat-box:hover {
            transform: translateY(-10px);
            border-color: var(--green);
            box-shadow: 0 15px 40px rgba(66, 125, 58, 0.15);
        }

        .stat-icon {
            width: 80px;
            height: 80px;
            background: var(--green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .stat-icon i {
            font-size: 2.5rem;
            color: var(--white);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--maroon);
            margin-bottom: 10px;
            line-height: 1;
        }

        .stat-label {
            font-size: 1rem;
            color: var(--text-gray);
            font-weight: 500;
        }

        /* Projects Section */
        .projects-section {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .project-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            margin-bottom: 30px;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .project-header {
            background: var(--green);
            color: var(--white);
            padding: 25px 30px;
            display: flex;
            justify-content: space-between;
            align-items: start;
        }

        .project-title-section h3 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .project-pi {
            font-size: 0.95rem;
            opacity: 0.9;
        }

        .project-amount {
            text-align: right;
        }

        .amount-label {
            font-size: 0.85rem;
            opacity: 0.9;
            margin-bottom: 5px;
        }

        .amount-value {
            font-size: 2rem;
            font-weight: 800;
        }

        .project-body {
            padding: 30px;
        }

        .project-meta {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 25px;
        }

        .meta-item {
            display: flex;
            align-items: start;
            gap: 12px;
        }

        .meta-icon {
            width: 40px;
            height: 40px;
            background: var(--light-bg);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .meta-icon i {
            font-size: 1.2rem;
            color: var(--green);
        }

        .meta-content h6 {
            font-size: 0.85rem;
            color: var(--text-gray);
            margin-bottom: 3px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .meta-content p {
            font-size: 1rem;
            color: var(--black);
            font-weight: 600;
            margin: 0;
        }

        .project-description {
            font-size: 1rem;
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .project-status {
            display: inline-block;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .status-ongoing {
            background: #e8f5e9;
            color: #2e7d32;
        }

        .status-completed {
            background: #e3f2fd;
            color: #1565c0;
        }

        /* Agencies Section */
        .agencies-section {
            padding: 80px 0;
            background: var(--white);
        }

        .agencies-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .agency-card {
            background: var(--light-bg);
            border-radius: 15px;
            padding: 35px 25px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .agency-card:hover {
            transform: translateY(-10px);
            border-color: var(--maroon);
            box-shadow: 0 15px 40px rgba(112, 24, 31, 0.15);
        }

        .agency-logo {
            width: 80px;
            height: 80px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .agency-logo i {
            font-size: 2.5rem;
            color: var(--maroon);
        }

        .agency-card h5 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 10px;
        }

        .agency-card p {
            font-size: 0.9rem;
            color: var(--text-gray);
        }

        /* Research Areas Section */
        .research-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);
        }

        .research-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .research-card {
            background: var(--white);
            border-radius: 15px;
            padding: 35px 30px;
            transition: all 0.3s ease;
        }

        .research-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(66, 125, 58, 0.2);
        }

        .research-icon {
            width: 70px;
            height: 70px;
            background: var(--green);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .research-icon i {
            font-size: 2rem;
            color: var(--white);
        }

        .research-card h5 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 12px;
        }

        .research-card p {
            font-size: 1rem;
            color: var(--text-gray);
            line-height: 1.7;
        }

        /* Contact Section */
        .contact-section {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .contact-boxes {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .contact-box {
            background: var(--white);
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .contact-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .contact-icon {
            width: 70px;
            height: 70px;
            background: var(--maroon);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .contact-icon i {
            font-size: 2rem;
            color: var(--white);
        }

        .contact-box h5 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 12px;
        }

        .contact-box p {
            font-size: 1rem;
            color: var(--text-gray);
            line-height: 1.6;
            margin-bottom: 8px;
        }

        .contact-box a {
            color: var(--green);
            text-decoration: none;
            font-weight: 600;
        }

        .contact-box a:hover {
            text-decoration: underline;
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: var(--maroon);
            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(--maroon);
            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(--green);
            color: var(--white);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .agencies-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .research-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }

            .project-meta {
                grid-template-columns: 1fr;
            }

            .project-header {
                flex-direction: column;
                gap: 15px;
            }

            .project-amount {
                text-align: left;
            }

            .agencies-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .research-grid {
                grid-template-columns: 1fr;
            }

            .contact-boxes {
                grid-template-columns: 1fr;
            }
        }