: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;
}


        .hero-grid-bg {
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(112, 24, 31, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(112, 24, 31, 0.05) 1px, transparent 1px);
            background-size: 100px 100px;
            animation: gridMove 20s linear infinite;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(100px, 100px); }
        }

        .hero-spotlight {
            position: absolute;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, var(--maroon) 0%, transparent 70%);
            opacity: 0.15;
            top: -200px;
            right: -200px;
            pointer-events: none;
        }

        .hero-spotlight-2 {
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--green) 0%, transparent 70%);
            opacity: 0.1;
            bottom: -150px;
            left: -150px;
            pointer-events: none;
        }

        .hero-content-wrapper {
            position: relative;
            z-index: 10;
            text-align: center;
            padding: 0 20px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--white);
            color: var(--maroon);
            padding: 14px 32px;
            border-radius: 100px;
            font-weight: 700;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 40px;
            box-shadow: 0 20px 60px rgba(112, 24, 31, 0.3);
        }

        .hero-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(3rem, 10vw, 7rem);
            font-weight: 700;
            color: var(--white);
            line-height: 1.1;
            margin-bottom: 30px;
            letter-spacing: -3px;
        }

        .hero-title span {
            color: var(--maroon);
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.5rem);
            color: var(--gray-300);
            max-width: 800px;
            margin: 0 auto;
            font-weight: 400;
        }

        /* Stats Bar - Like Original Code */
        .stats-bar-wrapper {
            background: var(--gray-50);
            padding: 60px 0 80px;
        }

        .stats-bar {
            background: var(--white);
            padding: 50px 40px;
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
            margin-top: -80px;
            position: relative;
            z-index: 20;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .stat-box {
            text-align: center;
            padding: 20px;
            border-right: 2px solid var(--gray-200);
            transition: all 0.3s ease;
        }

        .stat-box:last-child {
            border-right: none;
        }

        .stat-box:hover {
            transform: translateY(-10px);
        }

        .stat-icon-circle {
            width: 90px;
            height: 90px;
            background: var(--maroon);
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
        }

        .stat-box:hover .stat-icon-circle {
            transform: scale(1.1);
            background: var(--green);
        }

        .stat-icon-circle i {
            font-size: 2.5rem;
            color: var(--white);
        }

        .stat-value {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--maroon);
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 0.95rem;
            color: var(--gray-600);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Section Heading */
        .section-header {
            text-align: center;
            margin-bottom: 100px;
            padding: 0 20px;
        }

        .section-tag {
            display: inline-block;
            background: var(--black);
            color: var(--white);
            padding: 12px 30px;
            border-radius: 100px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 25px;
        }

        .section-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 700;
            color: var(--black);
            margin-bottom: 20px;
            letter-spacing: -2px;
        }

        .section-description {
            font-size: 1.3rem;
            color: var(--gray-600);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Accreditation Cards - New Better Design */
        .accreditations-wrapper {
            padding: 70px 0;
            background: var(--white);
        }

        .accreditation-showcase {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 50px;
            margin-bottom: 50px;
        }

        .accred-card {
            background: var(--white);
            border: 3px solid var(--gray-200);
            border-radius: 35px;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .accred-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 8px;
            /* background: var(--maroon); */
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

        .accred-card:nth-child(2)::before,
        .accred-card:nth-child(4)::before {
            background: var(--green);
        }

        .accred-card:hover::before {
            transform: scaleX(1);
        }

        .accred-card:hover {
            transform: translateY(-15px);
            border-color: var(--maroon);
            box-shadow: 0 30px 80px rgba(0,0,0,0.15);
        }

        .accred-card:nth-child(2):hover,
        .accred-card:nth-child(4):hover {
            border-color: var(--green);
        }

        .accred-image-section {
            position: relative;
            height: 320px;
            background: var(--gray-900);
            overflow: hidden;
        }

        .accred-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* opacity: 0.3; */
            transition: all 0.6s ease;
        }

        .accred-card:hover .accred-image {
            opacity: 0.8;
            transform: scale(1.08);
        }

        .accred-tag {
            position: absolute;
            top: 25px;
            left: 25px;
            background: var(--white);
            color: var(--black);
            padding: 10px 22px;
            border-radius: 100px;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .accred-icon-badge {
            position: absolute;
            bottom: -40px;
            right: 30px;
            width: 100px;
            height: 100px;
            background: var(--maroon);
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 15px 50px rgba(0,0,0,0.3);
            z-index: 5;
        }

        .accred-card:nth-child(2) .accred-icon-badge,
        .accred-card:nth-child(4) .accred-icon-badge {
            background: var(--green);
        }

        .accred-icon-badge i {
            font-size: 3.5rem;
            color: var(--white);
        }

        .accred-content {
            padding: 60px 40px 40px;
        }

        .accred-content h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.3rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 12px;
            letter-spacing: -1px;
        }

        .accred-content h4 {
            font-size: 1.2rem;
            color: var(--green);
            font-weight: 600;
            margin-bottom: 25px;
        }

        .accred-card:nth-child(2) .accred-content h4,
        .accred-card:nth-child(4) .accred-content h4 {
            color: var(--maroon);
        }

        .accred-content p {
            font-size: 1.05rem;
            color: var(--gray-600);
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .benefits-list {
            list-style: none;
            padding: 0;
        }

        .benefits-list li {
            padding: 15px 0;
            padding-left: 45px;
            position: relative;
            font-size: 1rem;
            color: var(--gray-900);
            border-bottom: 1px solid var(--gray-200);
            font-weight: 500;
        }

        .benefits-list li:last-child {
            border-bottom: none;
        }

        .benefits-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 15px;
            width: 28px;
            height: 28px;
            background: var(--green);
            border-radius: 8px;
        }

        .accred-card:nth-child(2) .benefits-list li::before,
        .accred-card:nth-child(4) .benefits-list li::before {
            background: var(--maroon);
        }

        .benefits-list li::after {
            content: '\F26B';
            font-family: 'bootstrap-icons';
            position: absolute;
            left: 7px;
            top: 21px;
            color: var(--white);
            font-size: 14px;
            font-weight: bold;
        }

        /* NBA Programs */
        .programs-section {
            padding: 70px 0;
            background: var(--gray-50);
        }

        .programs-showcase {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 30px;
        }

        .program-box {
            background: var(--white);
            border: 2px solid var(--gray-200);
            border-radius: 25px;
            padding: 45px 25px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
        }

        .program-box:hover {
            transform: translateY(-15px);
            background: var(--maroon);
            border-color: var(--maroon);
            box-shadow: 0 30px 70px rgba(112, 24, 31, 0.25);
        }

        .program-icon-wrapper {
            width: 90px;
            height: 90px;
            background: var(--gray-50);
            border-radius: 50%;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
        }

        .program-box:hover .program-icon-wrapper {
            background: var(--white);
            transform: scale(1.1) rotate(10deg);
        }

        .program-icon-wrapper i {
            font-size: 3rem;
            color: var(--maroon);
            transition: color 0.4s ease;
        }

        .program-box:hover .program-icon-wrapper i {
            color: var(--maroon);
        }

        .program-code {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 10px;
            transition: color 0.4s ease;
        }

        .program-box:hover .program-code {
            color: var(--white);
        }

        .program-title {
            font-size: 0.9rem;
            color: var(--gray-600);
            font-weight: 500;
            transition: color 0.4s ease;
        }

        .program-box:hover .program-title {
            color: rgba(255,255,255,0.9);
        }

        /* Timeline - Horizontal Modern */
        .timeline-section {
            padding: 70px 0;
            background: var(--black);
            position: relative;
            overflow: hidden;
        }

        .timeline-bg-pattern {
            position: absolute;
            inset: 0;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(112, 24, 31, 0.1) 1px, transparent 1px),
                radial-gradient(circle at 80% 80%, rgba(66, 125, 58, 0.1) 1px, transparent 1px);
            background-size: 60px 60px;
        }

        .timeline-container {
            position: relative;
            z-index: 2;
        }

        .section-header.light .section-tag {
            background: var(--white);
            color: var(--black);
        }

        .section-header.light .section-title {
            color: var(--white);
        }

        .section-header.light .section-description {
            color: var(--gray-300);
        }

        .timeline-track {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .timeline-card {
            background: var(--white);
            border-radius: 30px;
            padding: 50px 35px;
            position: relative;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .timeline-card:hover {
            transform: translateY(-25px);
            box-shadow: 0 40px 100px rgba(112, 24, 31, 0.3);
        }

        .timeline-year-badge {
            position: absolute;
            top: -25px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--maroon);
            color: var(--white);
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            box-shadow: 0 10px 40px rgba(112, 24, 31, 0.4);
        }

        .timeline-card:nth-child(2) .timeline-year-badge {
            background: var(--green);
        }

        .timeline-card:nth-child(3) .timeline-year-badge {
            background: var(--black);
            border: 3px solid var(--white);
        }

        .timeline-card:nth-child(4) .timeline-year-badge {
            background: var(--maroon);
        }

        .timeline-icon {
            width: 70px;
            height: 70px;
            background: var(--gray-50);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 30px auto 25px;
        }

        .timeline-icon i {
            font-size: 2rem;
            color: var(--maroon);
        }

        .timeline-card h4 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 15px;
            text-align: center;
        }

        .timeline-card p {
            font-size: 1rem;
            color: var(--gray-600);
            line-height: 1.8;
            text-align: center;
        }

        /* Quality Framework */
        .quality-framework {
            padding: 70px 0;
            background: var(--white);
        }

        .quality-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .quality-card {
            background: var(--white);
            border: 3px solid var(--gray-200);
            border-radius: 35px;
            padding: 60px 45px;
            text-align: center;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .quality-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: var(--maroon);
            transform: translateX(-100%);
            transition: transform 0.5s ease;
        }

        .quality-card:hover::before {
            transform: translateX(0);
        }

        .quality-card:hover {
            transform: translateY(-20px);
            border-color: var(--maroon);
            box-shadow: 0 40px 90px rgba(0,0,0,0.12);
        }

        .quality-icon-box {
            width: 110px;
            height: 110px;
            background: var(--maroon);
            border-radius: 50%;
            margin: 0 auto 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.5s ease;
        }

        .quality-card:hover .quality-icon-box {
            transform: scale(1.1);
            background: var(--green);
        }

        .quality-icon-box i {
            font-size: 3.5rem;
            color: var(--white);
        }

        .quality-card h4 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 18px;
        }

        .quality-card p {
            font-size: 1.05rem;
            color: var(--gray-600);
            line-height: 1.8;
        }

        /* CTA Download */
        .cta-download {
            padding: 100px 0;
            background: var(--maroon);
            position: relative;
            overflow: hidden;
        }

        .cta-pattern {
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(45deg, rgba(255,255,255,0.03) 25%, transparent 25%),
                linear-gradient(-45deg, rgba(255,255,255,0.03) 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.03) 75%),
                linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.03) 75%);
            background-size: 60px 60px;
            background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: var(--white);
        }

        .cta-content h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 700;
            margin-bottom: 25px;
            letter-spacing: -1px;
        }

        .cta-content p {
            font-size: 1.4rem;
            margin-bottom: 60px;
            opacity: 0.95;
        }

        .download-buttons-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .download-link {
            background: var(--white);
            color: var(--maroon);
            padding: 35px 30px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
        }

        .download-link:hover {
            transform: translateY(-15px);
            box-shadow: 0 35px 90px rgba(0,0,0,0.35);
            background: var(--black);
            color: var(--white);
        }

        .download-link i {
            font-size: 3rem;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .accreditation-showcase {
                grid-template-columns: 1fr;
            }

            .programs-showcase {
                grid-template-columns: repeat(3, 1fr);
            }

            .timeline-track {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .stat-box {
                border-right: none;
                border-bottom: 2px solid var(--gray-200);
            }

            .stat-box:nth-child(3),
            .stat-box:nth-child(4) {
                border-bottom: none;
            }

            .programs-showcase {
                grid-template-columns: repeat(2, 1fr);
            }

            .timeline-track {
                grid-template-columns: 1fr;
            }

            .quality-grid {
                grid-template-columns: 1fr;
            }

            .download-buttons-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .programs-showcase {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .stat-box {
                border-bottom: 2px solid var(--gray-200);
            }

            .stat-box:last-child {
                border-bottom: none;
            }
        }