﻿
/* =========================================================
   TRAINOTRACK ABOUT PAGE
   Modern Reference-Based Design
========================================================= */

:root {
    --about-navy: #0b2d52;
    --about-dark: #092b4c;
    --about-blue: #1687df;
    --about-cyan: #ff7612;
    --about-orange: #ff7412;
    --about-orange-light: #ff9b27;
    --about-purple: #8d42e8;
    --about-text: #60748c;
    --about-light: #f5f9fd;
    --about-border: #e4edf5;
    --about-shadow: 0 20px 50px rgba(20, 70, 105, 0.10);
}

:root {
    --primary-navy: #0b1e33;
    --primary-orange: #ff7a18;
    --primary-orange-hover: #e0650e;
    --text-muted-gray: #6c757d;
    --border-light: #eaedf2;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.background-bg::after {
    background: linear-gradient(89.18deg, rgb(0 14 41) 1.58%, rgb(0 14 41 / 75%) 99.36%);
}

.tp-breadcrmb-circle-one {
    height: 600px;
    width: 600px;
    background-color: #ff7510a8;
    border-radius: 50%;
    position: absolute;
    bottom: -50px;
    left: -350px;
    opacity: 9;
    z-index: 2;
}

.contact-hero-content {
    padding-bottom: 70px;
}

.tp-breadcrmb-circle-two {
    height: 600px;
    width: 600px;
    background-color: #ffffffba;
    border-radius: 50%;
    position: absolute;
    top: -50px;
    right: -350px;
    opacity: 9;
    z-index: 2;
}

.hero-title {
    color: #ffffff;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.highlight-orange {
    color: var(--primary-orange);
}

.hero-desc {
    color: #ffffff;
    font-size: 15px;
    max-width: 440px;
    line-height: 1.6;
}

.sub-badge {
    color: #ff9800;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}
/* =========================================================
   SCROLL REVEAL (new, additive — used by sections below)
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.85s cubic-bezier(.22,.68,0,1.01), transform 0.85s cubic-bezier(.22,.68,0,1.01);
    will-change: opacity, transform;
}

    .reveal.reveal-left {
        transform: translateX(-40px);
    }

    .reveal.reveal-right {
        transform: translateX(40px);
    }

    .reveal.in-view {
        opacity: 1;
        transform: translate(0, 0);
    }

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}


/* =========================================================
   BENEFITS SECTION
   (unchanged — left exactly as-is)
========================================================= */

.about-benefits-section {
    position: relative;
    overflow: hidden;
    padding: 50px 0 50px;
}

.benefits-bg-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.benefits-bg-one {
    width: 420px;
    height: 420px;
    left: -260px;
    top: -150px;
    background: rgba(255, 118, 18, 0.055);
    animation: aboutBackgroundFloat 9s ease-in-out infinite;
}

.benefits-bg-two {
    width: 330px;
    height: 330px;
    right: -180px;
    bottom: -150px;
    background: rgba(255, 116, 18, 0.055);
    animation: aboutBackgroundFloat 11s ease-in-out infinite reverse;
}

.benefits-content {
    position: relative;
    z-index: 2;
}

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--about-orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

    .section-eyebrow i {
        display: block;
        width: 35px;
        height: 2px;
        border-radius: 10px;
        background: var(--about-orange);
    }

    .section-eyebrow.center {
        justify-content: center;
    }

    .section-eyebrow.light {
        color: #ff9c2b;
    }

        .section-eyebrow.light i {
            background: #ff9c2b;
        }

.benefits-title {
    max-width: 650px;
    margin: 0px 0px 20px;
    color: var(--about-navy);
    font-size: clamp(32px, 3.4vw, 35px);
    line-height: 1.20;
    font-weight: 800;
    letter-spacing: -1.4px;
}

    .benefits-title span {
        display: block;
        background: linear-gradient(90deg, #ff7110, #ff9c2b);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.benefits-intro,
.benefits-description {
    max-width: 680px;
}

.benefits-description {
    margin-top: 8px;
}


/* =========================================================
   BENEFIT LIST
   (unchanged)
========================================================= */

.benefit-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px 10px;
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 5px 0;
}

.benefit-check {
    flex: 0 0 23px;
    width: 23px;
    height: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #ff7612, #ff9b27);
    font-size: 10px;
    box-shadow: 0 5px 12px rgba(255, 116, 18, 0.22);
}

.benefit-item strong {
    display: inline;
    color: #173d65;
    font-size: 20px;
    font-weight: 700;
}

.benefit-item span {
    color: var(--tp-text-p);
    font-size: 19px;
    line-height: 1.5;
}


/* =========================================================
   BENEFIT IMAGE
   (unchanged)
========================================================= */

.benefits-visual {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits-image-card {
    position: relative;
    width: min(100%, 580px);
    height: 580px;
    overflow: hidden;
    border-radius: 22px;
    z-index: 3;
    box-shadow: 0 30px 70px #ff980017;
    animation: imageFloat 5s ease-in-out infinite;
}

    .benefits-image-card img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

.image-orange-corner {
    position: absolute;
    width: 90px;
    height: 90px;
    top: -25px;
    right: -25px;
    border-radius: 0 0 0 40px;
    border: 6px solid #ff8218;
    z-index: 5;
}

.image-blue-corner {
    position: absolute;
    width: 105px;
    height: 75px;
    left: -25px;
    bottom: -20px;
    border-radius: 0 45px 0 0;
    background: #f67700;
    transform: skewX(-20deg);
    z-index: 5;
}

.visual-orbit {
    position: absolute;
    border: 1px dashed rgba(255, 118, 18, 0.28);
    border-radius: 50%;
    pointer-events: none;
}

.orbit-one {
    width: 600px;
    height: 600px;
    animation: orbitRotate 18s linear infinite;
}

.orbit-two {
    width: 700px;
    height: 700px;
    border-color: rgba(255, 116, 18, 0.13);
    animation: orbitRotateReverse 25s linear infinite;
}

.visual-dot {
    position: absolute;
    border-radius: 50%;
    z-index: 4;
    animation: dotBounce 4s ease-in-out infinite;
}

.visual-dot-one {
    width: 13px;
    height: 13px;
    top: 45px;
    left: 7%;
    background: #ff7815;
}

.visual-dot-two {
    width: 9px;
    height: 9px;
    left: 15%;
    bottom: 75px;
    background: #ff7612;
    animation-delay: .7s;
}

.visual-dot-three {
    width: 15px;
    height: 15px;
    right: 5%;
    bottom: 90px;
    background: #ffb15d;
    animation-delay: 1.2s;
}

.visual-dot-four {
    width: 9px;
    height: 9px;
    right: 11%;
    top: 85px;
    background: #ff9b27;
    animation-delay: 1.7s;
}


/* =========================================================
   FLOATING CARDS
   (unchanged)
========================================================= */

.floating-cert-card, .floating-growth-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 5px 5px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 40px rgba(25, 69, 105, 0.15);
    backdrop-filter: blur(14px);
    z-index: 8;
}

.floating-cert-card {
    left: -10px;
    bottom: 75px;
    animation: floatingCard 4s ease-in-out infinite;
}

.floating-growth-card {
    animation: floatingCard 4.5s ease-in-out infinite reverse;
    right: -10px;
    bottom: 75px;
}

.floating-cert-icon,
.growth-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, #ff7612, #ff9b27);
}

.floating-cert-card strong,
.floating-growth-card strong {
    display: block;
    color: #153b62;
    font-size: 15px;
    font-weight: 700;
}

.floating-cert-card span,
.floating-growth-card span {
    display: block;
    margin-top: -3px;
    color: #71849a;
    font-size: 15px;
}


/* =========================================================
   MODERN COUNTER SECTION (ENHANCED)
========================================================= */

.modern-counter-section {
    position: relative;
    width: 100%;
    padding: 0 0 70px;
    background: #ffffff;
    overflow: hidden;
}

/* ---------------------------------------------------------
   MAIN COUNTER CONTAINER
--------------------------------------------------------- */

.modern-counter-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* min-height: 150px; */
    padding: 20px 70px;
    background: linear-gradient(110deg, rgb(255 233 213 / 32%) 0%, rgb(254 247 241) 48%, rgb(239 230 221 / 53%) 100%);
    border: 1px solid rgb(219 232 248 / 13%);
    border-radius: 24px;
    box-shadow: 0 18px 45px rgb(22 75 120 / 14%), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    isolation: isolate;
    overflow: hidden;
}

