 :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(rgb(112 24 31 / 34%), rgb(112 24 31 / 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(--maroon);
            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;
        }

        /* Facilities Section */
        .facilities-section {
            padding: 80px 0;
            background: var(--white);
        }

        .facility-card {
            background: var(--light-bg);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            height: 100%;
        }

        .facility-card:hover {
            transform: translateY(-10px);
            border-color: var(--green);
            box-shadow: 0 15px 40px rgba(66, 125, 58, 0.15);
        }

        .facility-image {
            height: 220px;
            overflow: hidden;
        }

        .facility-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.3s ease;
        }

        .facility-card:hover .facility-image img {
            transform: scale(1.1);
        }

        .facility-content {
            padding: 30px;
        }

        .facility-icon {
            width: 60px;
            height: 60px;
            background: var(--maroon);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .facility-icon i {
            font-size: 1.8rem;
            color: var(--white);
        }

        .facility-content h4 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 12px;
        }

        .facility-content p {
            font-size: 1rem;
            color: var(--text-gray);
            line-height: 1.7;
        }

        /* Sports Section */
        .sports-section {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .sports-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .sport-card {
            background: var(--white);
            border-radius: 15px;
            padding: 30px 20px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid var(--border-light);
        }

        .sport-card:hover {
            transform: translateY(-10px);
            border-color: var(--maroon);
            box-shadow: 0 15px 40px rgba(112, 24, 31, 0.15);
        }

        .sport-icon {
            font-size: 3.5rem;
            margin-bottom: 15px;
        }

        .sport-card h5 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 8px;
        }

        .sport-card p {
            font-size: 0.9rem;
            color: var(--text-gray);
        }

        /* Achievements Section */
        .achievements-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);
        }

        .achievement-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .achievement-box {
            background: var(--white);
            border-radius: 15px;
            padding: 35px 25px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .achievement-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(66, 125, 58, 0.2);
        }

        .achievement-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--maroon);
            margin-bottom: 10px;
            line-height: 1;
        }

        .achievement-box h5 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 8px;
        }

        .achievement-box p {
            font-size: 0.9rem;
            color: var(--text-gray);
        }

        /* Teams Section */
        .teams-section {
            padding: 80px 0;
            background: var(--white);
        }

        .team-card {
            background: var(--light-bg);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .team-image {
            height: 250px;
            overflow: hidden;
            background: var(--maroon);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-image i {
            font-size: 5rem;
            color: var(--white);
            opacity: 0.3;
        }

        .team-content {
            padding: 30px;
        }

        .team-badge {
            display: inline-block;
            background: var(--green);
            color: var(--white);
            padding: 6px 18px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .team-content h4 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 12px;
        }

        .team-content p {
            font-size: 1rem;
            color: var(--text-gray);
            line-height: 1.7;
        }

        /* Events Section */
        .events-section {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .event-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;
        }

        .event-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }

        .event-image {
            height: 220px;
            overflow: hidden;
        }

        .event-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .event-content {
            padding: 30px;
        }

        .event-date {
            display: inline-block;
            background: var(--maroon);
            color: var(--white);
            padding: 6px 18px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .event-content h4 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 12px;
        }

        .event-content p {
            font-size: 0.95rem;
            color: var(--text-gray);
            line-height: 1.7;
        }

        /* Gallery Section */
        .gallery-section {
            padding: 80px 0;
            background: var(--white);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .gallery-item {
            border-radius: 15px;
            overflow: hidden;
            height: 250px;
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: rgba(112, 24, 31, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay i {
            font-size: 3rem;
            color: var(--white);
        }

        /* 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(--green);
            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(--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) {
            .sports-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .achievement-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .sports-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .achievement-grid {
                grid-template-columns: 1fr;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .contact-boxes {
                grid-template-columns: 1fr;
            }
        }