 :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;
} 
/* Overview Section */
        .overview-section {
            padding: 80px 0;
            background: var(--white);
            margin-top: -60px;
            position: relative;
            z-index: 20;
        }

        .overview-container {
            background: var(--white);
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 10px 50px rgba(0,0,0,0.1);
        }

        .overview-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .overview-text h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--black);
            margin-bottom: 20px;
        }

        .overview-text p {
            font-size: 1.05rem;
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .overview-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .overview-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-tag {
            display: inline-block;
            background: var(--maroon);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .section-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 800;
            color: var(--black);
            margin-bottom: 15px;
        }

        .section-desc {
            font-size: 1.1rem;
            color: var(--text-gray);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Objectives Section */
        .objectives-section {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .objectives-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .objective-card {
            background: var(--white);
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            border: 2px solid var(--border-light);
            transition: all 0.3s ease;
        }

        .objective-card:hover {
            transform: translateY(-10px);
            border-color: var(--maroon);
            box-shadow: 0 15px 40px rgba(112, 24, 31, 0.15);
        }

        .objective-icon {
            width: 80px;
            height: 80px;
            background: var(--maroon);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: all 0.3s ease;
        }

        .objective-card:hover .objective-icon {
            background: var(--green);
            transform: scale(1.1);
        }

        .objective-icon i {
            font-size: 2rem;
            color: var(--white);
        }

        .objective-card h4 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 15px;
        }

        .objective-card p {
            font-size: 1rem;
            color: var(--text-gray);
            line-height: 1.7;
        }

        /* Industries Section */
        .industries-section {
            padding: 80px 0;
            background: var(--white);
        }

        .industries-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .industry-card {
            background: var(--light-bg);
            border-radius: 15px;
            padding: 30px 25px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .industry-card:hover {
            background: var(--maroon);
            border-color: var(--maroon);
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(112, 24, 31, 0.2);
        }

        .industry-icon {
            font-size: 3rem;
            color: var(--maroon);
            margin-bottom: 15px;
        }

        .industry-card:hover .industry-icon {
            color: var(--white);
        }

        .industry-card h5 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 10px;
        }

        .industry-card:hover h5 {
            color: var(--white);
        }

        .industry-card p {
            font-size: 0.9rem;
            color: var(--text-gray);
            line-height: 1.5;
        }

        .industry-card:hover p {
            color: rgba(255, 255, 255, 0.9);
        }

        /* Gallery Section */
        .gallery-section {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .gallery-grid-1 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .gallery-item-1 {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            position: relative;
            height: 300px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .gallery-item-1:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .gallery-item-1 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: rgba(112, 24, 31, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .gallery-item-1:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay-text {
            color: var(--white);
            text-align: center;
            padding: 20px;
        }

        .gallery-overlay-text h5 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .gallery-overlay-text p {
            font-size: 0.95rem;
        }

        /* Benefits Section */
        .benefits-section {
            padding: 80px 0;
            background: var(--black);
        }

        .section-header.light .section-tag {
            background: var(--white);
            color: var(--black);
        }

        .section-header.light .section-title {
            color: var(--white);
        }

        .section-header.light .section-desc {
            color: rgba(255, 255, 255, 0.8);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .benefit-card {
            background: var(--white);
            border-radius: 15px;
            padding: 35px;
            display: flex;
            align-items: start;
            gap: 25px;
            transition: all 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(112, 24, 31, 0.2);
        }

        .benefit-icon-box {
            width: 60px;
            height: 60px;
            background: var(--maroon);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .benefit-icon-box i {
            font-size: 1.8rem;
            color: var(--white);
        }

        .benefit-text h5 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 10px;
        }

        .benefit-text p {
            font-size: 0.95rem;
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* Process Section */
        .process-section {
            padding: 80px 0;
            background: var(--white);
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .process-step {
            text-align: center;
            position: relative;
        }

        .process-step::after {
            content: '';
            position: absolute;
            top: 40px;
            right: -15px;
            width: 30px;
            height: 3px;
            background: var(--green);
        }

        .process-step:last-child::after {
            display: none;
        }

        .process-number {
            width: 80px;
            height: 80px;
            background: var(--maroon);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 800;
            margin: 0 auto 20px;
        }

        .process-step h5 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 10px;
        }

        .process-step p {
            font-size: 0.9rem;
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* Stats Section */
        .stats-section {
            padding: 80px 0;
            background: var(--green);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            text-align: center;
        }

        .stat-item {
            padding: 20px;
        }

        .stat-icon {
            font-size: 3rem;
            color: var(--white);
            margin-bottom: 15px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .testimonial-card {
            background: var(--white);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .testimonial-text {
            font-size: 1.05rem;
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 25px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            background: var(--maroon);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
        }

        .author-info h5 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 3px;
        }

        .author-info p {
            font-size: 0.9rem;
            color: var(--text-gray);
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: var(--maroon);
            text-align: center;
        }

        .cta-content h3 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            color: var(--white);
            margin-bottom: 20px;
        }

        .cta-content p {
            font-size: 1.2rem;
            color: var(--white);
            margin-bottom: 35px;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--white);
            color: var(--maroon);
            padding: 18px 45px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .cta-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            background: var(--green);
            color: var(--white);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .objectives-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .industries-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .gallery-grid-1 {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .overview-content {
                grid-template-columns: 1fr;
            }

            .objectives-grid {
                grid-template-columns: 1fr;
            }

            .industries-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .gallery-grid-1 {
                grid-template-columns: 1fr;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .process-grid {
                grid-template-columns: 1fr;
            }

            .process-step::after {
                display: none;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .industries-grid {
                grid-template-columns: 1fr;
            }
        }