/* --- LEADERSHIP SLIDER SECTION --- */
.leadership-slider-section {
    color: #fff;
    padding: 6rem 0;
    margin: auto;
    max-width: 1400px;
}

.leadership-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 90%;
    max-width: 90%;
    margin: 0 auto 4rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.leadership-title-col {
    flex: 1;
    min-width: 300px;
}

.leadership-heading {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #111;
}

.highlight-red {
    color: var(--color-accent);
    /* text-decoration: underline; 
       text-decoration-color: var(--color-accent);
       text-decoration-thickness: 3px; */
    /* Using span for cleaner control if needed, but the design shows an underline below */
}

.heading-underline {
    width: 100%;
    max-width: 400px;
    height: 4px;
    background-color: var(--color-accent);
    /* Red */
}

.leadership-desc-col {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.leadership-desc-col p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}



.leadership-container {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 4rem;
    max-width: 90%;
    margin: 0 auto;
    align-items: center;
}

/* Left Side - Info */
.leadership-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    position: relative;
    min-height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    padding: 35px;
    border-radius: 15px;
}

.leadership-subtitle {
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: var(--color-accent);
    font-weight: 600;
}

.leadership-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.leadership-position {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: #888;
    font-weight: 500;
}

.leadership-name {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
    color: #111;
}

.leadership-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.leadership-tags .tag {
    background: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 1px;
    font-weight: 500;
}

.leadership-bio {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    max-width: 500px;
}

.leadership-cta {
    background: var(--color-accent);
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.leadership-cta:hover {
    background: #111;
    color: #fff;
}

/* Navigation Arrows */
.leadership-nav {
    display: flex;
    gap: 1rem;
    position: absolute;
    bottom: 17%;
    right: 10%;
}

.leadership-prev,
.leadership-next {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid #444;
    color: #111;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leadership-prev:hover,
.leadership-next:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
}

/* Right Side - Slider */
.leadership-slider {
    position: relative;
    overflow: visible;
}

.leadership-swiper {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.leadership-swiper .swiper-wrapper {
    align-items: center;
}

.leadership-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: scale(1) !important;
    border-radius: 15px;
    overflow: hidden;
}

.leadership-swiper .swiper-slide.swiper-slide-active {
    opacity: 1;
    transform: scale(1) !important;
    z-index: 10;
}

.leadership-swiper .swiper-slide-active .leader-image-wrapper img {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Grayscale effect for inactive slides */
.leadership-swiper .swiper-slide:not(.swiper-slide-active) .leader-image-wrapper img {
    filter: grayscale(0%);
}

.leadership-swiper .swiper-slide-active .leader-image-wrapper img {
    filter: grayscale(0%);
}

.leader-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.leader-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: filter 0.6s ease;
}

.image-plus {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--color-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.image-plus:hover {
    background: #fff;
    color: #000;
    transform: rotate(90deg);
}

/* Fade Animation Classes */
.fade-out {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fade-in {
    opacity: 1;
    transition: opacity 0.3s ease 0.3s;
}

/* Responsive */
@media (min-width: 1450px) {
    .leadership-slider {
        height: 80vh;
        max-height: 700px;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .leadership-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* .leadership-slider {
        height: 60vh;
    } */

    .leadership-name {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .leadership-name {
        font-size: 2.5rem;
    }

    /* .leadership-slider {
        height: 50vh;
    } */
}