/* ============================================
   MODERN LEADERSHIP PAGE
   ============================================ */

/* Leadership Hero Section */
.leadership-hero {
    position: relative;
    background-image: linear-gradient(135deg, rgba(31, 41, 55, 0.9) 0%, rgba(17, 24, 39, 0.95) 100%), 
                      url('../img/it1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10rem 2rem 6rem;
    margin-top: 65px;
    overflow: hidden;
}

.leadership-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.leadership-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.leadership-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 2rem;
    color: #60a5fa;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.leadership-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.leadership-hero-title .text-blue {
    color: #3b82f6;
}

.leadership-hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    color: #9ca3af;
    line-height: 1.6;
    margin: 0;
}

/* Leadership Intro Section */
.leadership-intro-section {
    padding: 3rem 2rem;
    background: #ffffff;
}

.intro-text-center {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.section-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* Leadership Team Section */
.leadership-team-section {
    padding: 3rem 2rem;
    background: #f9fafb;
}

.leader-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.leader-card:hover {
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.12);
    border-color: #3b82f6;
}

.leader-card-reverse {
    grid-template-columns: 1fr 300px;
}

.leader-card-reverse .leader-image-wrapper {
    order: 2;
}

.leader-card-reverse .leader-content {
    order: 1;
}

/* Leader Image */
.leader-image-wrapper {
    position: relative;
}

.leader-image {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.leader-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.leader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9) 0%, rgba(37, 99, 235, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.leader-image:hover .leader-overlay {
    opacity: 1;
}

.leader-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #ffffff;
    color: #3b82f6;
}

/* Leader Content */
.leader-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.leader-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid #e5e7eb;
}

.leader-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
}

.leader-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #3b82f6;
    font-weight: 600;
    margin: 0;
}

.leader-badge-role {
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
    border-radius: 2rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.leader-bio {
    flex: 1;
}

.leader-bio p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 0.875rem;
}

.leader-bio p:last-child {
    margin-bottom: 0;
}

.leader-highlights {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1.25rem;
    border-top: 2px solid #e5e7eb;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e5e7eb;
    border-radius: 2rem;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.highlight-item i {
    font-size: 1.125rem;
    color: #3b82f6;
}

.highlight-item span {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1f2937;
}

/* CTA Section */
.leadership-cta-section {
    padding: 3rem 2rem;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.leadership-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

.btn-cta:hover {
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.5);
    color: #ffffff;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .leader-card,
    .leader-card-reverse {
        grid-template-columns: 1fr;
    }

    .leader-card-reverse .leader-image-wrapper {
        order: 1;
    }

    .leader-card-reverse .leader-content {
        order: 2;
    }

    .leader-image img {
        height: 350px;
    }
}

@media screen and (max-width: 768px) {
    .leadership-hero {
        padding: 8rem 1.5rem 4rem;
    }

    .leadership-hero-title {
        font-size: 2.5rem;
    }

    .leadership-hero-subtitle {
        font-size: 1rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .leader-card {
        padding: 2rem 1.5rem;
    }

    .leader-name {
        font-size: 1.5rem;
    }

    .leader-header {
        flex-direction: column;
        gap: 1rem;
    }

    .leader-highlights {
        flex-direction: column;
        gap: 0.75rem;
    }

    .highlight-item {
        width: 100%;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .leadership-hero-title {
        font-size: 2rem;
    }

    .section-heading {
        font-size: 1.75rem;
    }

    .leader-image img {
        height: 300px;
    }
}