/* Rotating conic-gradient glow ring traced along the wrapper edge */
.counter-glow-border {
    position: absolute;
    inset: -2px;
    z-index: 0;
    border-radius: 26px;
    padding: 2px;
    background: conic-gradient(from 0deg, transparent 0%, rgba(255,118,18,.35) 12%, transparent 24%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: counterBorderSpin 6s linear infinite;
    opacity: .8;
    pointer-events: none;
}

/* New sparkle dots drifting across the counter section */
.counter-spark {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,155,39,.9), rgba(255,155,39,0));
    pointer-events: none;
    z-index: 0;
}

.counter-spark-one {
    width: 6px;
    height: 6px;
    left: 12%;
    top: 18%;
    animation: sparkDrift 6s ease-in-out infinite;
}

.counter-spark-two {
    width: 4px;
    height: 4px;
    right: 18%;
    top: 30%;
    animation: sparkDrift 7.5s ease-in-out infinite reverse;
    animation-delay: .8s;
}

.counter-spark-three {
    width: 5px;
    height: 5px;
    right: 30%;
    bottom: 12%;
    animation: sparkDrift 8.5s ease-in-out infinite;
    animation-delay: 1.6s;
}


/* ---------------------------------------------------------
   COUNTER ITEM
--------------------------------------------------------- */

.modern-counter-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex: 1;
    min-width: 0;
    z-index: 2;
    transition: transform 0.35s ease, filter 0.35s ease;
}

    .modern-counter-item:hover {
        transform: translateY(-4px);
    }


/* ---------------------------------------------------------
   ICON WRAPPER
--------------------------------------------------------- */

.counter-icon-wrap {
    position: relative;
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: flex;
    align-items: center;
    justify-content: center;
}


    /* Soft glow behind icon */

    .counter-icon-wrap::before {
        content: "";
        position: absolute;
        width: 58px;
        height: 58px;
        border-radius: 50%;
        opacity: 0.35;
        filter: blur(12px);
        transform: scale(0.9);
        transition: transform 0.35s ease, opacity 0.35s ease;
    }

.modern-counter-item:hover .counter-icon-wrap::before {
    transform: scale(1.12);
    opacity: 0.55;
}

/* Continuous pulsing ring around each icon (new) */
.counter-icon-pulse {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1.5px solid currentColor;
    opacity: 0;
    animation: counterPulseRing 2.8s ease-out infinite;
    pointer-events: none;
}

.counter-orange .counter-icon-pulse {
    color: rgba(255, 116, 18, .55);
}

.counter-blue .counter-icon-pulse {
    color: rgba(22, 135, 223, .5);
}

.counter-purple .counter-icon-pulse {
    color: rgba(125, 32, 232, .5);
    animation-delay: .6s;
}

.counter-blue .counter-icon-pulse {
    animation-delay: .3s;
}


/* ---------------------------------------------------------
   ICON
--------------------------------------------------------- */

