.leadership-section .left-text-box {
    max-width: calc(100% - 540px);
    width: 100%;
}
.leadership-section .right-card {
    max-width: 498px;
    margin-left: auto;
    width: 100%;
}
.leadership-section .leader-title {
    margin-bottom: 40px;
    color: #060534;
}
.leadership-section .leader-paragraph, 
.leadership-section .leader-paragraph p {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -0.0025em;
    color: #535366;
}
.leadership-section .leader-paragraph p:last-child{
    margin-bottom: 0;
}
/* -----------------------------------------
   STATS BOX
----------------------------------------- */
.leadership-section .stats-box-row{
    display: flex;
    gap: 24px;
    margin-top: 40px;
}
.leadership-section .stats-box {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
    background: #FFFFFF;
    border: 1px solid rgba(15, 14, 90, 0.12);
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 241px;
    max-width: 50%;
}
.leadership-section .stats-box:hover {
    transform: translateY(-4px);
    border-color: #cfcfcf;
}
.leadership-section .stat-number {
    font-weight: 300;
    color: #0F0E5A;
    margin-bottom: 8px;
}
.leadership-section .stats-box .stats-box-icon{
    width: 48px;
    margin-bottom: 24px;
}
.leadership-section .stats-box .stats-box-icon img {
    width: 48px;
}
.leadership-section .stat-label {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 0;
    color: #535366;
}

/* -----------------------------------------
   TESTIMONIAL CARD
----------------------------------------- */

.leadership-section .testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 0px;
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #D6D6D6;
    border-radius: 12px;
    align-self: stretch;
}
.leadership-section .testimonial-card img{
    border-radius: 8px;
}
.leadership-section .testimonial-text {
    color: #535366;
    margin: 24px 0;
}
.leadership-section .author-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
.leadership-section .author-name {
    margin: 0;
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    color: #060534;
}
.leadership-section .author-position {
    margin: 0;
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    color: #535366;
}
/* -----------------------------------------
   RESPONSIVE CSS
----------------------------------------- */

/* LARGE TABLETS (≤ 991px) */
@media (max-width: 991px) {
    .leadership-section .left-text-box {
        max-width: 100%;
    }
    .leadership-section .right-card {
        max-width: 100%;
    }
    .leadership-section .leader-title {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 16px;
    }
    .leadership-section .leader-paragraph, .leadership-section .leader-paragraph p {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0;
    }
    .leadership-section .stats-box-row {
        gap: 16px;
        margin-top: 16px;
    }
    .leadership-section .author-name {
        font-size: 16px;
        line-height: 20px;
    }
    .leadership-section .stats-box {
        padding: 16px !important;
        width: 100%;
        border-radius: 12px;
    }
    .leadership-section .stats-box .stats-box-icon {
        width: 24px;
        margin-bottom: 16px;
    }
    .leadership-section .stats-box .stats-box-icon img {
        width: 24px;
    }
    .leadership-section .stat-number {
        font-size: 16px;
        line-height: 20px;
    }
    .leadership-section .stat-label {
        font-size: 14px;
    }
    .leadership-section .testimonial-card {
        margin-top: 16px;
        padding: 16px
    }
    .leadership-section .testimonial-card img {
        height: 39vw;
        object-fit: cover;
    }
    .leadership-section .testimonial-text {
        font-size: 14px;
        margin: 16px 0;
        line-height: 20px;
    }
}


