/* Leadership Section Styles */
.leadership-section {
    padding: 80px 0;
    background-color: #ffffff;
    border-top: 1px solid #eee;
}

.leadership-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.leadership-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.leadership-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    justify-content: center;
}

.leader-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    padding-bottom: 30px;
    border: 1px solid #f0f0f0;
    position: relative;
}

.leader-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-blue);
}

.leader-image-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    background-color: #e0e0e0;
}

.leader-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(5, 28, 44, 0.6));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.leader-card:hover .leader-image-wrapper::after {
    opacity: 1;
}

.leader-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.leader-card:hover .leader-image {
    transform: scale(1.1);
}

.leader-info {
    padding: 0 25px;
    transition: transform 0.4s ease;
}

.leader-card:hover .leader-info {
    transform: translateY(-5px);
}

.leader-name {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.leader-card:hover .leader-name {
    color: var(--accent-blue);
}

.leader-role {
    display: block;
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.leader-bio {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.leader-credentials {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.credential-badge {
    background-color: #f5f7fa;
    color: #555;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #e1e4e8;
    transition: all 0.3s ease;
}

.leader-card:hover .credential-badge {
    background-color: var(--accent-blue);
    color: white;
    border-color: var(--accent-blue);
    transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .leadership-grid {
        grid-template-columns: 1fr;
    }

    .leader-image-wrapper {
        height: 350px;
    }
}