.counter-icon {
    position: relative;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 7px 20px rgba(23, 64, 105, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
    z-index: 2;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

    .counter-icon i {
        font-size: 24px;
        line-height: 1;
    }

.modern-counter-item:hover .counter-icon {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 10px 25px rgba(23, 64, 105, 0.14);
}


/* ---------------------------------------------------------
   ORANGE ICON
--------------------------------------------------------- */

.counter-orange .counter-icon-wrap::before {
    background: rgba(255, 122, 24, 0.28);
}

.counter-orange .counter-icon {
    background: linear-gradient( 145deg, #fff7ed 0%, #ffffff 100% );
}

    .counter-orange .counter-icon i {
        color: #ff7412;
    }


/* ---------------------------------------------------------
   BLUE ICON
--------------------------------------------------------- */

.counter-blue .counter-icon-wrap::before {
    background: rgba(37, 145, 231, 0.25);
}

.counter-blue .counter-icon {
    background: linear-gradient( 145deg, #edf8ff 0%, #ffffff 100% );
}

    .counter-blue .counter-icon i {
        color: #1687df;
    }


/* ---------------------------------------------------------
   PURPLE ICON
--------------------------------------------------------- */

.counter-purple .counter-icon-wrap::before {
    background: rgba(132, 57, 235, 0.24);
}

.counter-purple .counter-icon {
    background: linear-gradient( 145deg, #f8f0ff 0%, #ffffff 100% );
}

    .counter-purple .counter-icon i {
        color: #7d20e8;
    }


/* ---------------------------------------------------------
   CONTENT
--------------------------------------------------------- */

.counter-content {
    min-width: 145px;
}

    .counter-content h3 {
        margin: 0 0 2px;
        color: #12365d;
        font-family: inherit;
        font-size: 32px;
        font-weight: 800;
        line-height: 1.05;
        letter-spacing: -1px;
    }

    .counter-content .counter {
        display: inline-block;
    }

.counter-suffix {
    display: inline-block;
    margin-left: 1px;
    font-size: 30px;
    font-weight: 800;
}


/* ---------------------------------------------------------
   DESCRIPTION
--------------------------------------------------------- */

.counter-content p {
    margin: 7px 0 0;
    color: #173c66;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap;
}


/* ---------------------------------------------------------
   DIVIDERS
--------------------------------------------------------- */

.counter-divider {
    width: 1px;
    height: 76px;
    flex: 0 0 1px;
    background: linear-gradient( to bottom, transparent 0%, #cbdcf0 20%, #cbdcf0 80%, transparent 100% );
    opacity: 0.9;
}


/* ---------------------------------------------------------
   DECORATIVE SHAPES
--------------------------------------------------------- */

.counter-bg-shape {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: 0.55;
}

.counter-bg-shape-left {
    width: 115px;
    height: 115px;
    left: -42px;
    bottom: 0;
    border-radius: 0 100% 0 0;
    background: linear-gradient( 135deg, rgba(218, 235, 252, 0.9), rgba(237, 246, 255, 0.15) );
}

.counter-bg-shape-right {
    width: 100px;
    height: 100px;
    right: -25px;
    top: 0;
    border-radius: 0 0 0 100%;
    background: linear-gradient( 135deg, rgba(219, 237, 255, 0.8), rgba(242, 248, 255, 0.1) );
}


/* Small floating circles */

.counter-bg-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.counter-circle-one {
    width: 22px;
    height: 22px;
    left: 17%;
    top: 15px;
    background: rgba(255, 122, 24, 0.08);
}

.counter-circle-two {
    width: 18px;
    height: 18px;
    right: 22%;
    bottom: 15px;
    background: rgba(125, 32, 232, 0.07);
}


/* ---------------------------------------------------------
   SUBTLE ITEM BACKGROUND
--------------------------------------------------------- */

.modern-counter-item::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 90px;
    border-radius: 50%;
    opacity: 0;
    filter: blur(25px);
    z-index: -1;
    transition: opacity 0.35s ease;
}

.modern-counter-item:hover::after {
    opacity: 1;
}

.counter-orange::after {
    background: rgba(255, 122, 24, 0.08);
}

.counter-blue::after {
    background: rgba(22, 135, 223, 0.08);
}

.counter-purple::after {
    background: rgba(125, 32, 232, 0.08);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .modern-counter-wrapper {
        padding: 25px 35px;
    }

    .modern-counter-item {
        gap: 14px;
    }

    .counter-icon-wrap,
    .counter-icon-wrap::before {
        width: 52px;
        height: 52px;
    }

    .counter-icon {
        width: 48px;
        height: 48px;
    }

        .counter-icon i {
            font-size: 21px;
        }

    .counter-content h3 {
        font-size: 28px;
    }

    .counter-suffix {
        font-size: 27px;
    }

    .counter-content p {
        font-size: 12px;
    }
}


/* ---------------------------------------------------------
   TABLET / SMALL MOBILE
--------------------------------------------------------- */

@media (max-width: 767px) {

    .modern-counter-section {
        padding-bottom: 50px;
    }

    .modern-counter-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 20px 25px;
        border-radius: 20px;
    }

    .modern-counter-item {
        justify-content: flex-start;
        padding: 18px 10px;
    }

    .counter-divider {
        width: 80%;
        height: 1px;
        margin: 0 auto;
        background: linear-gradient( to right, transparent, #cbdcf0, transparent );
    }

    .counter-content {
        min-width: auto;
    }

        .counter-content h3 {
            font-size: 29px;
        }

        .counter-content p {
            font-size: 13px;
        }
}


/* ---------------------------------------------------------
   SMALL MOBILE
--------------------------------------------------------- */

@media (max-width: 480px) {

    .modern-counter-wrapper {
        padding: 15px 18px;
    }

    .modern-counter-item {
        gap: 16px;
        padding: 16px 6px;
    }

    .counter-icon-wrap,
    .counter-icon-wrap::before {
        width: 50px;
        height: 50px;
    }

    .counter-icon {
        width: 46px;
        height: 46px;
    }

        .counter-icon i {
            font-size: 20px;
        }

    .counter-content h3 {
        font-size: 27px;
    }

    .counter-suffix {
        font-size: 25px;
    }

    .counter-content p {
        margin-top: 5px;
        font-size: 12px;
    }
}


/* ---------------------------------------------------------
   ACCESSIBILITY
--------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    .modern-counter-item,
    .counter-icon,
    .counter-icon-wrap::before,
    .modern-counter-item::after,
    .counter-glow-border,
    .counter-icon-pulse,
    .counter-spark {
        transition: none;
        animation: none;
    }
}

/* =========================================================
   WHY CHOOSE SECTION (ENHANCED)
========================================================= */

.why-choose-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0;
    background: #f8fbfe;
}

.why-bg-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.why-shape-one {
    width: 450px;
    height: 450px;
    left: -300px;
    top: 100px;
    background: rgba(255, 118, 18, .05);
}

.why-shape-two {
    width: 350px;
    height: 350px;
    right: -250px;
    bottom: -100px;
    background: rgba(255, 116, 18, .05);
}

/* New floating particles drifting through the section (additive) */
.why-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(255,155,39,.55), rgba(255,155,39,0));
}

.why-particle-one {
    width: 10px;
    height: 10px;
    left: 42%;
    top: 12%;
    animation: sparkDrift 7s ease-in-out infinite;
}

.why-particle-two {
    width: 7px;
    height: 7px;
    left: 55%;
    bottom: 18%;
    animation: sparkDrift 9s ease-in-out infinite reverse;
    animation-delay: 1s;
}

.why-particle-three {
    width: 5px;
    height: 5px;
    right: 12%;
    top: 45%;
    background: radial-gradient(circle, rgba(141,66,232,.5), rgba(141,66,232,0));
    animation: sparkDrift 8s ease-in-out infinite;
    animation-delay: 2s;
}

.why-graphic {
    position: relative;
    min-height: 480px;
}

.why-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient( circle, rgba(255, 118, 18, .20), rgba(255, 118, 18, .04) 50%, transparent 72% );
    animation: pulseGlow 4s ease-in-out infinite;
}

.why-number {
    position: absolute;
    left: 0px;
    bottom: 132px;
    color: transparent;
    font-size: 25em;
    line-height: .8;
    font-weight: 900;
    letter-spacing: -14px;
    background: linear-gradient(180deg, #ff9b24, #ff5e0e);
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 15px 20px rgba(255, 105, 15, .16));
    animation: numberFloat 5s ease-in-out infinite;
}

.target-graphic {
    position: absolute;
    width: 240px;
    height: 240px;
    right: 20px;
    top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 25px 55px rgba(30, 84, 120, .15);
    animation: targetFloat 5s ease-in-out infinite;
}

.target-ring {
    position: absolute;
    border-radius: 50%;
}

.target-ring-one {
    width: 220px;
    height: 220px;
    border: 27px solid #ff7612;
    animation: targetRingSpin 14s linear infinite;
}

.target-ring-two {
    width: 155px;
    height: 155px;
    border: 25px solid #ff9b27;
    background: #fff;
}

.target-ring-three {
    width: 80px;
    height: 80px;
    border: 20px solid #fff;
    background: #ff7612;
    box-shadow: 0 0 0 7px rgba(255, 118, 18, .12);
    animation: targetRingPulse 2.6s ease-in-out infinite;
}

.target-center {
    position: relative;
    z-index: 5;
    color: #fff;
    font-size: 23px;
}

.target-arrow {
    position: absolute;
    width: 322px;
    height: 35px;
    top: 180px;
    right: -20px;
    z-index: 8;
    transform: rotate(360deg);
}

    .target-arrow span {
        position: absolute;
        left: 0;
        top: 5px;
        width: 165px;
        height: 10px;
        border-radius: 20px;
        background: linear-gradient(90deg, #fffefd, #ff9b27);
        box-shadow: 0 5px 12px rgba(240, 78, 25, .25);
    }

        .target-arrow span::after {
            content: "";
            position: absolute;
            right: -5px;
            top: -11px;
            width: 0;
            height: 0;
            border-top: 16px solid transparent;
            border-bottom: 16px solid transparent;
            border-left: 30px solid #f79400de;
        }

.why-dot {
    position: absolute;
    border-radius: 50%;
    animation: dotBounce 4s ease-in-out infinite;
}

.why-dot-one {
    width: 12px;
    height: 12px;
    left: 60px;
    top: 60px;
    background: #ff7a16;
}

.why-dot-two {
    width: 8px;
    height: 8px;
    left: 20px;
    top: 145px;
    background: #ff7612;
    animation-delay: .7s;
}

.why-dot-three {
    width: 14px;
    height: 14px;
    right: 10px;
    bottom: 85px;
    background: #ffb05d;
    animation-delay: 1.1s;
}

.why-dot-four {
    width: 9px;
    height: 9px;
    right: 80px;
    bottom: 20px;
    background: #ff9b27;
    animation-delay: 1.6s;
}


/* =========================================================
   TRUSTED BADGE
========================================================= */

.trusted-badge {
    position: absolute;
    left: 10px;
    bottom: 35px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 18px 12px 12px;
    border: 1px solid rgba(255,255,255,.9);
    border-radius: 15px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 18px 40px rgba(25,65,95,.14);
    backdrop-filter: blur(15px);
    z-index: 10;
    animation: floatingCard 4s ease-in-out infinite;
}

.trusted-badge-icon {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, #ff9b27, #ff6611);
}

.trusted-badge strong {
    display: block;
    color: #12345b;
    font-size: 13px;
}

.trusted-badge span {
    display: block;
    margin-top: 2px;
    color: #6b7d92;
    font-size: 10px;
}

.why-content {
    position: relative;
    z-index: 3;
}

    .why-content h2 {
        max-width: 650px;
        margin: 0 0 20px;
        color: #12355c;
        font-size: clamp(32px, 3.5vw, 46px);
        line-height: 1.12;
        font-weight: 800;
        letter-spacing: -1.5px;
    }

        .why-content h2 span {
            display: block;
            background: linear-gradient(90deg, #ff7612, #ff9b27);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

    .why-content p {
        max-width: 700px;
        margin-bottom: 12px;
        color: #60748c;
        font-size: 13px;
        line-height: 1.75;
    }

    .why-content .why-intro {
        color: #48627d;
        font-size: 15px;
        line-height: 1.8;
    }


/* =========================================================
   HIGHLIGHTS (enhanced hover shine)
========================================================= */

.why-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 25px;
}

.why-highlight {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px;
    border: 1px solid #e5eef6;
    border-radius: 14px;
    background: #f7fbff;
    overflow: hidden;
    transition: all .3s ease;
}

    .why-highlight::before {
        content: "";
        position: absolute;
        top: 0;
        left: -60%;
        width: 40%;
        height: 100%;
        background: linear-gradient(120deg, transparent, rgba(255,255,255,.65), transparent);
        transform: skewX(-20deg);
        transition: left .6s ease;
    }

    .why-highlight:hover::before {
        left: 130%;
    }

    .why-highlight:hover {
        transform: translateY(-5px);
        border-color: rgba(255,118,18,.25);
        box-shadow: 0 15px 30px rgba(30,80,110,.09);
    }

.why-highlight-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, #ff7612, #ff9b27);
    box-shadow: 0 8px 18px rgba(255,118,18,.20);
    transition: transform .35s ease;
}

.why-highlight:hover .why-highlight-icon {
    transform: rotate(-6deg) scale(1.08);
}

.why-highlight strong {
    display: block;
    color: #173d65;
    font-size: 15px;
}

.why-highlight span {
    display: block;
    margin-top: 3px;
    color: #75869a;
    font-size: 13px;
    line-height: 1.4;
}


/* =========================================================
   MORE THAN VOUCHERS (ENHANCED)
========================================================= */

.more-than-vouchers-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0;
    color: #fff;
}

section.more-than-vouchers-section::after {
    background: linear-gradient(89.18deg, rgb(0 14 41) 1.58%, rgb(0 14 41 / 75%) 99.36%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    opacity: 0.7;
}

.more-than-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 75% 40%, rgb(255 118 18 / 88%), #00000000 24%), radial-gradient(circle at 5% 100%, rgb(255 116 18 / 25%), transparent 25%);
}

/* New drifting orbs (additive) */
.more-than-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(2px);
    z-index: 9;
}

