:root {
            --maroon: #70181f;
            --green: #427d3a;
            --black: #000000;
            --white: #ffffff;
            --light-bg: #f5f5f5;
            --text-gray: #555555;
            --border-light: #e0e0e0;
            --blue: #3498db;
            --orange: #e67e22;
            --purple: #9b59b6;
        }


* {
    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-label {
            font-size: 1.1rem;
            color: var(--text-gray);
            font-weight: 600;
        }

        .stat-date {
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--maroon);
            margin-top: 10px;
        }

        /* 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);
        }

        /* Timeline Section */
        .timeline-section {
            padding: 100px 0;
            background: #fafafa;
        }

        .timeline-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
        }

        .timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, var(--maroon), var(--green));
            transform: translateX(-50%);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 60px;
            display: flex;
            align-items: center;
        }

        .timeline-item:nth-child(odd) {
            flex-direction: row;
        }

        .timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .timeline-content {
            width: 45%;
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .timeline-content::before {
            content: '';
            position: absolute;
            top: 50%;
            width: 20px;
            height: 20px;
            background: white;
            transform: translateY(-50%) rotate(45deg);
        }

        .timeline-item:nth-child(odd) .timeline-content::before {
            right: -10px;
        }

        .timeline-item:nth-child(even) .timeline-content::before {
            left: -10px;
        }

        .timeline-content:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 50px rgba(112, 24, 31, 0.15);
        }

        .timeline-dot {
            position: absolute;
            left: 50%;
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, var(--maroon), #8b2329);
            border-radius: 50%;
            transform: translateX(-50%);
            z-index: 10;
            box-shadow: 0 0 0 8px rgba(255, 255, 255, 1), 0 5px 20px rgba(112, 24, 31, 0.3);
            transition: all 0.4s ease;
        }

        .timeline-item:hover .timeline-dot {
            transform: translateX(-50%) scale(1.3);
            box-shadow: 0 0 0 8px rgba(255, 255, 255, 1), 0 8px 30px rgba(112, 24, 31, 0.5);
        }

        .timeline-date {
            display: inline-block;
            background: linear-gradient(135deg, var(--maroon), #8b2329);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .timeline-title {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--maroon);
            margin-bottom: 10px;
        }

        .timeline-description {
            color: var(--text-gray);
            line-height: 1.7;
        }

        /* Calendar Grid Section */
        .calendar-section {
            padding: 100px 0;
            background: white;
        }

        .calendar-grid {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .calendar-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
        }

        .calendar-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 70px rgba(112, 24, 31, 0.15);
            border-color: var(--maroon);
        }

        .calendar-header {
            padding: 25px;
            color: white;
            display: flex;
            align-items: center;
            gap: 15px;
            position: relative;
            overflow: hidden;
        }

        .calendar-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); }
        }

        .calendar-header.admission {
            background: linear-gradient(135deg, var(--maroon), #8b2329);
        }

        .calendar-header.exam {
            background: linear-gradient(135deg, var(--blue), #2980b9);
        }

        .calendar-header.event {
            background: linear-gradient(135deg, var(--green), #52a045);
        }

        .calendar-header.holiday {
            background: linear-gradient(135deg, var(--orange), #d35400);
        }

        .calendar-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            position: relative;
            z-index: 1;
        }

        .calendar-icon i {
            font-size: 24px;
        }

        .calendar-header h3 {
            font-size: 1.5rem;
            font-weight: 800;
            margin: 0;
            position: relative;
            z-index: 1;
        }

        .calendar-body {
            padding: 25px;
        }

        .calendar-item {
            padding: 15px 0;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            align-items: flex-start;
            gap: 15px;
            transition: all 0.3s ease;
        }

        .calendar-item:last-child {
            border-bottom: none;
        }

        .calendar-item:hover {
            padding-left: 10px;
        }

        .calendar-item-date {
            background: linear-gradient(135deg, #f8f8f8, #f0f0f0);
            padding: 10px 15px;
            border-radius: 12px;
            text-align: center;
            min-width: 80px;
            flex-shrink: 0;
        }

        .calendar-item-day {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--maroon);
            line-height: 1;
        }

        .calendar-item-month {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-gray);
            margin-top: 3px;
        }

        .calendar-item-details h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 5px;
        }

        .calendar-item-details p {
            font-size: 0.95rem;
            color: var(--text-gray);
            margin: 0;
            line-height: 1.6;
        }

        /* Month Wise Section */
        .monthwise-section {
            padding: 100px 0;
            background: #fafafa;
        }

        .month-accordion {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .month-item {
            background: white;
            border-radius: 20px;
            margin-bottom: 20px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0,0,0,0.06);
            transition: all 0.3s ease;
        }

        .month-item:hover {
            box-shadow: 0 12px 40px rgba(112, 24, 31, 0.12);
        }

        .month-header {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(135deg, #fafafa, #f5f5f5);
            transition: all 0.3s ease;
        }

        .month-header:hover {
            background: linear-gradient(135deg, rgba(112, 24, 31, 0.05), rgba(66, 125, 58, 0.05));
        }

        .month-header-left {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .month-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--maroon), #8b2329);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 20px rgba(112, 24, 31, 0.3);
        }

        .month-icon i {
            font-size: 28px;
            color: white;
        }

        .month-title h3 {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--maroon);
            margin: 0 0 5px;
        }

        .month-title p {
            margin: 0;
            color: var(--text-gray);
            font-size: 0.95rem;
        }

        .month-toggle {
            font-size: 1.5rem;
            color: var(--maroon);
            transition: transform 0.3s ease;
        }

        .month-item.active .month-toggle {
            transform: rotate(45deg);
        }

        .month-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .month-item.active .month-content {
            max-height: 2000px;
        }

        .month-content-inner {
            padding: 30px;
        }

        .month-event {
            background: linear-gradient(135deg, #f8f8f8, #ffffff);
            padding: 20px 25px;
            border-radius: 15px;
            margin-bottom: 15px;
            border-left: 5px solid var(--maroon);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .month-event:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 20px rgba(112, 24, 31, 0.15);
        }

        .event-date-badge {
            background: linear-gradient(135deg, var(--maroon), #8b2329);
            color: white;
            padding: 12px 18px;
            border-radius: 12px;
            text-align: center;
            min-width: 70px;
            flex-shrink: 0;
        }

        .event-date-day {
            font-size: 1.6rem;
            font-weight: 900;
            line-height: 1;
        }

        .event-date-month {
            font-size: 0.75rem;
            font-weight: 600;
            margin-top: 3px;
            opacity: 0.9;
        }

        .event-details h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 5px;
        }

        .event-details p {
            margin: 0;
            color: var(--text-gray);
            font-size: 0.95rem;
        }

        /* Download Section */
        .download-section {
            padding: 100px 0;
            background: white;
        }

        .download-cards {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .download-card {
            background: white;
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            border: 2px solid #e8e8e8;
        }

        .download-card:hover {
            transform: translateY(-10px);
            border-color: var(--maroon);
            box-shadow: 0 20px 60px rgba(112, 24, 31, 0.2);
        }

        .download-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, var(--green), #52a045);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 25px rgba(66, 125, 58, 0.3);
            transition: all 0.4s ease;
        }

        .download-card:hover .download-icon {
            transform: scale(1.15) rotate(5deg);
            box-shadow: 0 12px 35px rgba(66, 125, 58, 0.5);
        }

        .download-icon i {
            font-size: 40px;
            color: white;
        }

        .download-card h4 {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--maroon);
            margin-bottom: 15px;
        }

        .download-card p {
            color: var(--text-gray);
            margin-bottom: 25px;
            line-height: 1.7;
        }

        .download-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--maroon), #8b2329);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(112, 24, 31, 0.3);
        }

        .download-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(112, 24, 31, 0.5);
            color: white;
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--maroon), #8b2329);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: pulse 8s ease-in-out infinite;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            color: white;
            position: relative;
            z-index: 10;
            padding: 0 20px;
        }

        .cta-content h2 {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 20px;
        }

        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 35px;
            opacity: 0.95;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 18px 45px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            background: white;
            color: var(--maroon);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
            color: var(--maroon);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .quick-stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .calendar-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .download-cards {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }

            .section-heading h2 {
                font-size: 2rem;
            }

            .quick-stats-grid,
            .calendar-grid,
            .download-cards {
                grid-template-columns: 1fr;
            }

            .timeline-line {
                left: 30px;
            }

            .timeline-item,
            .timeline-item:nth-child(even) {
                flex-direction: row !important;
                padding-left: 60px;
            }

            .timeline-content {
                width: 100%;
            }

            .timeline-content::before {
                left: -10px !important;
            }

            .timeline-dot {
                left: 30px !important;
            }

            .month-header-left {
                flex-direction: column;
                align-items: flex-start;
            }

            .cta-content h2 {
                font-size: 2rem;
            }
        }