/* ===== EDITORIAL ABOUT SECTION ===== */

.about-editorial {
    padding: 90px 0;
    background: #ffffff;
}

/* LEFT NAV */
.about-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-nav li {
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
    cursor: pointer;
}

.about-nav li.active {
    color: #000;
    font-weight: 600;
}

/* HEADING */
.about-heading {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

/* PARAGRAPH */
.about-paragraph {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
    max-width: 720px;
    margin-bottom: 20px;
}

/* MAIN IMAGE */
.about-wide-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/* QUOTE */
.about-quote-box {
    max-width: 520px;
}

.quote-mark {
    font-size: 60px;
    font-weight: bold;
    display: block;
    line-height: 1;
}

.about-quote {
    font-size: 22px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 10px;
}

.quote-author {
    font-size: 13px;
    color: #777;
}

/* SIDE IMAGE */
.about-side-image {
    max-width: 360px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .about-heading {
        font-size: 36px;
    }

    .about-wide-image {
        height: 300px;
    }

    .about-quote {
        font-size: 20px;
    }

    .about-side-image {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .about-heading {
        font-size: 28px;
    }
.about-editorial {
    padding: 30px 0;
    background: #ffffff;
}
    .about-paragraph {
        font-size: 14px;
    }

    .about-wide-image {
        height: 240px;
    }
}
/* ===== LEADERSHIP CARD SECTION ===== */

.leadership-heading {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* CEO CARD */
.leader-ceo-card {
    border-radius: 14px;
    border: none;
    box-shadow: 0 14px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.leader-ceo-card:hover {
    transform: translateY(-6px);
}

.leader-ceo-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    margin: 20px;
}

.leader-role {
    font-size: 14px;
    color: #777;
}

.leader-exp {
    color: #c0392b;
    font-weight: 600;
}

.leader-exp small {
    display: block;
    color: #777;
}
.namespan{
    font-size: 1.25rem!important;
}

/* TEAM CARDS */
.leader-card {
    border: none;
    border-radius: 14px;
    padding-top: 25px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 45px rgba(0,0,0,0.12);
}

/* ======================================================
   IMAGE CIRCLE – SAME TO SAME DESIGN (RED / BLUE)
====================================================== */

/* ==============================
   EXACT ROUND SLICE DESIGN
================================ */

.leader-img-circle {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    background: #ffffff;
    padding: 6px;
}

/* INNER IMAGE */
.leader-img-circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 3;
}

/* WHITE GAP */
.leader-img-circle::before {
    content: "";
    position: absolute;
    inset: -8px;
    background: #ffffff;
    border-radius: 50%;
    z-index: 2;
}

/* OUTER RING WITH ROUNDED BLUE SLICE */
.leader-img-circle::after {
    content: "";
    position: absolute;
    inset: -18px;
    border-radius: 50%;
    z-index: 1;

    background:
        radial-gradient(circle at 30% 20%, transparent 58%, #1f3c88 60% 72%, transparent 74%),
        conic-gradient(
            #c62828 0deg 360deg
        );
}


/* TEXT STYLING */
.leader-card h5 {
    font-weight: 600;
    margin-top: 18px;
}

.leader-card span {
    font-size: 14px;
    color: #777;
    display: block;
    margin-bottom: 10px;
}

.leader-card p {
    font-size: 14px;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .leader-ceo-card {
        text-align: center;
    }

    .leader-ceo-img {
        margin: 20px auto;
    }
}

