: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;
}
 /* Stats Section */
        .stats-section {
            padding: 80px 0;
            background: white;
            margin-top: -50px;
            position: relative;
            z-index: 20;
        }

        .stats-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(4, 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;
        }

        .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: 3rem;
            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;
        }

        /* Services Grid */
        .services-section {
            padding: 100px 0;
            background: #fafafa;
        }

        .services-grid {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
        }

        .service-card {
            background: white;
            border-radius: 20px;
            padding: 45px 35px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            border-top: 4px solid var(--green);
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .service-icon {
            width: 90px;
            height: 90px;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, var(--green), #52a045);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
        }

        .service-card:hover .service-icon {
            transform: rotateY(360deg);
        }

        .service-icon i {
            font-size: 45px;
            color: white;
        }

        .service-card h4 {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--maroon);
            margin-bottom: 15px;
            text-align: center;
        }

        .service-card p {
            font-size: 1rem;
            color: var(--text-gray);
            line-height: 1.8;
            text-align: center;
            margin-bottom: 20px;
        }

        .service-features {
            list-style: none;
            padding: 0;
        }

        .service-features li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
            font-size: 0.95rem;
            color: var(--text-gray);
        }

        .service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--green);
            font-weight: 900;
            font-size: 1.2rem;
        }

        /* Counseling Section */
        .counseling-section {
            padding: 100px 0;
            background: white;
        }

        .counseling-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .counseling-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .counseling-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }

        .counseling-content h3 {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--maroon);
            margin-bottom: 20px;
        }

        .counseling-content p {
            font-size: 1.1rem;
            color: var(--text-gray);
            line-height: 1.9;
            margin-bottom: 30px;
        }

        .counseling-types {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .counseling-type {
            background: linear-gradient(135deg, #fafafa, #f5f5f5);
            padding: 20px;
            border-radius: 15px;
            border-left: 4px solid var(--green);
        }

        .counseling-type h5 {
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--maroon);
            margin-bottom: 8px;
        }

        .counseling-type p {
            font-size: 0.95rem;
            margin: 0;
        }

        /* Team Section */
        .team-section {
            padding: 100px 0;
            background: #fafafa;
        }

        .team-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .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: 250px;
            overflow: hidden;
            background: linear-gradient(135deg, var(--maroon), #8b2329);
        }

        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-content {
            padding: 25px;
        }

        .team-content h4 {
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--maroon);
            margin-bottom: 5px;
        }

        .team-role {
            font-size: 0.95rem;
            color: var(--green);
            font-weight: 700;
            margin-bottom: 10px;
        }

        .team-contact {
            font-size: 0.9rem;
            color: var(--text-gray);
        }

        .team-contact i {
            color: var(--maroon);
            margin-right: 5px;
        }

        /* Resources Section */
        .resources-section {
            padding: 100px 0;
            background: white;
        }

        .resources-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 35px;
        }

        .resource-card {
            background: linear-gradient(135deg, #fafafa, #f5f5f5);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.06);
            transition: all 0.4s ease;
        }

        .resource-card:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 40px rgba(0,0,0,0.12);
        }

        .resource-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .resource-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--maroon), #8b2329);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .resource-icon i {
            font-size: 35px;
            color: white;
        }

        .resource-card h4 {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--maroon);
        }

        .resource-card p {
            font-size: 1rem;
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .resource-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--green);
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .resource-link:hover {
            gap: 12px;
            color: var(--maroon);
        }

        /* Contact Support */
        .contact-support-section {
            padding: 100px 0;
            background: #fafafa;
        }

        .contact-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .contact-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        .contact-card {
            background: white;
            padding: 35px 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
        }

        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .contact-card-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, var(--green), #52a045);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-card-icon i {
            font-size: 35px;
            color: white;
        }

        .contact-card h4 {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--maroon);
            margin-bottom: 15px;
        }

        .contact-card p {
            font-size: 1rem;
            color: var(--text-gray);
            margin-bottom: 8px;
        }

        .contact-card a {
            color: var(--green);
            font-weight: 700;
            text-decoration: none;
        }

        .contact-card a:hover {
            color: var(--maroon);
        }

        /* Emergency Contacts */
        .emergency-section {
            background: white;
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border: 3px solid #e74c3c;
        }

        .emergency-section h4 {
            font-size: 1.8rem;
            font-weight: 900;
            color: #e74c3c;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .emergency-section h4 i {
            font-size: 2rem;
        }

        .emergency-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .emergency-item {
            background: #fff5f5;
            padding: 20px;
            border-radius: 15px;
            border-left: 4px solid #e74c3c;
        }

        .emergency-item h5 {
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--maroon);
            margin-bottom: 8px;
        }

        .emergency-item p {
            font-size: 1.2rem;
            font-weight: 700;
            color: #e74c3c;
            margin: 0;
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--maroon), #4a1014);
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .cta-section::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: 800px;
            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-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);
            margin: 0 10px;
        }

        .cta-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
            color: var(--maroon);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .team-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .counseling-container {
                grid-template-columns: 1fr;
            }

            .counseling-types {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }

            .section-heading h2 {
                font-size: 2rem;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .resources-grid {
                grid-template-columns: 1fr;
            }

            .contact-cards {
                grid-template-columns: 1fr;
            }

            .emergency-grid {
                grid-template-columns: 1fr;
            }
        }