/* ==========================================================================
   FOOD HACKERS LAB — ABOUT US PAGE STYLES
   ========================================================================== */

/* --------------------------------------------------------------------------
   SECTION 1: ABOUT HERO SECTION
   -------------------------------------------------------------------------- */

.about-hero-section {
    background-color: var(--color-white);
    padding: 3.5rem 1.5rem 4rem;
    position: relative;
    overflow: hidden;
}


.about-hero-container {
    max-width: 1440px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 576px) {
    .about-hero-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 992px) {
    .about-hero-container {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

/* Header Content (Title & Description) */
.about-hero-header {
    text-align: center;
    max-width: 1140px;
    margin: 0 auto 3rem;
}

.about-hero-title {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 3.2vw, 2.85rem);
    font-weight: var(--fw-bold, 700);
    line-height: 1.25;
    color: var(--color-text-main);
    letter-spacing: -0.01em;
    margin-bottom: 1.25rem;
    transition: transform var(--transition-base), color var(--transition-base);
}

.about-hero-title .highlight {
    color: var(--color-primary);
    font-weight: var(--fw-bold, 700);
    position: relative;
    display: inline-block;
}

.about-hero-title .typewriter-cursor {
    display: inline-block;
    color: var(--color-primary, #F9B432);
    font-weight: 300;
    margin-left: 2px;
    animation: blinkCursorAbout 0.8s infinite;
}

.about-hero-subtitle {
    font-family: var(--font-primary);
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    font-weight: var(--fw-regular);
    line-height: 1.6;
    color: var(--color-text-muted);
    max-width: 780px;
    margin: 0 auto;
}

/* Hero Media / Banner Image */
.about-hero-media-wrapper {
    position: relative;
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: #f4f6f8;
}

.about-hero-media-wrapper:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.12);
}

.about-hero-img,
.about-hero-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 28px;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-hero-media-wrapper:hover .about-hero-img,
.about-hero-media-wrapper:hover .about-hero-video {
    transform: scale(1.02);
}

.about-hero-media-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 28px;
    pointer-events: none;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* --------------------------------------------------------------------------
   SECTION 2: BUILT TO BRIDGE THE GAP
   Consistent Site-Wide Typography Scale & Proportions
   -------------------------------------------------------------------------- */

.bridge-gap-section {
    background-color: var(--color-white);
    padding: 5rem 1.5rem 0rem;
    position: relative;
}

