 :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;
} 

/* Quick Stats Section */
        .quick-stats-section {
            padding: 80px 0;
            background: white;
            margin-top: -50px;
            position: relative;
            z-index: 20;
        }

        .quick-stats-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .stat-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            border: 2px solid transparent;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(112, 24, 31, 0.05), rgba(66, 125, 58, 0.05));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 0;
        }

        .stat-card:hover::before {
            opacity: 1;
        }

        .stat-card:hover {
            transform: translateY(-15px) scale(1.02);
            border-color: var(--maroon);
            box-shadow: 0 20px 60px rgba(112, 24, 31, 0.2);
        }

        .stat-card > * {
            position: relative;
            z-index: 1;
        }

        .stat-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, var(--maroon), #8b2329);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 0 5px 15px rgba(112, 24, 31, 0.3);
        }

        .stat-card:hover .stat-icon {
            transform: scale(1.2) rotate(360deg);
            box-shadow: 0 10px 30px rgba(112, 24, 31, 0.5);
        }

        .stat-icon i {
            font-size: 35px;
            color: white;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--maroon);
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 1rem;
            color: var(--text-gray);
            font-weight: 600;
        }

        /* Section Heading */
        .section-heading {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-label {
            display: inline-block;
            background: linear-gradient(135deg, var(--maroon), #8b2329);
            color: white;
            padding: 10px 30px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 20px;
            box-shadow: 0 5px 20px rgba(112, 24, 31, 0.3);
            transition: all 0.3s ease;
        }

        .section-label:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 30px rgba(112, 24, 31, 0.5);
        }

        .section-heading h2 {
            font-size: 3rem;
            font-weight: 900;
            color: var(--black);
            margin-bottom: 15px;
        }

        .section-heading p {
            font-size: 1.2rem;
            color: var(--text-gray);
        }

        /* Eligibility Cards Section */
        .eligibility-section {
            padding: 100px 0;
            background: #fafafa;
        }

        .eligibility-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .eligibility-card {
            background: white;
            border-radius: 25px;
            padding: 50px;
            margin-bottom: 40px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .eligibility-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(112, 24, 31, 0.05), transparent);
            transition: left 0.5s ease;
        }

        .eligibility-card:hover::before {
            left: 100%;
        }

        .eligibility-card:hover {
            transform: translateY(-8px) scale(1.01);
            box-shadow: 0 25px 70px rgba(112, 24, 31, 0.15);
        }

        .eligibility-header {
            display: flex;
            align-items: center;
            gap: 25px;
            margin-bottom: 35px;
            padding-bottom: 25px;
            border-bottom: 3px solid var(--maroon);
        }

        .eligibility-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--green), #52a045);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 8px 25px rgba(66, 125, 58, 0.3);
            transition: all 0.4s ease;
            position: relative;
        }

        .eligibility-icon::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            background: inherit;
            border-radius: inherit;
            transform: translate(-50%, -50%);
            animation: iconPulse 2s ease-out infinite;
            opacity: 0;
        }

        @keyframes iconPulse {
            0% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.5;
            }
            100% {
                transform: translate(-50%, -50%) scale(1.5);
                opacity: 0;
            }
        }

        .eligibility-card:hover .eligibility-icon {
            transform: scale(1.1);
            box-shadow: 0 12px 35px rgba(66, 125, 58, 0.5);
        }

        .eligibility-icon i {
            font-size: 40px;
            color: white;
        }

        .eligibility-title h3 {
            font-size: 2rem;
            font-weight: 900;
            color: var(--maroon);
            margin: 0;
        }

        .eligibility-title p {
            font-size: 1.1rem;
            color: var(--text-gray);
            margin: 5px 0 0;
        }

        .eligibility-content {
            margin-bottom: 30px;
        }

        .criteria-item {
            background: linear-gradient(135deg, #f8f8f8, #ffffff);
            padding: 25px 30px;
            border-radius: 15px;
            margin-bottom: 15px;
            border-left: 5px solid var(--maroon);
            transition: all 0.3s ease;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }

        .criteria-item:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 20px rgba(112, 24, 31, 0.15);
            background: white;
        }

        .criteria-item strong {
            color: var(--maroon);
            font-weight: 700;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .criteria-item strong i {
            font-size: 1.2rem;
        }

        .criteria-item p {
            margin: 5px 0 0;
            color: var(--text-gray);
            line-height: 1.8;
        }

        /* Course Table Section */
        .course-table-section {
            padding: 100px 0;
            background: white;
        }

        .course-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .table-wrapper {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0,0,0,0.1);
            margin-bottom: 40px;
        }

        .table-header {
            background: linear-gradient(135deg, var(--maroon), #8b2329, #5a1318);
            padding: 35px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .table-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .table-header h3 {
            font-size: 1.8rem;
            font-weight: 800;
            margin: 0;
            position: relative;
            z-index: 1;
        }

        .custom-table {
            width: 100%;
            border-collapse: collapse;
        }

        .custom-table thead {
            background: #f8f8f8;
        }

        .custom-table th {
            padding: 20px;
            text-align: left;
            font-weight: 700;
            color: var(--maroon);
            font-size: 1rem;
            border-bottom: 2px solid #e8e8e8;
        }

        .custom-table tbody tr {
            transition: all 0.3s ease;
            border-bottom: 1px solid #f0f0f0;
        }

        .custom-table tbody tr:hover {
            background: linear-gradient(90deg, rgba(112, 24, 31, 0.03), transparent);
            transform: scale(1.01);
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }

        .custom-table td {
            padding: 20px;
            color: var(--text-gray);
            font-size: 0.95rem;
        }

        .course-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--maroon);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .course-link:hover {
            color: var(--green);
            gap: 12px;
        }

        .intake-badge {
            background: linear-gradient(135deg, var(--green), #52a045);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-weight: 700;
            font-size: 0.95rem;
            box-shadow: 0 4px 15px rgba(66, 125, 58, 0.3);
            transition: all 0.3s ease;
            display: inline-block;
        }

        .custom-table tbody tr:hover .intake-badge {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(66, 125, 58, 0.5);
        }

        /* Additional Notes Section */
        .notes-section {
            padding: 100px 0;
            background: #fafafa;
        }

        .notes-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .notes-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .note-card {
            background: white;
            padding: 35px;
            border-radius: 20px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.06);
            border-left: 5px solid var(--maroon);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .note-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(112, 24, 31, 0.05), transparent);
            transition: right 0.5s ease;
        }

        .note-card:hover::before {
            right: 100%;
        }

        .note-card:hover {
            transform: translateX(15px) scale(1.02);
            box-shadow: 0 15px 50px rgba(112, 24, 31, 0.15);
            border-left-width: 8px;
        }

        .note-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--maroon), #8b2329);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(112, 24, 31, 0.3);
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .note-card:hover .note-icon {
            transform: rotate(360deg) scale(1.15);
            box-shadow: 0 8px 25px rgba(112, 24, 31, 0.5);
        }

        .note-icon i {
            font-size: 24px;
            color: white;
        }

        .note-card h4 {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--maroon);
            margin-bottom: 10px;
        }

        .note-card p {
            font-size: 1.05rem;
            color: var(--text-gray);
            line-height: 1.8;
            margin: 0;
        }

        /* Other Programs Section */
        .other-programs-section {
            padding: 100px 0;
            background: white;
        }

        .program-cards {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .program-card {
            background: white;
            padding: 50px;
            border-radius: 25px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
        }

        .program-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--maroon), var(--green));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

        .program-card:hover::before {
            transform: scaleX(1);
        }

        .program-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 70px rgba(112, 24, 31, 0.15);
            border-color: var(--maroon);
        }

        .program-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
        }

        .program-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--green), #52a045);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 25px rgba(66, 125, 58, 0.3);
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .program-card:hover .program-icon {
            animation: bounce 0.6s ease;
            box-shadow: 0 12px 35px rgba(66, 125, 58, 0.5);
        }

        .program-icon i {
            font-size: 35px;
            color: white;
        }

        .program-header h3 {
            font-size: 2rem;
            font-weight: 900;
            color: var(--maroon);
            margin: 0;
        }

        .program-details {
            margin-bottom: 25px;
        }

        .program-item {
            padding: 15px 0;
            border-bottom: 1px solid #e8e8e8;
        }

        .program-item:last-child {
            border-bottom: none;
        }

        .program-item strong {
            color: var(--maroon);
            font-weight: 700;
        }

        .program-item span {
            color: var(--text-gray);
            font-weight: 500;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .quick-stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .notes-grid {
                grid-template-columns: 1fr;
            }

            .program-cards {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }

            .section-heading h2 {
                font-size: 2rem;
            }

            .quick-stats-grid {
                grid-template-columns: 1fr;
            }

            .eligibility-card {
                padding: 30px;
            }

            .eligibility-header {
                flex-direction: column;
                text-align: center;
            }

            .table-wrapper {
                overflow-x: auto;
            }

            .custom-table {
                font-size: 0.85rem;
            }

            .custom-table th,
            .custom-table td {
                padding: 12px;
            }

            .program-card {
                padding: 30px;
            }
        }