.about-hero {
    min-height: 80vh;
    margin: 0 auto 70px;
    padding: 140px 5% 92px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 0 0 28px 28px;
    background:
        linear-gradient(rgba(0, 33, 12, 0.86), rgba(0, 83, 112, 0.86)),
        url('https://krishnamotorsal.com/wp-content/uploads/2025/03/backend_wp-content_uploads_2024_09_backend_wp-content_uploads_2024_09_Range-PNG-min_Banner-Desktop-1440x620px-1.jpg') center / cover no-repeat;
    color: #ffffff;
    text-align: center;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 44, 62, 0.35), rgba(0, 147, 203, 0.18), rgba(0, 44, 62, 0.35));
    pointer-events: none;
}

.about-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: #008cc9;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.about-hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 16px;
    color: #bce9ff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-hero-eyebrow span {
    width: 58px;
    height: 1px;
    background: rgba(188, 233, 255, 0.55);
}

.about-hero-title {
    margin: 0 0 14px;
    font-size: clamp(34px, 4.2vw, 48px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: 0;
    color: #ffffff;
}

.about-hero p {
    max-width: 520px;
    margin: 0 auto 26px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 15px;
    line-height: 1.55;
    font-weight: 500;
}

.about-hero-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.about-primary-btn,
.about-outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.about-primary-btn {
    background: #008cc9;
    color: #ffffff;
    border: 1px solid #008cc9;
}

.about-outline-btn {
    gap: 9px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.68);
    background: rgba(0, 42, 60, 0.24);
}

.about-primary-btn:hover,
.about-outline-btn:hover {
    transform: translateY(-2px);
}

.about-primary-btn:hover {
    background: #0078ad;
    border-color: #0078ad;
}

.about-outline-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #ffffff;
}

