/* =============================================
   FONDOSTECH ABOUT US PAGE — PAGE SPECIFIC STYLES ONLY
   Reuses assets/css/global.css & README.md Design System
   ============================================= */

/* ---------------------------------------------
   1. HERO SECTION & BADGES
   --------------------------------------------- */
.about-hero-section {
    background-color: var(--bg-light, #F5FAFF);
    background-image:
        radial-gradient(circle at 50% -20%, rgba(219, 234, 254, 0.7) 0%, rgba(245, 250, 255, 0.82) 55%, rgba(255, 255, 255, 0.95) 100%),
        url('../../images/about-hero-banner-new.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--secondary-color, #212529);
    padding: 7.5rem 0 5rem;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-active, #CEE4FD);
}

/* Subtle Geometric Grid Lines Overlay */
.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(to right, rgba(8, 106, 216, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(8, 106, 216, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 75%);
    pointer-events: none;
}

/* Ambient Blue Glow Orbs */
.about-glow-orb-1 {
    position: absolute;
    top: -100px;
    left: 10%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(8, 106, 216, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(70px);
    pointer-events: none;
    animation: orbPulseLight1 8s ease-in-out infinite alternate;
}

.about-glow-orb-2 {
    position: absolute;
    bottom: -80px;
    right: 10%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(8, 106, 216, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(70px);
    pointer-events: none;
    animation: orbPulseLight2 10s ease-in-out infinite alternate;
}

@keyframes orbPulseLight1 {
    0% {
        transform: translate(0, 0) scale(0.95);
    }

    100% {
        transform: translate(30px, 20px) scale(1.12);
    }
}

@keyframes orbPulseLight2 {
    0% {
        transform: translate(0, 0) scale(0.95);
    }

    100% {
        transform: translate(-30px, -20px) scale(1.12);
    }
}

.about-hero-badge-wrap {
    border-color: var(--border-active, #CEE4FD) !important;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
    padding: 7px 15px;
}

.about-hero-badge-wrap:hover {
    transform: translateY(-2px);
}

.about-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color, #086AD8);
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(8, 106, 216, 0.5);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(8, 106, 216, 0.6);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(8, 106, 216, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(8, 106, 216, 0);
    }
}

.about-hero-title {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.5px;
    color: var(--secondary-color, #212529);
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 2;
}

/* Yrs Experience Badge Card */
.years-experience-card {
    background: var(--white, #FFFFFF);
    border: 1px solid var(--border-active, #CEE4FD);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(8, 106, 216, 0.08);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.years-experience-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-color, #086AD8);
    box-shadow: 0 16px 36px rgba(8, 106, 216, 0.14);
}

.years-number {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    color: var(--primary-color, #086AD8);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.years-label {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--secondary-color, #212529);
    line-height: 1.45;
}

/* Stats Row Below Hero */
.about-stats-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-top: 3rem;
    border-top: 1px solid var(--border-active, #CEE4FD);
    margin-top: 3.5rem;
    flex-wrap: wrap;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 0.5rem 1rem;
}

.stat-val {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color, #086AD8);
    line-height: 1;
    margin-bottom: 0.35rem;
}

.stat-txt {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-muted, #6C757D);
}

/* ---------------------------------------------
   2. REUSABLE CARD COMPONENT (.about-card)
   --------------------------------------------- */
.about-card {
    background: var(--white, #FFFFFF);
    border: 1px solid var(--border-active, #CEE4FD);
    border-radius: 1.5rem;
    padding: 2.25rem 2rem;
    /* height: 100%; */
    box-shadow: 0 4px 20px rgba(33, 37, 41, 0.04);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color, #086AD8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-card:hover::before {
    opacity: 1;
}

.about-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-color, #086AD8);
    box-shadow: 0 14px 32px rgba(8, 106, 216, 0.12);
}

.about-card-watermark {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    font-size: 1.75rem;
    font-weight: 900;
    color: rgba(8, 106, 216, 0.1);
    pointer-events: none;
}

.about-card-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: var(--primary-color, #086AD8);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.about-card-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--secondary-color, #212529);
    margin-bottom: 0.75rem;
}

.about-card-text {
    font-size: 0.9875rem;
    line-height: 1.65;
    color: var(--text-body, #495057);
    margin: 0;
}

.about-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 1.25rem;
    background: rgba(8, 106, 216, 0.08);
    color: var(--primary-color, #086AD8);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.about-card:hover .about-icon-box {
    transform: scale(1.08);
    background: var(--primary-color, #086AD8);
    color: #ffffff;
}

.leader-avatar-circle {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--primary-color, #086AD8);
    color: var(--white, #FFFFFF);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 6px 18px rgba(8, 106, 216, 0.25);
}

.leader-role-tag {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--primary-color, #086AD8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

/* ---------------------------------------------
   3. SECTIONS WRAPPERS & BACKGROUNDS
   --------------------------------------------- */
.guiding-beliefs-section {
    padding: 5.5rem 0;
    background: var(--white, #FFFFFF);
}

/* Split Image Showcase Styling */
.about-image-showcase-wrapper {
    position: relative;
    padding: 0.5rem;
}

.about-image-card {
    border-color: var(--border-active, #CEE4FD) !important;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-image-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(8, 106, 216, 0.18) !important;
}

.about-floating-glass-badge {
    position: absolute;
    bottom: -18px;
    left: -18px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-active, #CEE4FD);
    padding: 0.85rem 1.35rem;
    border-radius: 1.25rem;
    box-shadow: 0 12px 32px rgba(8, 106, 216, 0.18);
    z-index: 3;
    animation: floatBadge 4s ease-in-out infinite alternate;
}

@keyframes floatBadge {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-8px);
    }
}

.badge-icon-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-color, #086AD8);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
}

.about-icon-sm {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(8, 106, 216, 0.1);
    color: var(--primary-color, #086AD8);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.75rem;
}

.timeline-section {
    padding: 5.5rem 0;
    background: var(--bg-light, #F5FAFF);
    border-top: 1px solid var(--border-active, #CEE4FD);
    border-bottom: 1px solid var(--border-active, #CEE4FD);
}

.why-choose-section {
    padding: 5.5rem 0;
    background: var(--primary-color, #086AD8);
    color: #ffffff;
    border-top: none;
    border-bottom: none;
}

.why-choose-section .section-label {
    color: #ffffff;
}

.why-choose-section .section-title {
    color: #ffffff;
}

.why-choose-section .section-title .text-primary-custom {
    color: #ffffff !important;
}

.why-choose-section .section-desc {
    color: #ffffff;
    opacity: 0.92;
}

.why-choose-section .about-card {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.why-choose-section .about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
    border-color: #ffffff;
}

.why-choose-section .about-card-title {
    color: #0f172a;
}

.why-choose-section .about-card-text {
    color: #475569;
}

.why-choose-section .about-icon-box {
    background: rgba(8, 106, 216, 0.08);
    color: var(--primary-color, #086AD8);
}

.why-choose-section .about-card:hover .about-icon-box {
    background: var(--primary-color, #086AD8);
    color: #ffffff;
}

.founders-section {
    padding: 5.5rem 0;
    background: var(--primary-color, #086AD8);
    color: #ffffff;
}

.founders-section .section-label {
    color: #ffffff;
}

.founders-section .section-title {
    color: #ffffff;
}

.founders-section .section-title .text-primary-custom {
    color: #ffffff !important;
}

.founders-section .section-desc {
    color: #ffffff;
    opacity: 0.92;
}

.founders-section .about-card {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 1.5rem;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.14);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founders-section .about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.24);
    border-color: #ffffff;
}

.founders-section .about-card-title {
    color: #0f172a;
    margin-bottom: 1rem !important;
}

.founders-section .about-card-text {
    color: #475569;
}

.founders-section .about-card-badge {
    color: #086ad8;
    background: #eaf4ff;
    border: 1px solid #c0dcfa;
    border-radius: 1rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.72rem;
}

.founder-photo-wrapper {
    position: relative;
    display: inline-block;
    margin: 0 auto 1rem;
}

.founder-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 18%;
    margin: 0;
    display: block;
    border: 3px solid var(--primary-color, #086AD8);
    box-shadow: 0 8px 24px rgba(8, 106, 216, 0.22);
    background: #dbeafe;
}

.founder-linkedin-btn {
    position: absolute;
    bottom: 6px;
    right: 2px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #0077b5;
    color: #ffffff;
    border: 2.5px solid #ffffff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
}

.founder-linkedin-btn:hover {
    transform: scale(1.12);
    background: #005f8d;
    box-shadow: 0 5px 16px rgba(0, 119, 181, 0.4);
    color: #ffffff;
}

.leadership-section {
    padding: 5.5rem 0;
    background: var(--bg-light, #F5FAFF);
    border-top: 1px solid var(--border-active, #CEE4FD);
    border-bottom: 1px solid var(--border-active, #CEE4FD);
}

.advisory-section {
    padding: 5.5rem 0;
    background: var(--bg-light, #F5FAFF);
    border-top: 1px solid var(--border-active, #CEE4FD);
}

/* ---------------------------------------------
   4. OUR TEAM SLIDER LOOP STYLES
   --------------------------------------------- */
.team-slider-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 0.5rem 0 1.5rem;
}

.team-slider-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.team-slide-card {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 290px;
}

.team-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid var(--border-active, #CEE4FD);
    color: var(--primary-color, #086AD8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(33, 37, 41, 0.04);
    transition: all 0.25s ease;
}

.team-nav-btn:hover {
    background: var(--primary-color, #086AD8);
    color: #ffffff;
    border-color: var(--primary-color, #086AD8);
    box-shadow: 0 6px 18px rgba(8, 106, 216, 0.3);
}

/* ---------------------------------------------
   5. VERTICAL TIMELINE SECTION
   --------------------------------------------- */
.timeline-wrap {
    position: relative;
    max-width: 860px;
    margin: 3rem auto 0;
    padding-left: 2.5rem;
}

.timeline-wrap::before {
    content: '';
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 8px;
    width: 3px;
    background: var(--border-active, #CEE4FD);
    border-radius: 3px;
}

/* Active Dynamic Scroll Progress Bar */
.timeline-progress-bar {
    position: absolute;
    top: 10px;
    left: 8px;
    width: 3px;
    height: 0%;
    background: var(--primary-color, #086AD8);
    border-radius: 3px;
    transition: height 0.08s linear;
    z-index: 1;
    box-shadow: 0 0 10px rgba(8, 106, 216, 0.4);
}

.timeline-item {
    position: relative;
    margin-bottom: 2.25rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -2.5rem;
    top: 0.35rem;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--white, #FFFFFF);
    border: 3.5px solid var(--border-active, #CEE4FD);
    box-shadow: 0 0 8px rgba(33, 37, 41, 0.06);
    transition: all 0.35s ease;
    z-index: 2;
}

.timeline-item.active-step .timeline-dot,
.timeline-item:hover .timeline-dot {
    background: var(--primary-color, #086AD8);
    border-color: var(--primary-color, #086AD8);
    transform: scale(1.2);
    box-shadow: 0 0 14px rgba(8, 106, 216, 0.45);
}

.timeline-item.active-step .about-card {
    border-color: var(--primary-color, #086AD8);
    box-shadow: 0 12px 30px rgba(8, 106, 216, 0.12);
}

.timeline-year {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-color, #086AD8);
    background: rgba(8, 106, 216, 0.08);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    margin-bottom: 0.5rem;
}

/* ---------------------------------------------
   6. MISSION & VALUES LIGHT CONTAINER
   --------------------------------------------- */
.mission-values-section {
    padding: 5.5rem 0;
    background: var(--bg-light, #F5FAFF);
    border-top: 1px solid var(--border-active, #CEE4FD);
    border-bottom: 1px solid var(--border-active, #CEE4FD);
}

.mission-banner-card {
    background: var(--white, #FFFFFF);
    border: 1.5px solid var(--border-active, #CEE4FD);
    color: var(--secondary-color, #212529);
    border-radius: 1.75rem;
    padding: 3.5rem 3rem;
    box-shadow: 0 12px 40px rgba(8, 106, 216, 0.08);
}

.pillar-tag-badge {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--primary-color, #086AD8);
    background: rgba(8, 106, 216, 0.08);
    padding: 0.35rem 0.9rem;
    border-radius: 1rem;
    text-transform: uppercase;
    display: inline-block;
}

.pillar-check-item {
    background: var(--bg-light, #F5FAFF);
    border: 1px solid var(--border-active, #CEE4FD);
    border-radius: 0.85rem;
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 0.9375rem;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.pillar-check-item:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color, #086AD8);
}

.pillar-check-item .check-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary-color, #086AD8);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
}

.mission-tab-nav {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.mission-tab-btn {
    background: var(--white, #FFFFFF);
    border: 1px solid var(--border-active, #CEE4FD);
    color: #1e293b;
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.6rem 1.4rem;
    border-radius: 2rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(33, 37, 41, 0.03);
    transition: all 0.25s ease;
}

.mission-tab-btn:hover {
    border-color: var(--primary-color, #086AD8);
    color: var(--primary-color, #086AD8);
    transform: translateY(-2px);
}

.mission-tab-btn.active {
    background: var(--primary-color, #086AD8);
    color: var(--white, #FFFFFF);
    border-color: var(--primary-color, #086AD8);
    box-shadow: 0 6px 20px rgba(8, 106, 216, 0.3);
}

.mission-tab-pane {
    display: none;
    animation: paneFadeIn 0.35s ease forwards;
}

@keyframes paneFadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

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

.mission-tab-pane.active {
    display: block;
}

.mission-pane-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color, #212529);
}

.mission-pane-desc {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-body, #495057);
    max-width: 820px;
}

/* ---------------------------------------------
   7. METRICS BAR
   --------------------------------------------- */
.metrics-bar-section {
    padding: 3rem 0;
    background: var(--white, #FFFFFF);
}

.metrics-bar-card {
    background: var(--primary-color, #086AD8);
    color: var(--white, #FFFFFF);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(8, 106, 216, 0.2);
}

.metric-col {
    text-align: center;
}

.metric-num {
    font-size: 2.65rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.35rem;
}

.metric-lbl {
    font-size: 0.9375rem;
    font-weight: 600;
    opacity: 0.95;
}

/* ---------------------------------------------
   8. CTA BANNER
   --------------------------------------------- */
.about-cta-section {
    padding: 4rem 0 6rem;
    background: var(--bg-light, #F5FAFF);
}

.about-cta-card {
    background: var(--primary-color, #086AD8);
    color: var(--white, #FFFFFF);
    border-radius: 1.5rem;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(8, 106, 216, 0.25);
}

.about-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-cta-desc {
    font-size: 1.125rem;
    color: var(--white, #FFFFFF);
    opacity: 0.95;
    max-width: 680px;
    margin: 0 auto 2.25rem;
}

.cta-hover-btn svg {
    transition: transform 0.3s ease;
}

.cta-hover-btn:hover svg {
    transform: translateX(4px);
}

.cta-hover-btn:hover {
    background: #ffffff !important;
    color: #086ad8 !important;
    border-color: #ffffff !important;
}

.ft-footer-cta {
    display: none;
}

footer[role="contentinfo"] {
    padding-top: 4rem;
}

/* Tablet Responsive (Max 991.98px) */
@media (max-width: 991.98px) {
    .about-hero-title {
        font-size: 2.25rem;
    }

    .mission-banner-card {
        padding: 2.5rem 1.75rem;
    }

    .about-cta-title {
        font-size: 2rem;
    }

    .about-cta-card {
        padding: 3rem 1.5rem;
    }

    .team-slide-card {
        flex: 0 0 calc(50% - 0.75rem);
    }

    .about-floating-glass-badge {
        left: 10px;
        bottom: -15px;
        padding: 0.65rem 1rem;
    }

    .badge-icon-circle {
        width: 34px;
        height: 34px;
        font-size: 0.95rem;
    }
}

/* Mobile Responsive (Max 575.98px) */
@media (max-width: 575.98px) {
    .about-hero-section {
        padding: 6rem 0 3.5rem;
    }

    .about-hero-title {
        font-size: 1.75rem;
    }

    .years-number {
        font-size: 3rem;
    }

    .years-experience-card {
        padding: 1.75rem 1.25rem;
    }

    /* Stats Grid Mobile 2x2 */
    .about-stats-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding-top: 2rem;
        margin-top: 2.5rem;
    }

    .stat-val {
        font-size: 2rem;
    }

    .stat-txt {
        font-size: 0.8125rem;
    }

    /* Split Image Showcase Mobile */
    .about-floating-glass-badge {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 1rem;
        width: 100%;
        animation: none;
    }

    /* Vertical Timeline Mobile Optimization */
    .timeline-wrap {
        padding-left: 1.6rem;
        margin-top: 2rem;
    }

    .timeline-wrap::before,
    .timeline-progress-bar {
        left: 7px;
        top: 6px;
    }

    .timeline-item {
        margin-bottom: 1.75rem;
    }

    .timeline-dot {
        left: -1.6rem;
        top: 1.15rem;
        width: 16px;
        height: 16px;
        border-width: 3px;
    }

    .timeline-item .about-card {
        padding: 1.35rem 1.15rem;
    }

    .timeline-year {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }

    /* Mission Tabs Mobile */
    .mission-tab-nav {
        gap: 0.5rem;
    }

    .mission-tab-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .mission-pane-title {
        font-size: 1.5rem;
    }

    /* Metrics Bar Mobile */
    .metric-num {
        font-size: 2rem;
    }

    .metric-lbl {
        font-size: 0.8125rem;
    }

    /* Team Slider Mobile */
    .team-slide-card {
        flex: 0 0 100%;
    }
}

/* =============================================
   Insurer Logos Marquee Section (.ic-section)
   ============================================= */
.ic-section {
    padding: 5rem 0;
    background-color: var(--white, #ffffff);
    overflow: hidden;
}

.ic-logos-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    user-select: none;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.ic-logos-track {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    animation: icMarqueeAbout 50s linear infinite;
    will-change: transform;
    flex-shrink: 0;
    padding: 0.5rem 0;
}

.ic-logos-marquee:hover .ic-logos-track {
    animation-play-state: paused;
}

.ic-logo-card {
    background: var(--white, #ffffff);
    border: 1px solid var(--border-color, #EEF0F1);
    border-radius: var(--radius-md, 0.75rem);
    height: 5rem;
    width: 12rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    transition: all 0.3s ease;
}

.ic-logo-card:hover {
    border-color: var(--border-active, #CEE4FD);
    box-shadow: 0 4px 12px rgba(8, 106, 216, 0.08);
    transform: translateY(-2px);
}

.ic-logo-card img {
    max-width: 100%;
    max-height: 2.75rem;
    object-fit: contain;
}

@keyframes icMarqueeAbout {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.about-cta-section .btn-light {
    background-color: #ffffff !important;
    border-color: #ffffff !important;
    color: var(--primary-color, #086AD8) !important;
    transition: all 0.3s ease;
}

.about-cta-section .btn-light:hover,
.about-cta-section .btn-light:focus,
.about-cta-section .btn-light:active {
    background-color: #ffffff !important;
    border-color: #ffffff !important;
    color: var(--primary-color, #086AD8) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.about-cta-section .btn-outline-light:hover,
.about-cta-section .btn-outline-light:focus,
.about-cta-section .btn-outline-light:active {
    color: var(--primary-color, #086AD8) !important;
    background: #ffffff !important;
    border-color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