.more-than-orb-one {
    width: 12px;
    height: 12px;
    left: 20%;
    top: 20%;
    background: radial-gradient(circle, rgba(255, 178, 93, .85), rgb(255 178 93 / 77%));
    animation: sparkDrift 8s ease-in-out infinite;
}

.more-than-orb-two {
    width: 8px;
    height: 8px;
    left: 45%;
    bottom: 22%;
    background: radial-gradient(circle, rgba(255, 178, 93, .7), rgb(255 178 93 / 89%));
    animation: sparkDrift 10s ease-in-out infinite reverse;
    animation-delay: 1.4s;
}

.more-than-content {
    position: relative;
    z-index: 3;
}

    .more-than-content h2 {
        margin: 0 0 15px;
        color: #fff;
        font-size: clamp(32px, 3.5vw, 45px);
        line-height: 1.15;
        font-weight: 800;
    }

    .more-than-content p {
        max-width: 650px;
        margin-bottom: 30px;
        color: rgba(255,255,255,.78);
        font-size: 14px;
        line-height: 1.8;
    }

.service-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.service-feature {
    display: flex;
    /* align-items: center; */
    gap: 9px;
    background: #dee2e630;
    padding: 10px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 12px;
    text-align: center;
}

.service-icon {
    position: relative;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #ff9a22, #ff6711);
    box-shadow: 0 10px 22px rgba(255, 105, 15, .25);
    font-size: 15px;
    transition: transform .35s ease, box-shadow .35s ease;
}