@media screen and (max-width: 768px) {
    .about-hero {
        min-height: 390px;
        padding: 118px 6% 72px;
        border-radius: 0 0 22px 22px;
    }

    .about-hero-eyebrow {
        gap: 10px;
        font-size: 10px;
    }

    .about-hero-eyebrow span {
        width: 34px;
    }

    .about-hero p {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .about-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .about-outline-btn{
        max-width: 250px;
        margin: 0 auto;

    }
}


/* section 2 */
.journey-section {
    padding: 50px 5%;
}

.journey-container {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

/* Left Side Sticky Logic */
.journey-left {
    flex: 1;
    position: sticky;
    top: 150px;
    /* Distance from top when sticking */
    height: fit-content;
}

.journey-right {
    flex: 1.2;
    position: relative;
    padding-left: 50px;
}

ero

/* Vertical Timeline Line */
.timeline-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #cce4f0;
    z-index: 1;
}

/* Step Container */
.journey-step {
    position: relative;
    margin-bottom: 50px;
    opacity: 0.3;
    /* Initial state */
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

/* Step Active State */
.journey-step.active {
    opacity: 1;
    transform: translateY(0);
}

/* Timeline Dot */
.step-dot {
    position: absolute;
    left: -56px;
    /* Centered on the line */
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background-color: #008cc9;
    border-radius: 50%;
    z-index: 5;
    border: 3px solid #fff;
    transition: 0.3s;
}

.journey-step.active .step-dot {
    transform: translateY(-50%) scale(1.5);
    box-shadow: 0 0 15px rgba(0, 140, 201, 0.5);
}

/* Step Card Design */
.step-card {
    background: #fff;
    border: 1px solid #cce4f0;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: 0.3s;
}

.journey-step.active .step-card {
    border-color: #008cc9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: #f1f8fc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #003b53;
    font-size: 22px;
}

.step-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
}

.step-text p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Responsive View */
@media screen and (max-width: 992px) {
    .journey-container {
        flex-direction: column;
        gap: 20px;
    }

    .journey-left {
        position: relative;
        top: 0;
        margin-bottom: 20px;
    }

    .journey-right {
        padding-left: 30px;
        width: 100%;
    }

    .step-dot {
        left: -36px;
    }

    .journey-section {
        padding: 0px 5%;
    }
}



html {
    scroll-behavior: smooth;
}

.about-page {
    --primary: #004f66;
    --primary-dark: #003f55;
    --sky: #008fc7;
    --sky-bright: #0197d3;
    --text: #050914;
    --muted: #565656;
    --soft: #d4e3e8;
    --card: #b8ced6;
    --white: #ffffff;
    --line: #1f1f1f;
    --shadow: 0 18px 45px rgba(0, 65, 86, 0.14);
    min-height: 100vh;
    background: #ffffff;
    color: var(--text);
}

.about-page img {
    width: 100%;
    display: block;
}

.about-page button {
    font: inherit;
    border: 0;
    cursor: pointer;
}

.about-page-shell {
    margin: 0 auto;
    background: var(--white);
    overflow: hidden;
}

.about-section-padding {
    padding: 58px clamp(28px, 6vw, 120px);
}

.about-eyebrow-text {
    color: var(--sky-bright);
    font-size: clamp(16px, 1.45vw, 25px);
    font-weight: 500;
    letter-spacing: 0.01em;
    text-align: center;
    margin-bottom: 10px;
}

.about-eyebrow-text.about-left-align {
    text-align: left;
}

.about-section-lead {
    margin: 0 auto;
    color: var(--muted);
    text-align: center;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 400;
}

.about-page .label {
    color: #008cc9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    margin-bottom: 10px;
}

.labelo {
    color: #008cc9;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-page .blue-square {
    width: 8px;
    height: 8px;
    background-color: #008cc9;
    display: block;
}

.about-feature-card h3 {
    color: #060606;
    font-size: 25px;
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.about-purpose-content p,
.about-why-intro,
.about-feature-card p,
.about-small-text {
    color: var(--muted);
    font-size: clamp(15px, 1.05vw, 19px);
    line-height: 1.5;
    font-weight: 400;
}

/* about-purpose section */
.about-purpose {
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    gap: clamp(50px, 5vw, 84px);
    align-items: center;
    width: min(100%, 1905px);
    margin: 14px auto 0;
    padding-top: 82px;
    padding-bottom: 76px;
}

.about-purpose-image {
    border-radius: 24px;
    overflow: hidden;
}

.about-purpose-image img {
    height: clamp(380px, 33vw, 610px);
    object-fit: cover;
}

.about-purpose-content {
    max-width: 660px;
}

.about-purpose-content .about-eyebrow-text {
    margin-bottom: 15px;
    color: #4ca0c5;
    font-size: 24px;
}

.about-purpose-content h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 18px;
    margin-bottom: 18px;
}

.about-purpose-content h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 245px;
    height: 4px;
    border-radius: 99px;
    background: var(--sky-bright);
}

.about-purpose-lead {
    max-width: 700px;
    /* font-size: clamp(18px, 1.45vw, 28px) !important; */
    line-height: 1.45 !important;
    margin-bottom: 20px;
}

.about-tab-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 34px;
    margin: 34px 0 46px;
}

.about-tab-buttons button {
    min-height: 40px;
    border-radius: 14px;
    padding: 18px 26px;
    background: #f3f3f3;
    color: #3d3d3d;
    font-size: clamp(19px, 1.35vw, 28px);
    font-weight: 500;
    transition: 0.25s ease;
}

.about-tab-buttons button.active,
.about-tab-buttons button:hover {
    background: var(--sky);
    color: var(--white);
}

.about-small-text {
    position: relative;
    max-width: 600px;
    padding-left: 22px;
}

.about-small-text::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.25em;
    bottom: 0.25em;
    width: 3px;
    border-radius: 99px;
    background: var(--sky-bright);
}

/* about-why choose us */
.about-why {
    margin: 0 auto;
    padding-top: 44px;
}

