* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Source Sans Pro", sans-serif;
    ;
}

body {
    width: 100%;
    background: #f5f5f5;
    overflow-x: hidden;
    font-family: "Source Sans Pro", sans-serif;
    ;
}

:root {
    --fs-54: clamp(36px, 3vw, 54px);
    --fs-40: clamp(26.667px, 2.222vw, 40px);
    --fs-36: clamp(24px, 2vw, 36px);
    --fs-20: clamp(13.333px, 1.111vw, 20px);
    --fs-18: clamp(12px, 1vw, 18px);
    --fs-16: clamp(10.667px, .889vw, 16px);
}

.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    max-width: 1200px;
    margin: auto;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px 0 42px;
}

.logo {
    font-size: 14px;
    color: #f36c21;
    font-weight: bold;
}

.logo-img {
    display: block;
    width: 160px;
    height: auto;
    margin-left: auto;
}

.nav-links {
    display: flex;
    gap: 40px;
    margin-right: 150px;
}

.nav-links a {
    text-decoration: none;
    color: #555d69;
    font-size: 16px;
    font-weight: 400;
}

.nav-links a.active {
    color: #f36c21;
    font-weight: 600;
}

.menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.menu-icon {
    width: 18px;
    height: 18px;
    display: block;
    object-fit: contain;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ─── UNIFIED CONTENT CONTAINER ──────────────────── */
.fc-container {
    width: 100%;
    max-width: 1460px;
    margin-inline: auto;
    padding-inline: 70px;
}

/* column-flex layout for centred sections */
.purpose-section .fc-container,
.values-section .fc-container,
.leaders-section .fc-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* row layout for mission */
.mission-section .fc-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

/* Main Section */
.about-section {
    width: 100%;
    height: 100vh;
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 55px;
    background: url("https://pa-cdn.freecharge.in/pwa-static/pwa/images/aboutUs/background.png") no-repeat center / cover;
}

.background-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.about-text {
    margin-top: 10px;
    font-size: 20px;
    font-weight: 600;
    color: black;
    margin-bottom: 18px;
}

.about-text span {
    color: #f26b21;
}

.main-heading {
    max-width: 1320px;
    font-size: var(--fs-54);
    font-weight: 400;
    line-height: 1.16;
    color: #222;
    padding: 0 100px;
}

.phone-slider {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-75%);
    width: min(1400px, 78vw);
    height: auto;
}

.phone-image {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateX(25%);
    opacity: 0;
    transition: opacity .8s ease;
}

.phone-image.active-phone {
    opacity: 1;
}

.purpose-section {
    width: 100%;
    padding: 80px 0;
    background: #f5f5f5;
}

.purpose-heading {
    line-height: 120%;
    font-size: var(--fs-40);
    font-weight: 600;
    color: #222;
    margin-bottom: 12px;
}

.purpose-heading span {
    color: #f26b21;
}

.purpose-subheading {
    font-size: 18px;
    color: #666;
    margin-bottom: 70px;
}

.purpose-cards {
    width: 100%;
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: nowrap;
}

.purpose-card {
    flex: 1;
    min-width: 0;
    height: 295px;
    background: #fff;
    border: 1px solid #f2d6c7;
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f26b21;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    margin-bottom: 24px;
}

.purpose-card h3 {
    font-size: 20px;
    color: #222;
    margin-bottom: 18px;
}

.purpose-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    padding: 0 8px;
}

/* MISSION SECTION */
.mission-section {
    width: 100%;
    padding: 60px 0;
    background: #f5f5f5;
}

/* LEFT CONTENT */
.mission-content {
    width: 52%;
}

.mission-heading {
    /* font-size: var(--fs-40); */
    font-size: 40px;
    line-height: 100%;
    font-weight: 700;
    color: #111;
    margin-bottom: 22px;
}

.mission-heading span {
    color: #f26b21;
}

.mission-description {
    font-size: 18px;
    line-height: 1.55;
    color: #666;
    margin-bottom: 40px;
    max-width: 620px;
}

/* FEATURES */
.mission-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    min-width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    margin-top: 3px;
}

.feature-item h4 {
    font-size: 20px;
    color: #111;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 16px;
    line-height: 1.625;
    color: #666;
    max-width: 500px;
}