.service-feature:hover .service-icon {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 14px 28px rgba(255, 105, 15, .38);
}

.service-feature strong {
    display: block;
    color: #f5ae2f;
    font-size: 14px;
    font-weight: 800;
}

.service-feature span {
    display: block;
    color: #fff;
    font-size: 14px;
}

.more-than-image {
    position: relative;
    min-height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .more-than-image img {
        position: relative;
        width: 100%;
        max-width: 500px;
        height: 344px;
        object-fit: cover;
        border-radius: 22px 0 22px 0;
        z-index: 3;
        box-shadow: 0 25px 60px rgba(0,0,0,.25);
        transition: transform .5s ease;
    }

    .more-than-image:hover img {
        transform: translateY(-6px);
    }

.image-frame {
    position: absolute;
    width: 100%;
    max-width: 500px;
    height: 340px;
    right: -15px;
    top: 10px;
    border: 7px solid #ff7510;
    border-radius: 25px 0 25px 0;
    z-index: 2;
    transform: skewX(-4deg);
    transition: transform .5s ease, border-color .5s ease;
}

.more-than-image:hover .image-frame {
    transform: skewX(-4deg) translate(4px, -4px);
}

.image-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(255, 122, 24, .18);
    filter: blur(45px);
    animation: pulseGlow 5s ease-in-out infinite;
}