.about-why h2 {
    font-size: clamp(28px, 2.45vw, 44px);
    margin-bottom: 12px;
}

.about-why-intro {
    max-width: 700px;
    margin-bottom: 32px;
    font-size: 19px;
}

.about-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.about-feature-card {
    min-height: 390px;
    border-radius: 17px;
    background: #b5c7d1;
    padding: 54px 50px 42px;
    color: #004f66;
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        background-color 0.28s ease,
        color 0.28s ease;
}

.about-feature-card.active {
    background: #004262;
    color: #ffffff;
}

.about-feature-card:hover {
    transform: translateY(-8px);
    background: #004262;
    color: #ffffff;
    box-shadow: 0 22px 44px rgba(0, 79, 102, 0.22);
}

.about-feature-card h3 {
    color: inherit;
    font-size: clamp(18px, 1.25vw, 26px);
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: 0.01em;
    margin-bottom: 18px;
}

.about-feature-card p {
    color: currentColor;
    font-size: clamp(14px, 0.95vw, 18px);
    line-height: 1.5;
    font-weight: 500;
    opacity: 0.9;
}

.about-icon-box {
    width: 185px;
    height: 185px;
    margin-bottom: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    opacity: 0.26;
    transition:
        opacity 0.28s ease,
        transform 0.28s ease,
        filter 0.28s ease;
}

.about-feature-card.active .about-icon-box img {
    opacity: 0.38;
}

.about-feature-card:hover .about-icon-box img {
    opacity: 0.42;
    transform: scale(1.06);
    filter: brightness(0) invert(1);
}

@media (max-width: 980px) {
    .about-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-feature-card {
        min-height: 340px;
    }
}

@media (max-width: 620px) {
    .about-feature-grid {
        grid-template-columns: 1fr;
    }

    .about-feature-card {
        min-height: 280px;
        padding: 34px 28px;
    }

    .about-icon-box {
        width: 125px;
        height: 125px;
        margin-bottom: 30px;
    }
}


/* about-achievements */
.about-achievements {
    padding-top: 95px;
    padding-bottom: 120px;
    text-align: center;
    overflow: hidden;
}

.about-achievements .about-eyebrow-text {
    font-size: clamp(18px, 1.55vw, 28px);
    margin-bottom: 22px;
}

.about-achievements h2 {
    position: relative;
    display: inline-block;
    font-size: clamp(28px, 2.45vw, 44px);
    line-height: 1.12;
    letter-spacing: -0.045em;
    padding-bottom: 10px;
    margin-bottom: 18px;
}

.about-achievements h3 {
    position: relative;
    display: inline-block;
    font-size: clamp(28px, 2.45vw, 44px);
    line-height: 1.12;
    letter-spacing: -0.045em;
    padding-bottom: 10px;
    margin-bottom: 18px;
}

.about-achievements h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 235px;
    height: 4px;
    border-radius: 99px;
    background: var(--sky-bright);
}


.about-achievements .about-section-lead {
    max-width: 1080px;
    font-size: 22px;
    line-height: 1.32;
    color: #555555;
}

.about-stats-stack {
    position: relative;
    width: min(100%, 1680px);
    min-height: 430px;
    margin: 82px auto 0;
    cursor: ns-resize;
    perspective: 1000px;
    isolation: isolate;
}

.about-stats-stack .about-stat-card {
    position: absolute;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: clamp(58px, 7vw, 120px);
    width: 100%;
    border-radius: 10px;
    padding: 58px 88px;
    box-shadow: 0 24px 42px rgba(12, 38, 48, 0.22);
    will-change: transform;
    transition:
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.45s ease,
        color 0.45s ease,
        opacity 0.45s ease,
        box-shadow 0.45s ease;
}

.about-stats-stack .about-stat-card.is-top {
    top: 0;
    z-index: 3;
    min-height: 250px;
    background: #004262;
    color: #ffffff;
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: 0 28px 55px rgba(12, 38, 48, 0.28);
}