/* Slider Dots */
.mission-image-container {
    width: 44%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mission-slider {
    width: 420px;
    height: 520px;
    position: relative;
    overflow: visible;
    border-radius: 30px;
}

.mission-card {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.7s ease;
    z-index: 1;
}

.mission-card img {
    width: 488px;
    height: 542px;
    object-fit: contain;
    border-radius: 30px;
}

/* ACTIVE IMAGE */
.mission-card.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 3;
    cursor: pointer;
}

.mission-card.next {
    opacity: .35;
    transform:
        translateX(35px) scale(.94);
    z-index: 2;
}

/* PREVIOUS */
.mission-card.prev {
    opacity: 0;
    transform:
        translateX(-60px) scale(.88);
    z-index: 1;
}

/* DOTS */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(80, 70, 60, 0.7);
    border-radius: 30px;
    backdrop-filter: blur(8px);
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: all .35s ease;
}

.dot.active-dot {
    width: 24px;
    border-radius: 20px;
    background: #fff;
}

/* VALUES SECTION */
.values-section {
    width: 100%;
    padding: 50px 0 70px;
    overflow: visible;
    background: linear-gradient(to bottom,
            #f5f5f5 0%,
            #f1f1f1 25%,
            #ececec 60%,
            #f3f5f7 100%);
}

.values-heading {
    font-size: var(--fs-40);
    margin-bottom: 12px;
}

.values-heading span {
    color: #f26b21;
}

.values-subheading {
    font-size: var(--fs-18);
    color: #666;
    margin-bottom: 40px;
}

/* WRAPPER */
.values-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
    padding: 0;
}

/* SLIDER */
.values-slider {
    width: 100%;
    padding: 0;
    display: flex;
    align-items: flex-start;
    min-height: 260px;
    overflow: visible;
    grid-template-columns: repeat(5, 1fr);
    align-items: start;
    justify-content: space-between;
    gap: clamp(33px, 2.778vw, 50px);
    position: relative;
    z-index: 2;
}

.value-card {
    position: relative;
    width: clamp(90px, 7.5vw, 135px);
    min-width: 0;
    flex-shrink: 0;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    transition:
        width .65s cubic-bezier(.22, 1, .36, 1),
        transform .65s cubic-bezier(.22, 1, .36, 1),
        opacity .4s ease;
    z-index: 1;
}

.value-card.active {
    width: clamp(326px, 23.889vw, 430px);
    background: #fff;
    border-radius: 40px;
    padding: clamp(21px, 1.778vw, 32px);
    justify-content: space-between;
    transform: translateY(45px);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.06);
    z-index: 100;
}

.value-letter {
    width: clamp(70px, 5.833vw, 105px);
    flex-shrink: 0;
    transition:
        transform .6s cubic-bezier(.22, 1, .36, 1),
        opacity .4s ease;
}

.value-card.active .value-letter {
    transform: scale(1.04);
}

.value-info {
    width: clamp(173px, 14.444vw, 260px);
    opacity: 0;
    transform:
        translateX(-25px);
    /* fast exit — content disappears before next card expands */
    transition:
        opacity .08s ease,
        transform .08s ease;
    pointer-events: none;
}

.value-card.active .value-info {
    opacity: 1;
    transform: translateX(0);
    /* delayed entrance — text waits for card width to open first */
    transition:
        opacity .45s ease .25s,
        transform .6s cubic-bezier(.22, 1, .36, 1) .25s;
}

.value-info h3 {
    font-size: var(--fs-20);
    margin-bottom: 16px;
    color: #222;
}

.value-info p {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
}

/* LABEL */
.value-card:not(.active) {
    cursor: pointer;
}