/* =========================================================
   MISSION SECTION (ENHANCED)
========================================================= */

.mission-modern-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0;
    background: radial-gradient(circle at 10% 20%, rgba(255, 118, 18, .07), transparent 28%), radial-gradient(circle at 90% 80%, rgba(141, 66, 232, .06), transparent 28%), #f8fbfe;
}

.mission-bg-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.mission-circle-one {
    width: 450px;
    height: 450px;
    left: -300px;
    top: 200px;
    background: rgb(255 118 18 / 18%);
}

.mission-circle-two {
    width: 400px;
    height: 400px;
    right: -280px;
    bottom: -150px;
    background: rgba(141,66,232,.045);
}

/* New drifting particles (additive) */
.mission-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.mission-particle-one {
    width: 8px;
    height: 8px;
    left: 30%;
    top: 8%;
    background: radial-gradient(circle, rgba(255,155,39,.6), rgba(255,155,39,0));
    animation: sparkDrift 7.5s ease-in-out infinite;
}

.mission-particle-two {
    width: 6px;
    height: 6px;
    right: 20%;
    bottom: 10%;
    background: radial-gradient(circle, rgba(141,66,232,.55), rgba(141,66,232,0));
    animation: sparkDrift 9.5s ease-in-out infinite reverse;
    animation-delay: 1.2s;
}

