 :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;
} 
 /* Placement Stats */
        .placement-stats {
            padding: 80px 0;
            background: white;
            margin-top: -50px;
            position: relative;
            z-index: 20;
        }

        .stats-grid {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 30px;
        }

        .stat-card {
            background: linear-gradient(135deg, #fafafa, #f0f0f0);
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            border: 2px solid #e8e8e8;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--maroon), var(--green));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .stat-card:hover::before {
            transform: scaleX(1);
        }

        .stat-card:hover {
            transform: translateY(-10px);
            border-color: var(--maroon);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            background: white;
        }

        .stat-icon {
            width: 70px;
            height: 70px;
            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: 32px;
            color: white;
        }

        .stat-number {
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--maroon);
            margin-bottom: 8px;
        }

        .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: 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: 3rem;
            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;
        }

        /* Top Recruiters */
        .recruiters-section {
            padding: 100px 0;
            background: #fafafa;
        }

        .recruiters-grid {
            /* max-width: 1300px; */
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 30px;
        }

        .recruiter-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.06);
            transition: all 0.3s ease;
            height: 140px;
            border: 2px solid transparent;
        }

        .recruiter-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
            border-color: var(--maroon);
        }

        .recruiter-logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--maroon);
            text-align: center;
        }

        /* Placement Process */
        .process-section {
            padding: 100px 0;
            background: white;
        }

        .process-steps {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .process-card {
            background: linear-gradient(135deg, #fafafa, #f5f5f5);
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            position: relative;
            transition: all 0.4s ease;
            border: 2px solid #e8e8e8;
        }

        .process-card::after {
            content: '→';
            position: absolute;
            right: -35px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2rem;
            color: var(--maroon);
            font-weight: 900;
        }

        .process-card:last-child::after {
            display: none;
        }

        .process-card:hover {
            transform: translateY(-10px);
            background: white;
            border-color: var(--maroon);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .process-number {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, var(--green), #52a045);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            font-weight: 900;
        }

        .process-card h4 {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--maroon);
            margin-bottom: 12px;
        }

        .process-card p {
            font-size: 0.95rem;
            color: var(--text-gray);
            line-height: 1.7;
        }

        /* Training Programs */
        .training-section {
            padding: 100px 0;
            background: #fafafa;
        }

        .training-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
        }

        .training-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
        }

        .training-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .training-icon-wrapper {
            padding: 40px;
            background: linear-gradient(135deg, var(--maroon), #8b2329);
            text-align: center;
            position: relative;
        }

        .training-icon-wrapper::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 20px solid transparent;
            border-right: 20px solid transparent;
            border-top: 20px solid #8b2329;
        }

        .training-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .training-icon i {
            font-size: 40px;
            color: white;
        }

        .training-content {
            padding: 50px 30px 30px;
        }

        .training-content h4 {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--maroon);
            margin-bottom: 15px;
        }

        .training-content p {
            font-size: 1rem;
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .training-features {
            list-style: none;
            padding: 0;
        }

        .training-features li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
            font-size: 0.95rem;
            color: var(--text-gray);
        }

        .training-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--green);
            font-weight: 900;
            font-size: 1.2rem;
        }

        /* Package Distribution */
        .package-section {
            padding: 100px 0;
            background: white;
        }

        .package-chart-wrapper {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .package-bars {
            background: white;
            padding: 50px;
            border-radius: 25px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.1);
        }

        .package-bar-item {
            margin-bottom: 35px;
        }

        .package-bar-item:last-child {
            margin-bottom: 0;
        }

        .package-label-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
        }

        .package-label {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--maroon);
        }

        .package-percentage {
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--green);
        }

        .package-bar-bg {
            height: 35px;
            background: #f0f0f0;
            border-radius: 50px;
            overflow: hidden;
            position: relative;
        }

        .package-bar-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--maroon), var(--green));
            border-radius: 50px;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            padding-right: 15px;
            color: white;
            font-weight: 700;
            transition: width 1s ease;
        }

        /* Testimonials */
        .testimonials-section {
            padding: 100px 0;
            background: #fafafa;
        }

        .testimonials-slider {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .testimonial-card {
            background: white;
            padding: 45px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            margin-bottom: 30px;
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 25px;
            margin-bottom: 25px;
        }

        .testimonial-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            border: 4px solid var(--maroon);
        }

        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-info h4 {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--maroon);
            margin-bottom: 5px;
        }

        .testimonial-info .company {
            font-size: 1rem;
            color: var(--green);
            font-weight: 700;
            margin-bottom: 3px;
        }

        .testimonial-info .package {
            font-size: 0.9rem;
            color: var(--text-gray);
            font-weight: 600;
        }

        .testimonial-text {
            font-size: 1.1rem;
            color: var(--text-gray);
            line-height: 1.9;
            font-style: italic;
            position: relative;
            padding-left: 30px;
        }

        .testimonial-text::before {
            content: '"';
            position: absolute;
            left: 0;
            top: -10px;
            font-size: 4rem;
            color: var(--maroon);
            opacity: 0.2;
            font-family: Georgia, serif;
        }

        /* Contact CTA */
        .contact-cta {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--maroon), #4a1014);
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .contact-cta::before {
            content: '';
            position: absolute;
            top: -150px;
            right: -150px;
            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;
            position: relative;
            z-index: 2;
            padding: 0 20px;
        }

        .cta-content h3 {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 20px;
        }

        .cta-content p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.95;
        }

        .cta-details {
            display: flex;
            justify-content: center;
            gap: 50px;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        .cta-detail-item {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1.2rem;
        }

        .cta-detail-item i {
            font-size: 2rem;
            color: var(--white);
        }

        .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);
        }

        /* Team Section */
        .team-section {
            padding: 100px 0;
            background: white;
        }

        .team-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .team-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            text-align: center;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .team-image {
            height: 280px;
            overflow: hidden;
            background: linear-gradient(135deg, var(--maroon), #8b2329);
        }

        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .team-card:hover .team-image img {
            transform: scale(1.1);
        }

        .team-content {
            padding: 30px;
        }

        .team-content h4 {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--maroon);
            margin-bottom: 8px;
        }

        .team-content .designation {
            font-size: 1rem;
            color: var(--green);
            font-weight: 700;
            margin-bottom: 15px;
        }

        .team-content .contact-info {
            font-size: 0.95rem;
            color: var(--text-gray);
        }

        .team-content .contact-info i {
            margin-right: 8px;
            color: var(--maroon);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .stats-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .recruiters-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .process-steps {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-card::after {
                display: none;
            }

            .training-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }

            .section-heading h2 {
                font-size: 2rem;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .recruiters-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-steps {
                grid-template-columns: 1fr;
            }

            .training-grid {
                grid-template-columns: 1fr;
            }

            .team-grid {
                grid-template-columns: 1fr;
            }

            .package-bars {
                padding: 30px;
            }
        }