 :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 Heading */
        .section-heading {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-label {
            display: inline-block;
            background: linear-gradient(135deg, var(--maroon), #8b2329);
            color: white;
            padding: 8px 25px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .section-heading h2 {
            font-size: 3.2rem;
            font-weight: 900;
            color: var(--black);
            margin-bottom: 15px;
        }

        .section-heading p {
            font-size: 1.2rem;
            color: var(--text-gray);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Stats Section */
        .stats-section {
            padding: 100px 0;
            background: white;
        }

        .stats-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .stat-box {
            text-align: center;
            padding: 40px 30px;
            background: linear-gradient(135deg, #fafafa, #f0f0f0);
            border-radius: 20px;
            border: 2px solid #e8e8e8;
            transition: all 0.4s ease;
        }

        .stat-box:hover {
            transform: translateY(-10px);
            border-color: var(--maroon);
            box-shadow: 0 15px 40px rgba(0,0,0,0.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;
        }

        .stat-icon i {
            font-size: 40px;
            color: white;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--maroon);
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1rem;
            color: var(--text-gray);
            font-weight: 600;
        }

        /* Featured Alumni Section */
        .featured-alumni-section {
            padding: 100px 0;
            background: #fafafa;
        }

        .featured-alumni-grid {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .featured-card {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0,0,0,0.1);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
        }

        .featured-card:hover {
            transform: translateY(-20px);
            box-shadow: 0 25px 70px rgba(0,0,0,0.2);
        }

        .award-ribbon {
            position: absolute;
            top: 25px;
            right: 25px;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        }

        .award-ribbon.gold {
            background: linear-gradient(135deg, #FFD700, #FFA500);
        }

        .award-ribbon.silver {
            background: linear-gradient(135deg, #C0C0C0, #A8A8A8);
        }

        .award-ribbon.bronze {
            background: linear-gradient(135deg, #CD7F32, #B87333);
        }

        .award-ribbon i {
            font-size: 35px;
            color: white;
        }

        .featured-image {
            height: 350px;
            overflow: hidden;
            position: relative;
        }

        .featured-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }

        .featured-card:hover .featured-image img {
            transform: scale(1.15);
        }

        .image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
        }

        .featured-content {
            padding: 40px 35px;
        }

        .alumni-name {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--maroon);
            margin-bottom: 8px;
        }

        .alumni-batch {
            font-size: 0.95rem;
            color: var(--green);
            font-weight: 700;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .alumni-position {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-gray);
            margin-bottom: 10px;
            line-height: 1.5;
        }

        .alumni-company {
            font-size: 1rem;
            color: var(--maroon);
            font-weight: 700;
            margin-bottom: 20px;
        }

        .alumni-achievement {
            font-size: 1rem;
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .achievement-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .achievement-tag {
            background: linear-gradient(135deg, #fff3e0, #ffe0b2);
            color: #e65100;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
        }

        /* Success Stories Section */
        .success-stories {
            padding: 100px 0;
            background: white;
        }

        .story-card {
            max-width: 1100px;
            margin: 0 auto 50px;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 50px;
            background: white;
            border-radius: 25px;
            padding: 50px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
        }

        .story-card:hover {
            transform: translateX(15px);
            box-shadow: 0 15px 50px rgba(0,0,0,0.15);
        }

        .story-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .story-image img {
            width: 100%;
            height: 350px;
            object-fit: cover;
        }

        .story-content h3 {
            font-size: 2rem;
            font-weight: 900;
            color: var(--maroon);
            margin-bottom: 10px;
        }

        .story-meta {
            display: flex;
            gap: 25px;
            margin-bottom: 20px;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
            color: var(--text-gray);
            font-weight: 600;
        }

        .meta-item i {
            color: var(--green);
            font-size: 1.1rem;
        }

        .story-text {
            font-size: 1.05rem;
            line-height: 1.9;
            color: var(--text-gray);
            margin-bottom: 25px;
        }

        .story-quote {
            background: linear-gradient(135deg, #f8f8f8, #f0f0f0);
            border-left: 4px solid var(--maroon);
            padding: 25px 30px;
            border-radius: 10px;
            font-style: italic;
            color: var(--text-gray);
            font-size: 1.1rem;
            line-height: 1.8;
            position: relative;
        }

        .story-quote::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: 20px;
            font-size: 4rem;
            color: var(--maroon);
            opacity: 0.2;
            font-family: Georgia, serif;
        }

        /* Award Categories */
        .award-categories {
            padding: 100px 0;
            background: #fafafa;
        }

        .categories-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
        }

        .category-card {
            background: white;
            border-radius: 20px;
            padding: 45px 35px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            border: 2px solid #f0f0f0;
        }

        .category-card:hover {
            transform: translateY(-10px);
            border-color: var(--maroon);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .category-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, var(--maroon), #8b2329);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
        }

        .category-card:hover .category-icon {
            transform: rotateY(360deg);
        }

        .category-icon i {
            font-size: 50px;
            color: white;
        }

        .category-card h4 {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--maroon);
            margin-bottom: 15px;
        }

        .category-card p {
            font-size: 1rem;
            color: var(--text-gray);
            line-height: 1.7;
        }

        /* Nomination CTA */
        .nomination-cta {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--maroon), #4a1014);
            position: relative;
            overflow: hidden;
        }

        .nomination-cta::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255,255,255,0.1), transparent);
            border-radius: 50%;
        }

        .cta-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            color: white;
            position: relative;
            z-index: 2;
            padding: 0 20px;
        }

        .cta-content h3 {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .cta-content p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.95;
            line-height: 1.7;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .cta-btn {
            background: white;
            color: var(--maroon);
            padding: 18px 50px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.15rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .cta-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
            color: var(--maroon);
        }

        .cta-btn.secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .cta-btn.secondary:hover {
            background: white;
            color: var(--maroon);
        }

        /* Testimonials */
        .testimonials-section {
            padding: 100px 0;
            background: white;
        }

        .testimonial-card {
            max-width: 800px;
            margin: 0 auto 40px;
            padding: 45px;
            background: linear-gradient(135deg, #fafafa, #f5f5f5);
            border-radius: 20px;
            border-left: 5px solid var(--maroon);
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }

        .testimonial-text {
            font-size: 1.2rem;
            line-height: 1.9;
            color: var(--text-gray);
            font-style: italic;
            margin-bottom: 25px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .author-image {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid var(--maroon);
        }

        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h5 {
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--maroon);
            margin-bottom: 5px;
        }

        .author-info p {
            font-size: 0.95rem;
            color: var(--text-gray);
            margin: 0;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .featured-alumni-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .categories-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }

            .section-heading h2 {
                font-size: 2rem;
            }

            .featured-alumni-grid {
                grid-template-columns: 1fr;
            }

            .story-card {
                grid-template-columns: 1fr;
                padding: 30px;
            }

            .categories-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }
        }