.mission-heading {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto 45px;
    text-align: center;
}

    .mission-heading h2 {
        margin: 0 0 15px;
        color: #12355c;
        font-size: clamp(32px, 3.5vw, 46px);
        line-height: 1.13;
        font-weight: 800;
        letter-spacing: -1.2px;
    }

        .mission-heading h2 span {
            display: block;
            background: linear-gradient(90deg, #ff7110, #ff9c2b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

    .mission-heading p {
        max-width: 600px;
        margin: auto;
        color: #6a7e94;
        font-size: 14px;
        line-height: 1.7;
    }


/* =========================================================
   MISSION TABS (visual polish only — data-bs-toggle untouched)
========================================================= */

.modern-mission-tabs {
    position: relative;
    z-index: 5;
}

.modern-tab-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 35px;
}

    .modern-tab-nav .nav-links {
        position: relative;
        display: flex;
        align-items: center;
        gap: 9px;
        min-width: 175px;
        padding: 13px 20px;
        border: 1px solid #e0eaf3;
        border-radius: 14px;
        color: #55708a;
        background: #fff;
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
        overflow: hidden;
        transition: all .3s ease;
    }

        .modern-tab-nav .nav-links::after {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            background: linear-gradient(90deg, #ff7612, #ff9b27);
            opacity: 0;
            transform: scale(.92);
            transition: opacity .35s ease, transform .35s ease;
            z-index: -1;
        }

        .modern-tab-nav .nav-links:hover {
            color: #12355c;
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(20,70,105,.08);
        }

        .modern-tab-nav .nav-links.active {
            color: #fff;
            border-color: transparent;
            background: linear-gradient(90deg, #ff7612, #ff9b27);
            box-shadow: 0 12px 28px rgba(255,118,18,.23);
            animation: tabActivePop .35s ease;
        }

.tab-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #ff7612;
    background: #fff4ec;
    transition: transform .35s ease;
}

.modern-tab-nav .nav-links:hover .tab-icon {
    transform: rotate(-8deg) scale(1.08);
}

.modern-tab-nav .nav-links.active .tab-icon {
    color: #fff;
    background: rgba(255,255,255,.16);
}


/* =========================================================
   TAB CONTENT (softer entrance for the existing fade)
========================================================= */

.modern-tab-content {
    position: relative;
    min-height: 420px;
    padding: 45px;
    overflow: hidden;
    border: 1px solid #e3ecf4;
    border-radius: 28px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 20px 55px rgba(30,75,110,.08);
}

    /* Bootstrap already toggles .show/.active — we only smooth the transition */
    .modern-tab-content .tab-pane.fade {
        transition: opacity .45s ease, transform .45s ease;
        transform: translateY(8px);
    }

        .modern-tab-content .tab-pane.fade.show {
            transform: translateY(0);
        }

.mission-text-card {
    position: relative;
    padding-right: 35px;
}

.mission-number {
    position: absolute;
    top: -15px;
    right: 30px;
    color: rgba(20,67,103,.045);
    font-size: 90px;
    line-height: 1;
    font-weight: 900;
}

.mission-label {
    display: inline-block;
    margin-bottom: 10px;
    color: #ff7410;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.mission-text-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 20px;
    color: #14385e;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
}

    .mission-text-card h3 span {
        display: block;
        background: linear-gradient(90deg, #ff7612, #ff9b27);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.mission-text-card p {
    position: relative;
    z-index: 2;
    margin-bottom: 12px;
    color: #667c93;
    font-size: 14px;
    line-height: 27px;
    font-weight: 500;
}

.mission-points {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

    .mission-points span {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        padding: 6px 15px;
        border-radius: 20px;
        color: #55708a;
        background: #fff5ed;
        font-size: 12px;
        font-weight: 700;
        transition: transform .3s ease, background .3s ease, color .3s ease;
    }

        .mission-points span:hover {
            transform: translateY(-2px);
            background: linear-gradient(90deg, #ff7612, #ff9b27);
            color: #fff;
        }

    .mission-points i {
        color: #ff7612;
    }

    .mission-points span:hover i {
        color: #fff;
    }


/* =========================================================
   MISSION IMAGE
========================================================= */

.mission-image-card {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

    .mission-image-card img {
        position: relative;
        width: 100%;
        height: 340px;
        object-fit: cover;
        border-radius: 22px;
        z-index: 3;
        box-shadow: 0 25px 50px rgba(25,72,108,.15);
        transition: transform .5s ease;
    }

    .mission-image-card:hover img {
        transform: translateY(-6px) scale(1.015);
    }

.mission-image-decoration {
    position: absolute;
    width: 85%;
    height: 85%;
    right: -5px;
    bottom: 0;
    border: 5px solid #ff7510;
    border-radius: 24px;
    transform: rotate(3deg);
    z-index: 1;
    transition: transform .5s ease;
}

.mission-image-card:hover .mission-image-decoration {
    transform: rotate(0deg);
}

.vision-decoration {
    border-color: #ff9b27;
}

.goal-decoration {
    border-color: #9345e9;
}

.image-floating-label {
    position: absolute;
    left: 0;
    bottom: 15px;
    z-index: 7;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 17px 11px 11px;
    border-radius: 13px;
    color: #173d65;
    background: rgba(255,255,255,.95);
    box-shadow: 0 15px 35px rgba(20,70,105,.14);
    backdrop-filter: blur(10px);
    animation: floatingCard 4.5s ease-in-out infinite;
}

    .image-floating-label i {
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        color: #fff;
        background: linear-gradient(135deg, #ff9a24, #ff6410);
    }

    .image-floating-label span {
        font-size: 15px;
        font-weight: 800;
    }


/* =========================================================
   FINAL CTA (ENHANCED)
========================================================= */

.about-final-cta {
    position: relative;
    overflow: hidden;
    padding: 45px 0;
    background: radial-gradient(circle at 5% 100%, rgba(255,118,18,.10), transparent 25%), radial-gradient(circle at 95% 0%, rgba(255,116,18,.09), transparent 25%), #f5faff;
}

/* New sparkle accents (additive) */
.cta-spark {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(255,155,39,.6), rgba(255,155,39,0));
}

.cta-spark-one {
    width: 8px;
    height: 8px;
    left: 30%;
    top: 15%;
    animation: sparkDrift 6.5s ease-in-out infinite;
}

.cta-spark-two {
    width: 6px;
    height: 6px;
    right: 25%;
    bottom: 20%;
    animation: sparkDrift 8s ease-in-out infinite reverse;
    animation-delay: 1s;
}

.cta-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px 40px;
    overflow: hidden;
    border: 1px solid #e0ebf4;
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(25,75,110,.07);
}

/* Rotating conic glow traced around the CTA card border */
.cta-border-glow {
    position: absolute;
    inset: -2px;
    z-index: 0;
    border-radius: 27px;
    padding: 2px;
    background: conic-gradient(from 0deg, transparent 0%, rgba(255,118,18,.4) 10%, transparent 22%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: counterBorderSpin 7s linear infinite;
    pointer-events: none;
}

.cta-wrapper > * {
    position: relative;
    z-index: 1;
}

.cta-rocket {
    flex: 0 0 65px;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ff7511;
    background: #fff1e6;
    font-size: 25px;
    animation: rocketFloat 3s ease-in-out infinite;
}

.cta-content {
    flex: 1;
}

    .cta-content > span {
        display: block;
        margin-bottom: 5px;
        color: #ff7410;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 1.3px;
    }

    .cta-content h2 {
        margin: 0 0 5px;
        color: #12355c;
        font-size: 25px;
        line-height: 1.2;
        font-weight: 800;
    }

    .cta-content p {
        margin: 0;
        color: #71849a;
        font-size: 11px;
        line-height: 1.5;
    }

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 15px 25px;
    border-radius: 30px;
    color: #fff !important;
    background: linear-gradient(90deg, #ff7612, #ff9b27);
    box-shadow: 0 12px 25px rgba(255,116,18,.22);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: all .3s ease;
}

    .cta-button:hover {
        color: #fff !important;
        transform: translateY(-3px);
        box-shadow: 0 18px 35px rgba(255,116,18,.30);
    }

    .cta-button i {
        transition: transform .3s ease;
    }

    .cta-button:hover i {
        transform: translateX(5px);
    }

.cta-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.cta-decoration-one {
    width: 100px;
    height: 100px;
    left: 10%;
    top: -60px;
    border: 2px dashed rgba(255,118,18,.18);
    animation: orbitRotate 15s linear infinite;
}

.cta-decoration-two {
    width: 80px;
    height: 80px;
    right: 5%;
    bottom: -45px;
    border: 2px dotted rgba(255,116,18,.20);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes aboutBackgroundFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(15px, 20px, 0);
    }
}

@keyframes imageFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes floatingCard {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

@keyframes dotBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-13px) scale(1.15);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(.95);
        opacity: .65;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.08);
        opacity: 1;
    }
}

@keyframes numberFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes targetFloat {
    0%, 100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

@keyframes orbitRotate {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes orbitRotateReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0);
    }
}

@keyframes rocketFloat {
    0%, 100% {
        transform: translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateY(-7px) rotate(5deg);
    }
}

/* New keyframes used by the enhanced sections above */

@keyframes counterBorderSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes counterPulseRing {
    0% {
        transform: scale(.85);
        opacity: .55;
    }

    80% {
        opacity: 0;
    }

    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

@keyframes sparkDrift {
    0%, 100% {
        transform: translate(0, 0);
        opacity: .5;
    }

    50% {
        transform: translate(14px, -18px);
        opacity: 1;
    }
}

@keyframes targetRingSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes targetRingPulse {
    0%, 100% {
        box-shadow: 0 0 0 7px rgba(255, 118, 18, .12);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(255, 118, 18, .05);
    }
}

@keyframes tabActivePop {
    0% {
        transform: scale(.95);
    }

    60% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1199px) {

    .benefit-list {
        gap: 10px;
    }

    .benefits-visual {
        min-height: 450px;
    }

    .benefits-image-card {
        height: fit-content;
    }

    .floating-cert-card {
        left: 0;
    }

    .floating-growth-card {
        right: 0;
    }

    .service-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .target-graphic {
        right: 0;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .about-benefits-section {
        padding: 40px 20px
    }

    .benefits-content {
        max-width: 760px;
        margin: auto;
    }

    .benefits-visual {
        max-width: 650px;
        min-height: 450px;
        margin: 20px auto 0;
    }

    .modern-counter-wrapper {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 35px;
    }

    .counter-divider {
        width: 80px;
        height: 1px;
        margin: auto;
    }

    .modern-counter-item {
        justify-content: flex-start;
        max-width: 250px;
        margin: auto;
    }

    .why-choose-section {
        padding: 75px 0;
    }

    .why-graphic {
        max-width: 550px;
        min-height: 440px;
        margin: auto;
    }

    .why-content {
        max-width: 760px;
        margin: auto;
    }

    .more-than-vouchers-section {
        padding: 75px 0;
    }

    .more-than-content {
        margin-bottom: 45px;
    }

    .more-than-image {
        max-width: 600px;
        margin: auto;
    }

    .mission-modern-section {
        padding: 75px 0;
    }

    .modern-tab-content {
        padding: 35px;
    }

    .mission-text-card {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .mission-image-card {
        max-width: 600px;
        margin: auto;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .about-benefits-section {
        padding: 40px 20px
    }

    .benefits-title {
        font-size: 31px;
    }

    .benefits-intro {
        font-size: 14px;
    }

    .benefit-list {
        grid-template-columns: 1fr;
    }

    .benefits-visual {
        min-height: 360px;
    }

    .benefits-image-card {
        width: 90%;
        height: fit-content;
    }

    .orbit-one {
        width: 330px;
        height: 330px;
    }

    .orbit-two {
        width: 390px;
        height: 390px;
    }

    .floating-growth-card {
        display: none !important;
    }

    .floating-cert-card {
        display: none !important;
    }

    .modern-counter-wrapper {
        padding: 28px 20px;
        border-radius: 22px;
    }

    .modern-counter-item {
        gap: 12px;
    }

    .counter-icon {
        width: 50px;
        height: 50px;
    }

    .counter-content h3 {
        font-size: 27px;
    }

    .why-choose-section {
        padding: 60px 0;
    }

    .why-graphic {
        min-height: 350px;
        transform: scale(.85);
        transform-origin: center;
        margin-top: -20px;
        margin-bottom: -20px;
    }

    .why-content h2 {
        font-size: 31px;
    }

    .why-highlights {
        grid-template-columns: 1fr;
    }

    .service-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 10px;
    }


    .more-than-image img {
        height: 280px;
    }

    .image-frame {
        height: 290px;
    }

    .modern-tab-nav {
        flex-direction: column;
        gap: 9px;
    }

        .modern-tab-nav .nav-links {
            width: 100%;
            justify-content: center;
        }

    .modern-tab-content {
        padding: 25px 18px;
        border-radius: 20px;
    }

    .mission-text-card h3 {
        font-size: 25px;
    }

    .mission-text-card p {
        font-size: 12px;
    }

    .mission-image-card {
        min-height: 280px;
    }

        .mission-image-card img {
            height: 280px;
        }

    .image-floating-label {
        left: 8px;
        bottom: 8px;
    }

    .cta-wrapper {
        flex-direction: column;
        align-items: flex-start;
        padding: 25px;
        gap: 18px;
    }

    .cta-button-wrap {
        width: 100%;
    }

    .cta-button {
        justify-content: center;
        width: 100%;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */



@media (max-width: 480px) {
    .contact-hero-content {
        padding-bottom: 0px;
    }

    .floating-growth-card {
        display: none;
    }

    .floating-cert-card {
        display: none;
    }

    .benefits-title, .why-content h2 {
        font-size: 20px;
    }

    .section-eyebrow {
        font-size: 10px;
    }

    .benefits-visual {
        min-height: 300px;
    }

    .benefits-image-card {
        width: 92%;
        height: fit-content;
        border-radius: 17px;
    }

    .image-orange-corner {
        width: 65px;
        height: 65px;
    }

    .image-blue-corner {
        width: 75px;
        height: 55px;
    }

    .floating-cert-card,
    .floating-growth-card {
        padding: 8px 10px 8px 8px;
        transform: scale(.72);
    }



    .floating-cert-icon,
    .growth-icon {
        width: 35px;
        height: 35px;
    }

    .why-graphic {
        min-height: 300px;
        transform: scale(.68);
        margin-top: -50px;
        margin-bottom: -55px;
    }

    .why-number {
        left: 0;
        bottom: 0 !important;
        font-size: 20em !important;
    }

    .trusted-badge {
        left: 0;
        bottom: 10px;
        transform: scale(.85);
        transform-origin: left bottom;
    }

    .service-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .more-than-content h2 {
        font-size: 28px;
    }

    .more-than-image {
        min-height: 260px;
    }

        .more-than-image img {
            height: 230px;
        }

    .image-frame {
        height: 240px;
    }

    .mission-modern-section {
        padding: 60px 0;
    }

    .mission-heading h2 {
        font-size: 28px;
    }

    .modern-tab-content {
        padding: 20px 15px;
    }

    .mission-text-card h3 {
        font-size: 23px;
    }

    .mission-image-card {
        min-height: 230px;
    }

        .mission-image-card img {
            height: 230px;
        }

    .cta-content h2 {
        font-size: 21px;
    }
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .about-benefits-section *,
    .modern-counter-section *,
    .why-choose-section *,
    .more-than-vouchers-section *,
    .mission-modern-section *,
    .about-final-cta * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