.about-stats-stack .about-stat-card.is-middle {
    top: 0;
    z-index: 2;
    min-height: 170px;
    background: rgba(184, 206, 214, 0.92);
    color: rgba(0, 79, 102, 0.46);
    opacity: 0.98;
    transform: translateY(140px) scale(0.995);
    box-shadow: 0 18px 34px rgba(12, 38, 48, 0.16);
}

.about-stats-stack .about-stat-card.is-bottom {
    top: 0;
    z-index: 1;
    min-height: 150px;
    background: rgba(226, 239, 243, 0.94);
    color: rgba(0, 79, 102, 0.24);
    opacity: 0.45;
    transform: translateY(250px) scale(0.99);
    box-shadow: 0 12px 26px rgba(12, 38, 48, 0.12);
}

.about-stats-stack:hover .about-stat-card.is-top {
    transform: translateY(-6px) scale(1);
}

.about-stats-stack.is-moving .about-stat-card.is-top {
    transform: translateY(-8px) scale(1.005);
}

.about-stats-stack .about-stat-card strong {
    min-width: 250px;
    font-size: clamp(76px, 8vw, 132px);
    line-height: 0.9;
    font-weight: 800;
    letter-spacing: -0.08em;
}

.about-stats-stack .about-stat-card span {
    text-align: left;
    font-size: 32px;
    line-height: 1.45;
    font-weight: 500;
    letter-spacing: 0.04em;
}

@media (max-width: 980px) {
    .about-stats-stack {
        min-height: 410px;
    }

    .about-stats-stack .about-stat-card {
        padding: 42px 44px;
        gap: 34px;
    }

    .about-stats-stack .about-stat-card strong {
        min-width: 160px;
    }

    .about-stats-stack .about-stat-card.is-top {
        min-height: 210px;
    }

    .about-stats-stack .about-stat-card.is-middle {
        transform: translateY(150px) scale(0.995);
    }

    .about-stats-stack .about-stat-card.is-bottom {
        transform: translateY(260px) scale(0.99);
    }
}

@media (max-width: 620px) {
    .about-achievements {
        padding-top: 60px;
        padding-bottom: 80px;
    }

    .about-achievements h2::after {
        left: 50%;
        width: 170px;
        transform: translateX(-50%);
    }

    .about-stats-stack {
        min-height: 430px;
    }

    .about-stats-stack .about-stat-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 30px 24px;
    }

    .about-stats-stack .about-stat-card strong {
        min-width: 0;
        font-size: 64px;
    }

    .about-stats-stack .about-stat-card span {
        font-size: 18px;
    }

    .about-stats-stack .about-stat-card.is-middle {
        transform: translateY(160px) scale(0.995);
    }

    .about-stats-stack .about-stat-card.is-bottom {
        transform: translateY(275px) scale(0.99);
    }
}

/* Large laptop / small desktop */
@media (max-width: 1280px) {
    .about-section-padding {
        padding-left: 56px;
        padding-right: 56px;
    }

    .about-page h1 {
        font-size: clamp(32px, 3vw, 42px);
    }

    .about-page h2 {
        font-size: clamp(30px, 3vw, 40px);
    }

    .about-purpose {
        gap: 54px;
    }

    .about-purpose-image img {
        height: 520px;
    }

    .about-feature-card {
        padding: 42px 34px 36px;
        min-height: 350px;
    }

    .about-icon-box {
        width: 145px;
        height: 145px;
        margin-bottom: 34px;
    }

    .about-stats-stack .about-stat-card {
        padding: 48px 64px;
    }

    .about-stats-stack .about-stat-card strong {
        min-width: 190px;
    }
}