.bridge-gap-container {
    max-width: 1440px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

@media (min-width: 576px) {
    .bridge-gap-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 992px) {
    .bridge-gap-container {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

/* --- Section Header --- */
.bridge-gap-header {
    text-align: center;
    max-width: 920px;
    margin: 0 auto 2.5rem;
}

/* Main heading (Line 1) */
.bridge-title-main {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 3.2vw, 2.75rem);
    font-weight: var(--fw-bold, 700);
    line-height: 1.15;
    color: var(--color-text-main);
    margin: 0 0 0.35rem;
    letter-spacing: -0.01em;
}

/* Orange heading (Line 2) */
.bridge-title-orange {
    font-family: var(--font-primary);
    font-size: clamp(1.75rem, 2.8vw, 2.35rem);
    font-weight: var(--fw-medium, 500);
    font-style: italic;
    line-height: 1.2;
    color: var(--color-primary);
    margin: 0 0 1.25rem;
    letter-spacing: -0.01em;
}

.bridge-title-orange em {
    font-style: italic;
}

/* Intro paragraph */
.bridge-intro-desc {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: var(--fw-regular, 400);
    line-height: 1.6;
    color: var(--color-text-muted);
    max-width: 780px;
    margin: 0 auto;
}

/* --- Visual Composition Stage --- */
.bridge-visual {
    position: relative;
    width: min(1200px, 100%);
    height: 600px;
    margin: 3.5rem auto;
}

/* --- Central Product Can --- */
.bridge-can-wrapper {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    z-index: 5;
}

.bridge-can-img {
    width: 100%;
    height: auto;
    display: block;
    transform: rotate(-4deg);
    filter: drop-shadow(8px 18px 25px rgba(0, 0, 0, 0.15));
    transition: transform 0.5s ease;
}

.bridge-can-wrapper:hover .bridge-can-img {
    transform: rotate(-4deg) translateY(-4px) scale(1.02);
}

/* --- Concept Annotation Blocks --- */
.bridge-concept {
    position: absolute;
    z-index: 10;
}

.bridge-concept .concept-title {
    font-family: var(--font-primary);
    font-size: 25px;
    font-weight: var(--fw-bold, 700);
    color: var(--color-text-main);
    line-height: 1.2;
    margin: 0 0 2px;
    letter-spacing: -0.01em;
}

.bridge-concept .concept-desc {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: var(--fw-regular, 400);
    color: var(--color-text-muted);
    line-height: 1.35;
    margin: 0;
}

/* 1. A formulation — upper-left */
.concept-formulation {
    left: 14%;
    top: 30%;
    text-align: left;
    max-width: 100%;
}

/* 2. A product — upper-right */
.concept-product {
    right: 15%;
    left: auto;
    top: 12%;
    text-align: left;
    max-width: 100%;
}

/* 3. An idea — lower-left */
.concept-idea {
    left: 10%;
    top: 65%;
    text-align: right;
    max-width: 100%;
}

/* 4. Every Decision — middle-right */
.concept-decision {
    right: 10%;
    left: auto;
    top: 40%;
    text-align: left;
    max-width: 100%;
}

/* --- Image Arrow Assets (arrow.png) --- */
.bridge-arrow {
    position: absolute;
    z-index: 8;
    pointer-events: none;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Arrow 1: Upper-left */
.arrow-formulation {
    left: 25%;
    top: 20%;
    width: 100px;
    transform: rotate(-8deg);
}

/* Arrow 2: Upper-right */
.arrow-product {
    left: 57%;
    top: 23%;
    width: 100px;
    transform: rotate(190deg);
}

/* Arrow 3: Lower-left */
.arrow-idea {
    left: 30%;
    top: 51%;
    width: 100px;
    transform: rotate(-30deg);
}

/* Arrow 4: Lower-right */
.arrow-decision {
    left: 64%;
    top: 62%;
    width: 85px;
    transform: rotate(140deg);
}

/* --- Bottom Paragraph --- */
.bridge-gap-footer {
    text-align: center;
    max-width: 680px;
    margin: 1.5rem auto 0;
}

.bridge-footer-desc {
    font-family: var(--font-primary);
    font-size: 14.5px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-muted, #4A4A4A);
    margin: 0;
}

/* ==========================================================================
   SECTION 3: EXPERIENCE BEHIND THE THINKING
   ========================================================================== */
.experience-section {
    background-color: var(--color-white);
    padding: 3.5rem 1.5rem 2rem;
    position: relative;
}

.experience-container {
    max-width: 1440px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 576px) {
    .experience-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 992px) {
    .experience-container {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

.experience-header {
    margin-bottom: 3.5rem;
}

.experience-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 3.2vw, 2.75rem);
    font-weight: var(--fw-bold, 700);
    color: var(--color-text-main);
    margin: 0;
    letter-spacing: -0.01em;
}

.experience-title .text-orange {
    color: var(--color-primary);
    display: inline;
}

.experience-title .typewriter-cursor {
    display: inline-block;
    color: var(--color-primary, #F9B432);
    font-weight: 300;
    margin-left: 2px;
    animation: blinkCursorAbout 0.8s infinite;
}

.experience-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3.5rem;
    align-items: center;
}

.experience-img-col {
    display: flex;
    justify-content: center;
}

.experience-img-card {
    position: relative;
    width: 100%;
    max-width: 440px;
    background-color: var(--color-white);
    border: 5px solid var(--color-white);
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 0 auto;
}

.experience-img {
    width: 100%;
    max-width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 20px;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.experience-img-card:hover .experience-img {
    transform: scale(1.05);
    filter: blur(4px) brightness(0.7);
}

.experience-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.8) 75%, transparent 100%);
    padding: 24px 20px;
    color: #FFFFFF;
    text-align: left;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
    opacity: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 2;
}

.experience-img-card:hover .experience-img-overlay {
    transform: translateY(0);
    opacity: 1;
}

/* Mobile Devices (< 992px): Show overlay info by default without requiring hover */
@media (max-width: 991.98px) {
    .experience-img-overlay {
        transform: translateY(0);
        opacity: 1;
    }
}

.overlay-name {
    font-family: var(--font-primary);
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0;
    color: #FFFFFF;
    letter-spacing: -0.01em;
}

.overlay-degree {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.overlay-desc {
    font-family: var(--font-primary);
    font-size: 0.8rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.experience-text-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    height: 100%;
}

.experience-lead,
.experience-desc {
    font-family: var(--font-primary);
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    font-weight: var(--fw-regular, 400);
    line-height: 1.7;
    color: var(--color-text-muted);
    margin: 0;
}

/* Founder & Innovation Team Tasting Gallery */
.rk-team-gallery {
    margin-top: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.rk-team-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.rk-team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.rk-team-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.rk-team-card:hover .rk-team-img {
    transform: scale(1.06);
}

.rk-team-tag {
    display: block;
    padding: 6px 8px;
    font-family: var(--font-primary);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--color-text-main, #242424);
    background: #FFFFFF;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

@media (max-width: 575.98px) {
    .rk-team-img {
        height: 105px;
    }
    .rk-team-tag {
        font-size: 0.68rem;
        padding: 5px 6px;
    }
}

/* ==========================================================================
   SECTION: ABOUT LOGOS CONTINUOUS MARQUEE CAROUSEL
   ========================================================================== */
.about-logos-section {
    background-color: var(--color-white);
    padding: 100px 0 !important;
    overflow: hidden;
}

.about-logos-header {
    margin-bottom: 2rem;
}

.about-logos-title {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: var(--fw-bold, 700);
    color: var(--color-text-main, #242424);
    letter-spacing: -0.01em;
    margin: 0;
}

.about-logos-title .text-orange {
    color: var(--color-primary, #F9B432);
    display: inline;
}

.about-logos-title .typewriter-cursor {
    display: inline-block;
    color: var(--color-primary, #F9B432);
    font-weight: 300;
    margin-left: 2px;
    animation: blinkCursorAbout 0.8s infinite;
}

@keyframes blinkCursorAbout {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.about-logos-container {
    max-width: 1440px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin: 0 auto;
    width: 100%;
}

.about-logos-swiper {
    width: 100%;
    padding: 0.75rem 0;
    overflow: hidden;
}

.about-logos-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
    -webkit-transition-timing-function: linear !important;
    align-items: center !important;
}

.about-logos-swiper .swiper-slide {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 70px !important;
    padding: 0 5px !important;
    box-sizing: border-box !important;
}

.about-logo-img {
    height: 62px;
    max-width: 160px;
    width: auto;
    object-fit: contain;
    filter: none;
    opacity: 0.95;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.about-logo-img:hover {
    filter: none;
    opacity: 1;
    transform: translateY(-2px);
}

/* Static Corporate Logos in Founder Section */
.founder-corporate-logos {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
}

.founder-corp-logo {
    max-height: 44px;
    width: auto;
    max-width: 110px;
    object-fit: contain;
    filter: none !important;
    opacity: 1 !important;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.founder-corp-logo:hover {
    transform: scale(1.08);
}

.brands-subheading {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: #64748b;
    letter-spacing: 0.01em;
    font-weight: 500;
}

/* ==========================================================================
   SECTION 4: ABOUT CTA BANNER
   ========================================================================== */
.about-cta-section {
    background-color: var(--color-white);
    padding: 0 1.5rem 6.5rem;
}

.about-cta-container {
    max-width: 1440px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 576px) {
    .about-cta-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 992px) {
    .about-cta-container {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

.about-cta-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    padding: 5rem 3rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #E69D1E 100%);
    box-shadow: 0 15px 40px rgba(249, 180, 50, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 290px;
}

.about-cta-wrapper .cta-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.95;
    pointer-events: none;
}

.about-cta-content {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-cta-heading {
    font-family: var(--font-primary);
    font-size: clamp(1.6rem, 2.7vw, 2.35rem);
    font-weight: var(--fw-bold, 700);
    color: var(--color-text-main);
    line-height: 1.25;
    margin: 0 0 0.75rem;
    letter-spacing: -0.01em;
}

.about-cta-subheading {
    font-family: var(--font-primary);
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    font-weight: var(--fw-regular, 400);
    color: var(--color-text-main);
    line-height: 1.4;
    margin: 0 0 2rem;
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    background-color: var(--color-text-main);
    color: var(--color-primary);
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: var(--fw-semibold, 600);
    border-radius: 50px;
    text-decoration: none;
    transition: all var(--transition-base, 0.25s ease-in-out);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.about-cta-btn:hover {
    background-color: var(--color-black);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* --------------------------------------------------------------------------
   RESPONSIVE (LAPTOPS, IPADS, TABLETS & MOBILE)
   -------------------------------------------------------------------------- */

/* Laptop & Medium Screens (992px to 1199.98px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .bridge-visual {
        height: 540px;
        width: 100%;
        margin: 2.5rem auto;
    }

    .bridge-can-wrapper {
        width: 290px;
    }

    .concept-formulation {
        left: 6%;
        top: 20%;
        max-width: 240px;
    }

    .concept-product {
        right: 6%;
        left: auto;
        top: 14%;
        max-width: 240px;
    }

    .concept-idea {
        left: 6%;
        top: auto;
        bottom: 18%;
        max-width: 240px;
        text-align: left;
    }

    .concept-decision {
        right: 6%;
        left: auto;
        top: auto;
        bottom: 18%;
        max-width: 240px;
    }

    .arrow-formulation {
        left: 24%;
        top: 20%;
        width: 75px;
    }

    .arrow-product {
        left: 58%;
        top: 20%;
        width: 75px;
    }

    .arrow-idea {
        left: 25%;
        top: auto;
        bottom: 26%;
        width: 75px;
    }

    .arrow-decision {
        left: 60%;
        top: auto;
        bottom: 26%;
        width: 75px;
    }
}

/* Tablet & iPad Portrait (768px to 991.98px) - Exact iPad Fix */
@media (min-width: 768px) and (max-width: 991.98px) {
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .experience-img {
        max-width: 340px;
        height: 320px;
        object-fit: cover;
        object-position: center top;
        margin: 0 auto;
    }

    .about-cta-wrapper {
        padding: 3.5rem 1.5rem;
    }

    .bridge-gap-section {
        padding: 3.5rem 1.5rem 1.5rem;
    }

    .bridge-visual {
        height: 460px;
        width: 100%;
        position: relative;
        margin: 1.5rem auto;
    }

    .bridge-can-wrapper {
        width: 195px !important;
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        z-index: 5;
    }

    .bridge-concept {
        max-width: 200px !important;
        z-index: 10;
    }

    .bridge-concept .concept-title {
        font-size: 1.12rem !important;
        font-weight: var(--fw-bold, 700) !important;
        line-height: 1.25 !important;
        margin-bottom: 3px !important;
    }

    .bridge-concept .concept-desc {
        font-size: 0.86rem !important;
        line-height: 1.4 !important;
    }

    /* 1. A formulation — top-left */
    .concept-formulation {
        left: 1% !important;
        top: 4% !important;
        text-align: left !important;
    }

    /* 2. A product — top-right */
    .concept-product {
        right: 1% !important;
        left: auto !important;
        top: 4% !important;
        text-align: left !important;
    }

    /* 3. An idea — bottom-left */
    .concept-idea {
        left: 1% !important;
        top: auto !important;
        bottom: 4% !important;
        text-align: left !important;
    }

    /* 4. Every Decision — bottom-right */
    .concept-decision {
        right: 1% !important;
        left: auto !important;
        top: auto !important;
        bottom: 4% !important;
        text-align: left !important;
    }

    /* Scaled & Positioned Tablet Arrows */
    .bridge-arrow {
        z-index: 8;
        display: block !important;
    }

    .arrow-formulation {
        left: 23% !important;
        top: 18% !important;
        width: 48px !important;
        transform: rotate(-10deg) !important;
    }

    .arrow-product {
        left: 60% !important;
        top: 18% !important;
        width: 48px !important;
        transform: rotate(190deg) !important;
    }

    .arrow-idea {
        left: 23% !important;
        top: auto !important;
        bottom: 18% !important;
        width: 48px !important;
        transform: rotate(20deg) !important;
    }

    .arrow-decision {
        left: 60% !important;
        top: auto !important;
        bottom: 18% !important;
        width: 48px !important;
        transform: rotate(175deg) !important;
    }
}

/* --- Mobile Swiper: Hidden on desktop --- */
.bridge-mobile-slider {
    display: none;
}

@media (max-width: 767.98px) {
    .bridge-gap-section {
        padding: 2.5rem 1rem !important;
    }

    .bridge-gap-header {
        margin-bottom: 2rem;
    }

    .bridge-visual {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        margin: 2rem 0;
        position: relative;
    }

    /* Hide desktop-only concept cards & arrows on mobile */
    .bridge-desktop-only,
    .bridge-arrow {
        display: none !important;
    }

    /* Can image stays on top, centered */
    .bridge-can-wrapper {
        position: static !important;
        transform: none !important;
        width: 200px;
        margin: 0 auto 1.5rem;
    }

    .bridge-can-img {
        transform: rotate(-8deg) !important;
        filter: drop-shadow(6px 14px 20px rgba(0, 0, 0, 0.12));
    }

    /* Show mobile slider */
    .bridge-mobile-slider {
        display: block;
        width: 100%;
        padding: 0 0 2rem;
    }

    .bridgeConceptSwiper {
        width: 100%;
        padding-bottom: 2.5rem;
        overflow: visible;
    }

    .bridgeConceptSwiper .swiper-slide {
        height: auto;
    }

    /* Slide Card Styling */
    .bridge-slide-card {
        background: #FAFAFA;
        border-radius: 16px;
        padding: 1.5rem 1.5rem;
        border-left: 4px solid var(--color-primary);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: left;
    }

    .bridge-slide-card .concept-title {
        font-size: 1.25rem !important;
        font-weight: var(--fw-bold, 700);
        margin-bottom: 6px;
        color: var(--color-text-main);
    }

    .bridge-slide-card .concept-desc {
        font-size: 0.95rem !important;
        color: var(--color-text-muted);
        line-height: 1.5;
        margin: 0;
    }

    /* Swiper Pagination Dots */
    .bridge-swiper-pagination {
        bottom: 0 !important;
    }

    .bridge-swiper-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        background: #ccc;
        opacity: 1;
        transition: all 0.3s ease;
    }

    .bridge-swiper-pagination .swiper-pagination-bullet-active {
        background: var(--color-primary);
        width: 24px;
        border-radius: 4px;
    }

    /* Equalized Section Spacing */
    .about-hero-section {
        padding: 4.5rem 1rem 2.5rem !important;
    }

    .about-hero-media-wrapper {
        height: 280px !important;
        border-radius: 20px !important;
    }

    .about-hero-img,
    .about-hero-video {
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 20px !important;
    }

    .experience-section {
        padding: 2.5rem 1rem !important;
    }

    /* About Logos Marquee Mobile Gap & Spacing Enhancements */
    .about-logos-section {
        padding: 2rem 0 2.5rem !important;
    }

    .about-logos-header {
        margin-bottom: 1.75rem !important;
        padding: 0 1rem;
    }

    .about-logos-title {
        font-size: 1.65rem !important;
        line-height: 1.3 !important;
    }

    .about-logos-swiper {
        padding: 1rem 0 !important;
    }

    .about-logo-img {
        height: 48px !important;
        max-width: 125px !important;
        padding: 0 5px !important;
    }

    .about-cta-section {
        padding: 2.5rem 1rem !important;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .bridge-arrow path {
        animation: none !important;
        stroke-dasharray: none !important;
        stroke-dashoffset: 0 !important;
    }

    .bridge-can-img {
        transition: none !important;
    }
}