.value-label {
    position: absolute;
    bottom: -32px;
    left: 100%;
    transform: translateX(-65%);
    width: max-content;
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

.value-card.active .value-label {
    display: none;
}

/* SLIDER CONTAINER */
.leaders-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 38px;
    background: #fff;
    border-radius: 40px;
    padding: 4px 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* BUTTONS */
.slider-btn {
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    font-size: 26px;
    color: #444;
    cursor: pointer;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    color: #f26b21;
}

/* JOIN SECTION */
.join-banner-wrapper {
    width: 100%;
    background: #fff;
    padding: 0 0 100px;
}

.join-section {
    width: 100%;
    padding: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom,
            #ffffff 0%,
            #fcf8f5 20%,
            #f7efe9 60%,
            #f3ece8 100%);
    border: 1px solid #f3d6c8;
    border-radius: 32px;
    overflow: hidden;
}

/* LEFT CONTENT */
.join-content {
    width: 50%;
}

.join-content h2 {
    font-size: var(--fs-54);
    line-height: 1.25;
    color: #222;
    margin-bottom: 26px;
}

.join-content h2 span {
    color: #f26b21;
}

.join-content p {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
    max-width: 500px;
    margin-bottom: 34px;
}

.join-btn {
    display: inline-block;
    padding: 18px 42px;
    border: none;
    border-radius: 14px;
    background: #f26b21;
    color: #fff;
    font-size: var(--fs-16);
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.join-text-mobile {
    display: none;
}

/* RIGHT SIDE */

.join-images {
    width: 45%;
    position: relative;
}

/* ROWS */
.top-row,
.bottom-row {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.bottom-row {
    margin-top: 22px;
}

/* PERSON */
.join-person {
    position: relative;
}

.join-person img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
}

/* LABEL */
.join-person span {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #222;
    white-space: nowrap;
}

/* SHADOW */
.join-shadow {
    width: 420px;
    height: 18px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    margin: 28px auto 0;
}

footer {
    background: #f5f5f5;
}

.footer {
    max-width: 1200px;
    margin: auto;
    min-height: 120px;
    display: flex;
    align-items: center;
    padding: 0 132px 0 0;
}

.footer-logo {
    font-size: 14px;
    color: #f36c21;
    font-weight: bold;
}

.footer-logo-img {
    display: block;
    width: 190px;
    height: auto;
    margin-left: auto;
}

.footer-links {
    margin-left: 50px;
    display: flex;
    gap: 40px;
    margin-right: 120px;
}

.footer-links a {
    text-decoration: none;
    color: #555d69;
    font-size: 16px;
    font-weight: 400;
    white-space: nowrap;
}

.footer-links a.active {
    color: #f36c21;
    font-weight: 600;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: -55px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
}

.social-icons img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}

/* FOOTER BOTTOM */
.footer-bottom {
    border-top: 1px solid #e5e5e5;
    padding: 14px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 100%;
}

.footer-copyright {
    color: #888;
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
}

.footer-certifications {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-certifications img {
    height: 20px;
    width: auto;
    max-width: 100%;
    display: inline-block;
    vertical-align: middle;
    transition: opacity 0.2s ease;
}

.footer-certifications img:hover {
    opacity: 0.8;
}

@media (max-width:620px) {
    body {
        overflow-x: hidden;
    }

    .fc-container {
        padding-inline: 20px;
    }

    /* --- NAVBAR --- */
    .navbar {
        padding: 0 16px;
        height: 56px;
    }

    .logo-img {
        width: 88px;
        margin-left: 0;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 56px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 8px 0 16px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10);
        z-index: 99;
        border-top: 1px solid #f0f0f0;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 13px 24px;
        font-size: 14px;
        border-bottom: 1px solid #f5f5f5;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .menu-btn {
        display: flex;
        width: 32px;
        height: 32px;
    }

    /* VALUES */
    .value-card {
        display: none !important;
    }

    .value-card.active {
        display: flex !important;
    }

    /* LEADERS */
    .leader-card {
        display: none !important;
    }

    .leader-card.active {
        display: block !important;
        width: 100% !important;
        max-width: 320px !important;
        margin: 0 auto;
    }

    .leader-card {
        animation: leaderFade .6s ease;
    }

    @keyframes leaderFade {
        from {
            opacity: 0.9;
            transform: translateX(20px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .container {
        width: 80vw;
    }

    .social-icons {
        margin-left: 10px;
    }

    section,
    div {
        max-width: 100%;
    }

    .footer {
        flex-direction: column;
        align-items: center;
        padding: 20px 16px;
        gap: 16px;
        min-height: unset;
        text-align: center;
    }

    .footer-logo-img {
        margin-left: 0;
        width: 90px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 20px;
        margin-left: 0;
        margin-right: 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(max-content, 1fr));
    }

    .footer-links a {
        white-space: nowrap;
    }

    /* --- FOOTER BOTTOM --- */
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        padding: 14px 16px;
        gap: 12px;
        text-align: center;
    }

    .footer-copyright {
        white-space: normal;
        text-align: center;
    }

    .footer-certifications {
        justify-content: center;
        gap: 10px;
    }

    .footer-certifications img {
        height: 28px;
        width: auto;
        max-width: 100%;
        display: inline-block;
    }

    /* ABOUT */
    .about-section {
        width: 100%;
        /* min-height:100vh; */
        min-height: calc(100vh - 52px);
        padding: 40px 24px 0;
        display: flex;
        flex-direction: column;
        align-items: space-between;
        text-align: center;
        overflow: hidden;
        justify-content: flex-start;
    }

    .background-image {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }

    .about-text {
        font-size: 14px;
    }

    .main-heading {
        max-width: 100%;
        font-size: 24px;
        line-height: 1.55;
        padding: 0;
    }

    /* PHONE */
    .phone-slider {
        position: relative;
        width: 100%;
        flex: none;
        width: 100%;
        display: flex;
        align-items: flex-end;
        /* image bottom pe rahe */
        justify-content: center;
        min-height: 0;
        flex: 1;
        /* max-width:100%; */
        /* height:480px; */
        /* height:260px; */
        /* height:clamp(260px, 45vw, 420px);
    margin-top:10px;
    display:flex;
    justify-content:center;
    align-items:flex-end;
    overflow:hidden; */
    }

    .phone-image {
        width: 308%;
        max-width: none;
        position: absolute;
        bottom: 0;
        left: 55%;
        /* width:min(420px, 140vw); */
        width: auto;
        height: 100%;
        transform: translateX(-52%);
        transform-origin: center bottom;
        object-fit: contain;
        height: 100%;
        width: auto;
        object-fit: contain;
        object-position: center bottom;
    }

    /* PURPOSE */
    .purpose-section {
        padding: 60px 0;
        margin-bottom: -80px;
    }

    .purpose-heading {
        font-size: 28px;
    }

    .purpose-subheading {
        margin-bottom: 40px;
        text-align: center;
        line-height: 1.7;
    }

    .purpose-cards {
        flex-direction: column;
        gap: 18px;
    }

    .purpose-card {
        width: 100%;
    }

    /* MISSION */
    .mission-section {
        padding: 60px 0;
    }

    .mission-section .fc-container {
        flex-direction: column;
        gap: 50px;
    }

    .mission-content {
        width: 100%;
    }

    .mission-heading {
        font-size: 28px;
    }

    .mission-image-container {
        width: 100%;
    }

    .mission-slider {
        width: 280px;
        height: 360px;
    }

    .values-section {
        padding: 60px 0 50px;
        overflow: hidden;
    }

    .values-heading {
        font-size: 28px;
        text-align: center;
    }

    .values-subheading {
        font-size: 15px;
        line-height: 1.6;
        text-align: center;
        margin-bottom: 40px;
    }

    .values-wrapper {
        width: 100%;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .values-slider {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0;
        margin: 0;
        min-height: 230px;
        isolation: isolate;
    }

    .value-card {
        display: none;
    }

    .value-card.active {
        display: flex;
        width: min(100%, 430px);
        min-height: 220px;
        padding: 28px 24px;
        border-radius: 32px;
        transform: none;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .value-card.active .value-letter {
        width: clamp(72px, 24vw, 435px);
    }

    .value-card.active .value-info {
        flex: 1;
        width: auto;
        min-width: 0;
        opacity: 1;
        transform: none;
        text-align: left;
        pointer-events: auto;
    }

    .value-info h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .value-info p {
        font-size: 15px;
        line-height: 1.7;
    }

    .value-label {
        display: none;
    }

    /* BUTTONS */
    .leaders-slider {
        margin-top: 28px;
        padding: 4px 6px;
    }

    /* LEADERS */
    .leaders-section {
        padding: 30px 0 10px;
        overflow: hidden;
    }

    .leaders-heading {
        font-size: 28px;
        text-align: center;
    }

    .leaders-subheading {
        text-align: center;
        line-height: 1.6;
        margin-bottom: 40px;
    }

    .leaders-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    /* IMAGES */
    .leaders-images {
        width: 100%;
        display: flex;
        justify-content: center;
        /* overflow:hidden; */
    }

    /* CARDS */
    .leader-card {
        display: none;
        width: 100%;
        max-width: 320px;
        height: 220px;
        position: relative;
    }

    .leader-card.active {
        display: block;
        flex: 0 0 48%;
        width: 100%;
        max-width: 640px;
        height: 220px;
    }

    .leader-image {
        width: 140px;
        height: 220px;
        object-fit: cover;
        border-radius: 20px;
        position: absolute;
        right: 0;
        bottom: 0;

    }

    .leader-card.active .leader-image {
        width: 140px;
        height: 220px;
        right: 0;
        bottom: 0;
        object-fit: contain;

    }

    .active-info-box {
        width: 230px;
        height: 180px;
        border-radius: 20px;
        left: 0;
        top: auto;
        bottom: 10px;
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }

    .leader-details {
        padding: 24px 20px;
    }

    .leader-details h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .leader-details p {
        font-size: 13px;
        line-height: 1.5;
    }

    .inactive-overlay {
        display: none;
    }

    /* BUTTONS */
    .leaders-slider {
        margin-top: 30px;
    }

    /* JOIN */
    .join-banner-wrapper {
        padding: 40px 0;
    }

    .join-section {
        flex-direction: column;
        border: 1px solid #F16122;
        gap: 40px;
        padding: 40px 20px;
    }

    .join-content {
        width: 100%;
        text-align: center;
    }

    .join-content h2 {
        font-size: 25px;
    }

    .join-content p {
        font-size: 13px;
    }

    .join-text-desktop {
        display: none;
    }

    .join-text-mobile {
        display: block;
        font-size: 13px;
        line-height: 1.7;
        color: #444;
        margin-bottom: 28px;
    }

    .join-images {
        width: 100%;
    }

    .top-row,
    .bottom-row {
        gap: 12px;
    }

    .join-person img {
        width: 72px;
        height: 72px;
    }

    .join-shadow {
        width: 220px;
    }
}

/* FINAL LEADERS LAYOUT */
.leaders-section {
    padding: 70px 0 55px;
    background: #fff;
    overflow: hidden;
}

.leaders-wrapper {
    width: min(100%, 1320px);
    margin: 0 auto;
    overflow: hidden;
}

.leaders-images {
    --leader-gap: 60px;
    --leader-card-width: 300px;
    --leader-active-width: 600px;
    width: 100%;
    max-width: 1320px;
    height: 332px;
    padding: 0;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.leaders-track {
    height: 100%;
    display: flex;
    align-items: flex-end;
    gap: var(--leader-gap);
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.leaders-images.is-sliding .leaders-track {
    transition: transform .95s cubic-bezier(0.4, 0, 0.2, 1);
}

.leaders-heading {
    font-size: var(--fs-54);
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.leaders-subheading {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.leaders-heading span {
    color: #F16122;
}

.leader-card {
    position: relative;
    display: block;
    flex: 0 0 var(--leader-card-width);
    width: var(--leader-card-width);
    max-width: none;
    height: 332px;
    border-radius: 28px;
    background: transparent;
    overflow: visible;
    cursor: pointer;
    opacity: 1;
    transform: translateZ(0);
    will-change: flex-basis, width, height;
    transition:
        flex-basis .95s cubic-bezier(.22, 1, .36, 1),
        width .95s cubic-bezier(.22, 1, .36, 1),
        opacity .45s ease;
}

.leader-card.active {
    flex-basis: var(--leader-active-width);
    width: var(--leader-active-width);
    height: 232px;
    cursor: default;
}

.leader-card:not(.active)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 110px;

    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(0, 0, 0, 0.25) 40%,
            rgba(0, 0, 0, 0) 100%);

    border-radius: 0 0 28px 28px;
    z-index: 2;
    pointer-events: none;
}

.leader-card::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 232px;
    border-radius: 28px;
    background: #f3f5f7;
    z-index: 0;
}

.leader-image,
.leader-card.active .leader-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 300px;
    height: 332px;
    max-width: none;
    object-fit: contain;
    object-position: center bottom;
    border-radius: 0;
    z-index: 2;
    transition:
        opacity .65s ease,
        transform .95s cubic-bezier(.22, 1, .36, 1);
    border-radius: 0 30px 30px;
}

.leader-card.active .leader-image {
    transform: translateX(0);
}

.active-info-box {
    position: absolute;
    left: 0;
    bottom: 0;
    top: auto;
    width: 100%;
    max-width: 600px;
    height: 232px;
    border-radius: 28px;
    background: #f3f5f7;
    opacity: 0;
    transform: translateX(-24px) scale(.98);
    z-index: 1;
    pointer-events: none;
    transition:
        opacity .42s ease,
        transform .95s cubic-bezier(.22, 1, .36, 1);
}

.leader-card.active .active-info-box {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
    transition:
        opacity .58s ease .12s,
        transform .95s cubic-bezier(.22, 1, .36, 1);
}

.leader-details {
    width: calc(100% - 200px);
    min-width: 0;
    height: 100%;
    padding: 44px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.leader-details h3 {
    font-size: var(--fs-36);
    line-height: 1.15;
    margin-bottom: 10px;
    color: #222;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .28s ease, transform .45s cubic-bezier(.22, 1, .36, 1);
}

.leader-details p {
    font-size: var(--fs-18);
    color: #333;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .28s ease, transform .45s cubic-bezier(.22, 1, .36, 1);
}

.connect-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    padding: 8px 14px 8px 18px;
    border: 1px solid #f26b21;
    border-radius: 28px;
    background: #fff;
    color: #f26b21;
    text-decoration: none;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .28s ease, transform .45s cubic-bezier(.22, 1, .36, 1), background .25s ease, color .25s ease;
}

.connect-link:hover {
    text-decoration: none;
}

.connect-btn {
    width: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #f26b21;
    font-size: 12px;
    opacity: 1;
    transform: none;
    transition: none;
}

.linkedin-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.linkedin-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}

.leader-card.active .leader-details h3,
.leader-card.active .leader-details p,
.leader-card.active .connect-link {
    opacity: 1;
    transform: translateY(0);
}

.leader-card.active .leader-details h3 {
    transition: opacity .5s ease .22s, transform .65s cubic-bezier(.22, 1, .36, 1) .22s;
}

.leader-card.active .leader-details p {
    transition: opacity .5s ease .3s, transform .65s cubic-bezier(.22, 1, .36, 1) .3s;
}

.leader-card.active .connect-link {
    transition: opacity .5s ease .38s, transform .65s cubic-bezier(.22, 1, .36, 1) .38s, background .25s ease, color .25s ease;
}

.inactive-overlay {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    width: max-content;
    max-width: 250px;
    padding: 0;
    color: #fff;
    text-align: center;
    z-index: 3;
    opacity: 1;
    transition: opacity .45s ease, transform .65s cubic-bezier(.22, 1, .36, 1);
}

.inactive-overlay h4 {
    font-size: 15px;
    line-height: 1.2;
    margin-bottom: 5px;
}

.inactive-overlay p {
    font-size: 11px;
}

.leader-card.active .inactive-overlay {
    opacity: 0;
    transform: translateX(-50%) translateY(14px);
    pointer-events: none;
}

.leaders-images.is-sliding .leader-card {
    pointer-events: none;
}

@media (max-width:1400px) {
    .leaders-wrapper {
        width: min(100%, calc(100vw - 80px));
    }

    .leaders-images {
        --leader-gap: clamp(18px, 4vw, 60px);
        --leader-card-width: clamp(220px, 22vw, 300px);
        --leader-active-width: calc(100% - var(--leader-card-width) - var(--leader-card-width) - var(--leader-gap) - var(--leader-gap));
        width: 100%;
    }

    .leader-image,
    .leader-card.active .leader-image {
        width: clamp(220px, 22vw, 300px);
    }

    .active-info-box {
        width: 100%;
    }
}

@media (max-width:920px) {
    .leaders-wrapper {
        width: min(100%, calc(100vw - 40px));
    }

    .leaders-images {
        --leader-gap: 18px;
        --leader-card-width: clamp(100px, 20vw, 160px);
        --leader-active-width: calc(100% - var(--leader-card-width) - var(--leader-card-width) - var(--leader-gap) - var(--leader-gap));
        height: 300px;
    }

    .leader-card,
    .leader-card.active {
        height: 300px;
    }

    .leader-card::before,
    .active-info-box {
        height: 205px;
        border-radius: 22px;
    }

    .leader-image,
    .leader-card.active .leader-image {
        width: clamp(130px, 22vw, 190px);
        height: 300px;
    }

    .leader-details {
        width: 220px;
        padding: 34px 24px;
    }

    .leader-details h3 {
        font-size: 22px;
    }
}

@media (max-width:620px) {
    .leaders-section {
        padding: 30px 0 12px;
    }

    .leaders-wrapper {
        width: 100%;
        /* padding:0 20px; */
    }

    .leaders-images {
        --leader-gap: 0px;
        --leader-card-width: 0px;
        --leader-active-width: 100%;
        width: 100%;
        height: 330px;
    }

    .leader-card,
    .leader-card.active {
        width: var(--leader-active-width) !important;
        max-width: none !important;
        height: 330px;
    }

    .leader-card::before,
    .active-info-box {
        height: 232px;
        border-radius: 28px;
    }

    .leader-image,
    .leader-card.active .leader-image {
        width: clamp(145px, 42vw, 170px);
        height: 320px;
        border-radius: 0 0 20px;
    }

    .leader-card:not(.active) .leader-image {
        width: 0;
        height: 0;
    }

    .active-info-box {
        width: 100%;
    }

    .leader-details {
        width: calc(100% - 118px);
        padding: 34px 20px;
    }

    .leader-details h3 {
        font-size: 22px;
    }

    .leader-details p {
        font-size: 14px;
    }

    .inactive-overlay {
        display: none;
    }
}




@media (max-width:620px) {
    body {
        background: #f5f5f5;
    }

    .fc-container {
        padding-inline: 18px;
    }

    .navbar {
        height: 52px;
        padding: 0 18px;
    }

    .nav-links {
        top: 52px;
    }

    .logo-img {
        width: 92px;
    }

    .menu-btn {
        width: 28px;
        height: 28px;
    }

    .about-section {
        height: auto;
        min-height: calc(100vh - 52px);
        /* min-height:100svh; */
        padding: 45px 18px 0;
        background: url("https://pa-cdn.freecharge.in/pwa-static/pwa/images/aboutUs/background.png") no-repeat center / cover;
        background-size: cover;
    }

    .background-image {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }

    .about-text {
        margin: 0 0 15px;
        font-size: 16px;
    }

    .main-heading {
        width: min(100%, 330px);
        font-size: 24px;
        line-height: 32px;
        font-weight: 500;
    }

    .phone-slider {
        /* border: 5px solid red; */
        /* margin-top:auto !important; */
        left: auto !important;
        bottom: auto !important;
        transform: none !important;
        /* height:320px !important; */
        /* margin-top:90px !important; */
        overflow: hidden !important;
    }

    .phone-image {
        width: 300%;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        transform-origin: bottom center;
    }

    .purpose-section {
        padding: 28px 0 24px;
        margin-bottom: 0;
        background: #f5f5f5;
    }

    .purpose-heading,
    .mission-heading,
    .values-heading,
    .leaders-heading {
        font-size: 28px;
        line-height: 1.2;
        text-align: center;
    }

    .purpose-subheading,
    .values-subheading,
    .leaders-subheading {
        width: min(100%, 327px);
        margin: 6px auto 22px;
        font-size: 16px;
        line-height: 1.45;
        text-align: center;
    }

    .purpose-cards {
        gap: 12px;
    }

    .purpose-card {
        min-height: 0;
        height: auto;
        border-radius: 14px;
        padding: 16px 14px;
    }

    .icon-circle {
        width: 30px;
        height: 30px;
        margin-bottom: 12px;
    }

    .card-icon {
        width: 16px;
        height: 16px;
    }

    .purpose-card h3 {
        margin-bottom: 8px;
        font-size: 15px;
        line-height: 1.25;
    }

    .purpose-card p {
        padding: 0;
        font-size: 14px;
        line-height: 1.55;
    }

    .mission-section {
        padding: 28px 0 26px;
    }

    .mission-section .fc-container {
        gap: 22px;
    }

    .mission-heading {
        text-align: left;
    }

    .mission-description {
        margin: 10px 0 18px;
        font-size: 16px;
        line-height: 1.55;
    }

    .mission-features {
        gap: 14px;
    }

    .feature-item {
        gap: 10px;
    }

    .feature-icon {
        min-width: 20px;
        width: 20px;
        height: 20px;
        font-size: 11px;
    }

    .feature-item h4 {
        margin-bottom: 4px;
        font-size: 16px;
    }

    .feature-item p {
        font-size: 14px;
        line-height: 22px;
    }

    .mission-slider {
        width: min(100%, 280px);
        height: 250px;
    }

    .mission-card img {
        width: 100%;
        height: 115%;
        object-fit: cover;
    }

    .mission-card.next {
        transform: translateX(22px) scale(.94);
    }

    .slider-dots {
        bottom: 8px;
        padding: 6px 10px;
        gap: 7px;
    }

    .dot {
        width: 7px;
        height: 7px;
    }

    .dot.active-dot {
        width: 18px;
    }

    .values-section {
        padding: 28px 0 30px;
    }

    .values-wrapper {
        overflow: visible;
    }

    .values-slider {
        width: 100%;
        min-height: 230px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0;
    }

    .value-card {
        display: none;
    }

    .value-card.active {
        display: flex;
        width: min(100%, 430px);
        min-width: 0;
        height: auto;
        min-height: 220px;
        padding: 28px 24px;
        background: #fff;
        border: 0;
        border-radius: 32px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        transform: translateY(0);
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .value-card.active .value-info {
        flex: 1;
        width: auto;
        min-width: 0;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        transition: none;
    }

    .value-info h3 {
        margin-bottom: 12px;
        font-size: 20px;
        line-height: 1.2;
    }

    .value-info p {
        display: block;
        overflow: visible;
        font-size: 15px;
        line-height: 22px;
    }

    .value-card.active .value-letter {
        width: clamp(72px, 24vw, 90px);
        max-height: none;
        object-fit: contain;
        transform: scale(1.04);
    }

    .value-label {
        display: none;
    }

    .leaders-slider {
        margin-top: 16px;
        padding: 3px 5px;
    }

    .slider-btn {
        width: 32px;
        height: 32px;
        font-size: 20px;
    }

    .leaders-section {
        padding: 28px 0 24px;
    }

    .leaders-wrapper {
        /* padding:0 18px; */
    }

    .leaders-images {
        --leader-gap: 8px;
        --leader-card-width: 42px;
        --leader-active-width: 90vw;
        height: 184px;
    }

    .leader-card,
    .leader-card.active {
        height: 184px;
    }

    .leader-card::before,
    .active-info-box {
        height: 132px;
        border-radius: 12px;
    }

    .leader-card:not(.active)::after {
        height: 72px;
        border-radius: 0 0 12px 12px;
    }

    .leader-image,
    .leader-card.active .leader-image {
        width: 151px;
        height: 190px;
    }

    .leader-card:not(.active) .leader-image {
        width: 42px;
        height: 132px;
    }

    .leader-details {
        width: 154px;
        padding: 18px 12px;
    }

    .leader-details h3 {
        font-size: 16px;
        line-height: 1.15;
    }

    .leader-details p {
        margin-bottom: 14px;
        font-size: 10px;
    }

    .connect-btn {
        font-size: 10px;
    }

    .connect-link {
        gap: 7px;
        padding: 6px 10px 6px 12px;
    }

    .linkedin-btn,
    .linkedin-icon {
        width: 22px;
        height: 22px;
    }

    .join-banner-wrapper {
        padding: 24px 0 26px;
    }

    .join-section {
        gap: 24px;
        padding: 24px 14px;
        border-radius: 16px;
    }

    .join-content h2 {
        margin-bottom: 12px;
        font-size: 21px;
        line-height: 1.22;
    }

    .join-text-mobile {
        margin-bottom: 18px;
        font-size: 12px;
        line-height: 1.45;
    }

    .join-btn {
        padding: 11px 24px;
        border-radius: 10px;
        font-size: 13px;
    }

    .top-row,
    .bottom-row {
        gap: 10px;
    }

    .bottom-row {
        margin-top: 16px;
    }

    .join-person img {
        width: 58px;
        height: 58px;
    }

    .join-person span {
        bottom: -7px;
        padding: 4px 8px;
        font-size: 9px;
    }

    .join-shadow {
        width: 176px;
        height: 10px;
        margin-top: 18px;
    }

    .footer {
        padding: 18px;
        gap: 14px;
    }

    .footer-links {
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px 14px;
    }

    .footer-links a {
        font-size: 12px;
        line-height: 1.25;
        white-space: normal;
    }

    .social-icons {
        margin-left: 0;
    }

    .footer-bottom {
        padding: 12px 18px 18px;
    }

    .footer-copyright {
        font-size: 11px;
        line-height: 1.4;
    }
}

@media (max-width:380px) {
    .fc-container {
        padding-inline: 29px;
    }

    .main-heading {
        font-size: 24px;
    }

    .phone-slider {
        height: 205px;
    }

    .purpose-heading,
    .mission-heading,
    .values-heading,
    .leaders-heading {
        font-size: 27px;
    }

    .leaders-images {
        --leader-card-width: 38px;
        --leader-active-width: min(432px, calc(100vw - 60px));
    }

    .leader-details {
        width: 155px;
    }
}