/* Tablet landscape / small laptop */
@media (max-width: 1024px) {
    .about-section-padding {
        padding: 48px 34px;
    }

    .about-section-lead br {
        display: none;
    }

    /* about-purpose */
    .about-purpose {
        grid-template-columns: 1fr;
        gap: 34px;
        padding-top: 54px;
        padding-bottom: 54px;
    }

    .about-purpose-image img {
        height: clamp(320px, 52vw, 520px);
    }

    .about-purpose-content {
        max-width: 100%;
    }

    /* about-why choose */
    .about-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-feature-card {
        min-height: 320px;
    }

    /* about-achievements */
    .about-achievements {
        padding-top: 70px;
        padding-bottom: 90px;
    }

    .about-stats-stack {
        min-height: 390px;
    }

    .about-stats-stack .about-stat-card {
        padding: 42px 44px;
        gap: 34px;
    }

    .about-stats-stack .about-stat-card strong {
        min-width: 150px;
        font-size: clamp(64px, 9vw, 96px);
    }

    .about-stats-stack .about-stat-card span {
        font-size: clamp(22px, 3vw, 32px);
    }

    .about-stats-stack .about-stat-card.is-top {
        min-height: 210px;
    }

    .about-stats-stack .about-stat-card.is-middle {
        transform: translateY(145px) scale(0.995);
    }

    .about-stats-stack .about-stat-card.is-bottom {
        transform: translateY(245px) scale(0.99);
    }
}

/* Tablet portrait */
@media (max-width: 768px) {
    .about-section-padding {
        padding: 42px 24px;
    }

    .about-eyebrow-text {
        font-size: 18px;
    }

    .about-eyebrow-text.about-left-align {
        text-align: left;
    }

    .about-page h1 {
        font-size: 34px;
    }

    .about-page h2 {
        font-size: 32px;
    }

    .about-section-lead {
        font-size: 20px;
        line-height: 1.45;
    }

    .about-feature-card h3 {
        font-size: 22px;
    }

    .about-purpose-content .about-eyebrow-text {
        font-size: 20px;
    }

    .about-purpose-content h2::after {
        width: 190px;
        height: 3px;
    }

    .about-tab-buttons {
        gap: 18px;
        margin: 26px 0 34px;
    }

    .about-tab-buttons button {
        min-height: 62px;
        font-size: 20px;
    }

    .about-why-intro {
        font-size: 20px;
    }

    .about-feature-card {
        padding: 36px 30px;
        min-height: 300px;
    }

    .about-icon-box {
        width: 120px;
        height: 120px;
        margin-bottom: 30px;
    }

    .about-achievements h2 {
        font-size: 34px;
    }

    .about-achievements .about-section-lead {
        font-size: 22px;
    }
}

/* Mobile */
@media (max-width: 560px) {
    .about-section-padding {
        padding: 36px 18px;
    }

    .about-page h1 {
        font-size: 28px;
        letter-spacing: -0.035em;
    }

    .about-page h2 {
        font-size: 28px;
        letter-spacing: -0.035em;
    }

    .about-section-lead {
        font-size: 17px;
    }

    /* about-purpose mobile */
    .about-purpose {
        padding-top: 40px;
        padding-bottom: 44px;
    }

    .about-purpose-image {
        border-radius: 18px;
    }

    .about-purpose-image img {
        height: 280px;
    }

    .about-purpose-content h2::after {
        width: 160px;
    }

    .about-purpose-lead {
        font-size: 16px !important;
    }

    .about-tab-buttons {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .about-tab-buttons button {
        min-height: 56px;
        font-size: 18px;
    }

    .about-small-text {
        font-size: 15px;
    }

    /* about-why choose mobile */
    .about-feature-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-feature-card {
        min-height: 260px;
        padding: 30px 24px;
    }

    .about-icon-box {
        width: 105px;
        height: 105px;
        margin-bottom: 26px;
    }

    .about-feature-card h3 {
        font-size: 21px;
    }

    .about-feature-card p {
        font-size: 15px;
    }

    /* about-achievements mobile */
    .about-achievements {
        padding-top: 54px;
        padding-bottom: 76px;
    }

    .about-achievements .about-eyebrow-text {
        font-size: 18px;
    }

    .about-achievements h2 {
        font-size: 28px;
        text-align: center;
    }

    .about-achievements h2::after {
        left: 50%;
        width: 150px;
        transform: translateX(-50%);
    }

    .about-achievements .about-section-lead {
        font-size: 17px;
    }

    .about-stats-stack {
        margin-top: 48px;
        min-height: 370px;
    }

    .about-stats-stack .about-stat-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 28px 22px;
    }

    .about-stats-stack .about-stat-card strong {
        min-width: 0;
        font-size: 58px;
    }

    .about-stats-stack .about-stat-card span {
        font-size: 17px;
        line-height: 1.35;
    }

    .about-stats-stack .about-stat-card.is-top {
        min-height: 180px;
    }

    .about-stats-stack .about-stat-card.is-middle {
        min-height: 135px;
        transform: translateY(135px) scale(0.995);
    }

    .about-stats-stack .about-stat-card.is-bottom {
        min-height: 120px;
        transform: translateY(240px) scale(0.99);
    }
}

/* Small mobile */
@media (max-width: 380px) {
    .about-section-padding {
        padding-left: 14px;
        padding-right: 14px;
    }

    .about-page h1 {
        font-size: 25px;
    }

    .about-page h2 {
        font-size: 25px;
    }

    .about-purpose-image img {
        height: 220px;
    }

    .about-feature-card {
        padding: 26px 20px;
    }

    .about-icon-box {
        width: 92px;
        height: 92px;
    }

    .about-stats-stack .about-stat-card strong {
        font-size: 50px;
    }

    .about-stats-stack .about-stat-card span {
        font-size: 15px;
    }
}

/* Section 2 responsive refinement */
.about-purpose,
.about-purpose-content,
.about-purpose-image {
    min-width: 0;
}

.about-purpose-image img {
    width: 100%;
}

.about-purpose-content h2 {
    max-width: 100%;
    overflow-wrap: break-word;
}

.about-tab-buttons button {
    width: 100%;
}

@media (max-width: 1024px) {
    .about-purpose {
        width: 100%;
        margin-top: 0;
    }

    .about-purpose-image,
    .about-purpose-content {
        width: 100%;
    }

    .about-purpose-image img {
        max-height: 500px;
    }

    .about-purpose-content h2 br {
        display: none;
    }
}

@media (max-width: 768px) {
    .about-purpose {
        gap: 28px;
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .about-purpose-image {
        border-radius: 18px;
    }

    .about-purpose-image img {
        height: auto;
        aspect-ratio: 16 / 10;
        object-fit: cover;
    }

    .about-purpose-content h2 {
        display: block;
        padding-bottom: 14px;
        margin-bottom: 16px;
        font-size: 30px;
        line-height: 1.2;
    }

    .about-purpose-content h2::after {
        width: 150px;
    }

    .about-purpose-lead {
        max-width: 100%;
        font-size: 16px !important;
    }

    .about-tab-buttons {
        gap: 12px;
        margin: 24px 0 28px;
    }

    .about-tab-buttons button {
        min-height: 52px;
        padding: 14px 18px;
        font-size: 17px;
    }
}

@media (max-width: 560px) {
    .about-purpose {
        gap: 22px;
        padding-top: 32px;
        padding-bottom: 36px;
    }

    .about-purpose-content h2 {
        font-size: 26px;
    }

    .about-purpose-content h2::after {
        width: 120px;
    }

    .about-tab-buttons {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 10px auto;
    }

    .about-small-text {
        max-width: 100%;
        padding-left: 16px;
        font-size: 15px;
    }
}

@media (max-width: 380px) {
    .about-purpose {
        padding-top: 28px;
        padding-bottom: 32px;
    }

    .about-purpose-content h2 {
        font-size: 23px;
    }

    .about-purpose-lead,
    .about-small-text {
        font-size: 14px !important;
    }
}