/* ================= DESIGN SYSTEM ================= */

:root {
    --orange: #D6882A;
    --blue: #1f4fff;
    --ink: #1f1f3b;
    --muted: #313030;
    --dark: #0b0b0b;
    --white: #ffffff;
    --font: 'Inter', system-ui, sans-serif;
}


/* ================= RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ================= BODY ================= */

body {
    background: var(--orange);
    font-family: var(--font);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
}


/* ================= CONTAINER ================= */

.container {
    width: 90%;
    max-width: 1250px;
    margin: auto;
}


/* ================= HERO SECTION ================= */

.hero {
    padding: 40px 0 0;
    position: relative;
    /* MOBILE FIX: Reduced padding for small screens */
}


/* GRID */

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: end;
    position: relative;
    gap: 30px;
    /* RESPONSIVE FIX: Single column by default, auto-adjusts on larger screens */
}


/* LEFT CONTENT */

.hero-left {
    margin-left: 0;
    /* MOBILE FIX: Removed fixed margin-left */
    position: relative;
    z-index: 5;
    padding: 0 16px;
    /* MOBILE FIX: Added horizontal padding for mobile */
}


/* ================= BADGE ================= */

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 20px;
    background: #ffffff;
    border-radius: 30px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: #000;
    margin-bottom: 18px;
}


/* remove default paragraph margin */

.badge p {
    margin: 0;
}


/* ================= TITLE ================= */

.hero-left h1 {
    font-size: clamp(1.5rem, 5vw, 2.6rem);
    /* RESPONSIVE FIX: clamp() for fluid scaling from 1.5rem mobile to 2.6rem desktop */
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.01em;
    max-width: 100%;
    /* MOBILE FIX: Changed from 850px to 100% */
    width: 100%;
}


/* ================= DESCRIPTION ================= */

.desc {
    margin: 20px 0 34px;
    max-width: 100%;
    /* MOBILE FIX: Changed from 420px to 100% for responsiveness */
    font-size: clamp(0.95rem, 2vw, 1rem);
    /* RESPONSIVE FIX: Fluid font sizing */
}


/* ================= BUTTON ================= */

.btn-cta {
    display: inline-block;
    padding: 14px 32px;
    /* MOBILE FIX: Increased padding to 44px+ height for touch accessibility */
    background: transparent;
    color: #ffffff;
    font-size: clamp(0.9rem, 2vw, 1rem);
    /* RESPONSIVE FIX: Fluid font sizing */
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #ffffff;
    border-radius: 6px;
    transition: .4s;
    white-space: nowrap;
    /* MOBILE FIX: Prevent text wrapping */
}

.btn-cta:hover {
    background: #ffffff;
    color: #000;
    transform: translateY(-3px);
}


/* ================= VIDEO ================= */

.hero-right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    width: 100%;
}

.video-wrapper {
    width: 100%;
    /* MOBILE FIX: Changed from 500px to 100% */
    max-width: 500px;
    /* DESKTOP FIX: Set max-width for large screens */
    height: auto;
    /* MOBILE FIX: Changed from 420px to auto for aspect ratio */
    aspect-ratio: 16 / 12;
    /* RESPONSIVE FIX: Maintains aspect ratio on all screen sizes */
    margin: 0 0 0 auto;
    /* MOBILE FIX: Auto margin instead of negative margin */
    position: relative;
    z-index: 0;
    display: block;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Prevent cropping completely */
    object-position: right center; /* Align character to the right, keep head vertically centered */
    display: block;
}


/* ================= RESPONSIVE - TABLET ================= */

@media(min-width: 481px) and (max-width: 768px) {
    .hero {
        padding: 50px 0 0;
    }
    .hero-grid {
        gap: 30px;
        align-items: end;
    }
    .hero-left {
        padding: 0 20px;
        align-self: center;
        padding-bottom: 50px;
    }
    .hero-left h1 {
        font-size: 1.8rem;
    }
    .video-wrapper {
        max-width: 450px;
        margin: 0 auto;
    }
}


/* ================= RESPONSIVE - DESKTOP ================= */

@media(min-width: 769px) {
    .hero {
        padding: 60px 0 0;
        overflow: hidden; /* Prevent horizontal scroll from bleeding video wrapper */
        --right-offset: calc((100vw - min(90vw, 1250px)) / 2);
    }
    .hero-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 40px;
        align-items: end;
    }
    .hero-left {
        margin-left: 0;
        padding: 0;
        align-self: center;
        padding-bottom: 60px;
    }
    .video-wrapper {
        width: calc(115% + var(--right-offset));
        max-width: none;
        margin-left: -15%;
        margin-right: calc(-1 * var(--right-offset));
        height: clamp(450px, 32vw, 620px); /* Restored optimal height; contain object-fit prevents any cropping */
        aspect-ratio: auto;
    }
}


/* ================= MOBILE ================= */

@media(max-width:900px) {
    .hero {
        padding: 40px 0 0;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        align-items: end;
    }
    .hero-left {
        margin-left: 0;
        padding-bottom: 30px;
    }
    .hero-left h1 {
        font-size: 1.5rem;
        white-space: normal;
    }
    .hero-right {
        justify-content: center;
    }
    .video-wrapper {
        width: 100%;
        max-width: 400px;
        height: auto;
        margin: 0 auto;
    }
    .video-wrapper video {
        width: 100%;
        height: 100%;
    }
}


/* ================Graph section========================== */

.full-image-section {
    width: 100%;
    background: #fff;
    overflow: hidden;
    position: relative; /* Setup positioning context for background video */
}

.full-image-section .graph-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    opacity: 0.28; /* Soft watermarked background video opacity */
    z-index: 1;
    pointer-events: none; /* Ensure no overlay issues for click elements */
}

.full-image-section img {
    position: relative;
    z-index: 2;
    width: 98%;
    margin-left: 0.7%;
    height: auto;
    display: block;
    /* Removed mix-blend-mode since we are now using a real transparent PNG */
    transition: width 0.3s ease, margin-left 0.3s ease;
}

@media (max-width: 768px) {
    .full-image-section img {
        width: 98%;
        margin-left: 0.7%;
    }
}


/* ================================================================== */


/* ================= PRODUCTS SECTION ================= */

.products-section {
    background: var(--orange);
    padding: 60px 16px;
    /* MOBILE FIX: Reduced padding and added horizontal padding */
    text-align: center;
    overflow: hidden;
    width: 100%;
    /* MOBILE FIX: Explicit 100% width */
}


/* HEADING */


/* PRODUCTS HEADING */

.products-title {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    /* RESPONSIVE FIX: Fluid sizing for all screens */
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 50px;
    /* MOBILE FIX: Reduced from 70px */
    letter-spacing: -0.5px;
    max-width: 100%;
}


/* highlight word */

.products-title span {
    color: var(--white);
    position: relative;
}


/* underline effect */

.products-title span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 4px;
}


/* SLIDER */

.products-slider {
    overflow: hidden;
    width: 100%;
    /* MOBILE FIX: Explicit 100% width */
    max-width: 100%;
    /* MOBILE FIX: Prevent overflow */
}


/* TRACK */

.products-track {
    display: flex;
    gap: 40px;
    /* MOBILE FIX: Reduced from 80px */
    align-items: center;
    animation: scrollProducts 15s linear infinite;
}


/* PRODUCT ITEM */

.product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 100px;
    /* MOBILE FIX: Reduced from 140px */
    flex-shrink: 0;
    /* MOBILE FIX: Prevent flex shrinking */
}

.product-item i {
    font-size: clamp(2.5rem, 7.5vw, 3.28rem);
    /* RESPONSIVE FIX: Fluid icon sizing (Increased by 25%) */
    color: #1a1a2e;
}

.product-item p {
    font-size: clamp(0.85rem, 2vw, 0.9375rem);
    /* RESPONSIVE FIX: Fluid text sizing */
    color: #313030;
    font-weight: 500;
}


/* ANIMATION */

@keyframes scrollProducts {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}


/* RESPONSIVE */

@media(min-width: 481px) and (max-width: 768px) {
    .products-section {
        padding: 70px 20px;
    }
    .products-title {
        margin-bottom: 60px;
        font-size: 2rem;
    }
    .products-track {
        gap: 60px;
    }
    .product-item {
        min-width: 110px;
    }
}

@media(min-width: 769px) {
    .products-section {
        padding: 90px 0;
    }
    .products-title {
        margin-bottom: 70px;
    }
    .products-track {
        gap: 80px;
    }
    .product-item {
        min-width: 140px;
    }
    .product-item i {
        font-size: 52px; /* Increased by 25% from 42px */
    }
    .product-item p {
        font-size: 15px;
    }
}

@media(max-width:900px) {
    .products-title {
        font-size: 1.8rem;
        white-space: normal;
    }
    .products-track {
        gap: 50px;
    }
}


/* ================client section================= */


/* ================= CLIENT SECTION ================= */

.clients-section {
    background: #fdfdfd;
    padding: 60px 16px;
    /* MOBILE FIX: Reduced padding and added horizontal padding */
    overflow: hidden;
    width: 100%;
    /* MOBILE FIX: Explicit 100% width */
}

.clients-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0;
    /* MOBILE FIX: Removed padding, container handles it */
    width: 100%;
    /* MOBILE FIX: Explicit 100% width */
}


/* ================= HEADING ================= */

.clients-head {
    max-width: 750px;
    margin: 0 auto 60px;
    text-align: center;
    width: 100%;
    /* MOBILE FIX: Explicit 100% width */
    padding: 0 16px;
    /* MOBILE FIX: Added padding for small screens */
}

.clients-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    /* RESPONSIVE FIX: Fluid title sizing */
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 15px;
}

.clients-title span {
    color: var(--orange);
    position: relative;
}

.clients-title span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 4px;
    background: var(--orange);
    border-radius: 10px;
}

.clients-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    /* RESPONSIVE FIX: Fluid subtitle sizing */
    color: #666;
    line-height: 1.6;
}


/* ================= LAYOUT ================= */

.clients-layout {
    display: grid;
    grid-template-columns: 1fr;
    /* MOBILE FIX: Single column by default */
    align-items: center;
    gap: 40px;
    /* MOBILE FIX: Reduced gap for small screens */
    margin-top: 50px;
    width: 100%;
    /* MOBILE FIX: Explicit 100% width */
    padding: 0 16px;
    /* MOBILE FIX: Added horizontal padding */
}


/* ================= LEFT IMAGE FRAME ================= */

.image-frame {
    position: relative;
    background: #fff;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    width: 100%;
    /* MOBILE FIX: Explicit 100% width */
    max-width: 420px;
    /* MOBILE FIX: Set max-width for desktop */
    margin: auto;
    /* MOBILE FIX: Center on mobile */
}

.image-frame img {
    width: 100%;
    /* MOBILE FIX: Changed from fixed 100% but enforced */
    height: auto;
    /* MOBILE FIX: Changed from 420px to auto */
    aspect-ratio: 1 / 1;
    /* RESPONSIVE FIX: Maintains square ratio */
    object-fit: cover;
    border-radius: 15px;
    display: block;
}


/* ================= LOGO ANIMATION AREA ================= */

.clients-logos {
    width: 100%;
    /* MOBILE FIX: Explicit 100% width */
    overflow: hidden;
    /* Fade effect on edges for professional look */
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    padding: 0 16px;
    /* MOBILE FIX: Added padding to prevent edge cutting */
}

.logos-row {
    margin-bottom: 30px;
    width: 100%;
    /* MOBILE FIX: Explicit 100% width */
    overflow: hidden;
    /* MOBILE FIX: Ensure no overflow */
}

.logos-row:last-child {
    margin-bottom: 0;
}

.logos-track {
    display: flex;
    --logos-gap: 30px;
    gap: var(--logos-gap);
    /* MOBILE FIX: Reduced from 50px */
    align-items: center;
    width: max-content;
    flex-wrap: nowrap;
    /* MOBILE FIX: Prevent wrapping */
}

.logos-track img {
    height: 45px;
    /* MOBILE FIX: Reduced from 65px for mobile */
    width: auto;
    min-width: 60px;
    /* MOBILE FIX: Prevent images from shrinking too small */
    opacity: 1;
    /* Always colorful */
    transition: transform 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    flex-shrink: 0;
    /* MOBILE FIX: Prevent flex shrinking */
}

.logos-track img:hover {
    transform: scale(1.1);
}


/* ================= SCROLL DIRECTIONS ================= */


/* Left to Right Animation */

.scroll-left .logos-track {
    animation: scrollAnimationLeft 14s linear infinite;
}


/* Right to Left Animation */

.scroll-right .logos-track {
    animation: scrollAnimationRight 14s linear infinite;
}

@keyframes scrollAnimationLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - var(--logos-gap) / 2));
    }
}

@keyframes scrollAnimationRight {
    0% {
        transform: translateX(calc(-50% - var(--logos-gap) / 2));
    }
    100% {
        transform: translateX(0);
    }
}


/* ================= MOBILE RESPONSIVE ================= */

@media (min-width: 481px) and (max-width: 768px) {
    .clients-section {
        padding: 70px 20px;
    }
    .clients-head {
        margin-bottom: 50px;
        padding: 0;
    }
    .clients-layout {
        gap: 50px;
        padding: 0;
    }
    .image-frame img {
        aspect-ratio: 1 / 1;
    }
    .logos-track {
        --logos-gap: 40px;
    }
    .logos-track img {
        height: 55px;
    }
}

@media (min-width: 769px) {
    .clients-section {
        padding: 90px 0;
    }
    .clients-head {
        margin-bottom: 60px;
        padding: 0;
    }
    .clients-layout {
        grid-template-columns: 420px 1fr;
        gap: 60px;
        padding: 0;
    }
    .image-frame {
        max-width: 420px;
        margin: 0;
    }
    .image-frame img {
        height: 420px;
        aspect-ratio: auto;
    }
    .clients-logos {
        padding: 0;
    }
    .logos-track {
        --logos-gap: 50px;
    }
    .logos-track img {
        height: 65px;
    }
}

@media (max-width: 1000px) {
    .clients-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .image-frame img {
        height: 300px;
        max-height: 400px;
    }
    .logos-track img {
        height: 45px;
    }
}


/* =========================call to action================= */


/* ================= PREMIUM CTA ================= */

.premium-cta {
    padding: 40px 20px;
    /* MOBILE FIX: Responsive padding */
    margin: 60px auto;
    /* MOBILE FIX: Center the container with auto margins */
    background: var(--ink);
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    /* MOBILE FIX: Reduced from 28px */
    width: 90%;
    /* MOBILE FIX: Match general container width */
    max-width: 1250px;
    /* MOBILE FIX: Match general container max-width */
}


/* subtle glow */

.premium-cta::before {
    content: "";
    position: absolute;
    top: -120px;
    left: -120px;
    width: 400px;
    height: 400px;
    background: #D6882A;
    opacity: .08;
    border-radius: 50%;
    filter: blur(80px);
}

.premium-cta::after {
    content: "";
    position: absolute;
    bottom: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    background: #D6882A;
    opacity: .06;
    border-radius: 50%;
    filter: blur(80px);
}

.cta-container {
    max-width: 800px;
    margin: auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
    /* MOBILE FIX: Added padding */
}

.cta-title {
    font-size: clamp(1.5rem, 5vw, 2.6rem);
    /* RESPONSIVE FIX: Fluid title sizing */
    font-weight: 700;
    letter-spacing: -.5px;
    margin-bottom: 22px;
}

.cta-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    /* RESPONSIVE FIX: Fluid subtitle sizing */
    line-height: 1.8;
    color: #d6d6d6;
    max-width: 700px;
    margin: 0 auto 40px;
    width: 100%;
    /* MOBILE FIX: Explicit 100% width */
}


/* BUTTONS */

.cta-actions {
    display: flex;
    gap: 16px;
    /* MOBILE FIX: Reduced from 20px */
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    /* MOBILE FIX: Explicit 100% width */
}

.cta-btn {
    padding: 16px 32px;
    /* MOBILE FIX: Increased to 44px+ height for touch targets */
    font-size: clamp(0.9rem, 2vw, 0.95rem);
    /* RESPONSIVE FIX: Fluid font sizing */
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: .3s;
    display: inline-block;
    white-space: nowrap;
    /* MOBILE FIX: Prevent text wrapping */
    flex: 1 1 auto;
    /* MOBILE FIX: Flexible width on mobile */
    min-width: 150px;
    /* MOBILE FIX: Minimum width for touch */
    text-align: center;
    /* MOBILE FIX: Center button text */
}


/* Primary button */

.cta-btn.primary {
    background: #D6882A;
    color: #fff;
    box-shadow: 0 10px 30px rgba(214, 136, 42, .35);
    border: none;
    /* MOBILE FIX: Added explicit border */
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(214, 136, 42, .45);
}


/* Outline button */

.cta-btn.outline {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.cta-btn.outline:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
}


/* MOBILE */

@media (min-width: 481px) and (max-width: 768px) {
    .premium-cta {
        padding: 40px 30px;
        margin: 60px auto;
        border-radius: 20px;
    }
    .cta-title {
        font-size: 2rem;
        margin-bottom: 18px;
    }
    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 35px;
    }
    .cta-actions {
        gap: 12px;
    }
    .cta-btn {
        padding: 14px 28px;
        font-size: 0.9rem;
        flex: 1 1 calc(50% - 6px);
        min-width: 140px;
    }
}

@media (min-width: 769px) {
    .premium-cta {
        padding: 50px 50px;
        margin: 80px auto;
        border-radius: 28px;
    }
    .cta-actions {
        gap: 20px;
    }
    .cta-btn {
        flex: 0 1 auto;
        min-width: auto;
    }
}

@media(max-width:900px) {
    .premium-cta {
        margin: 60px auto;
    }
    .cta-title {
        font-size: 1.8rem;
    }
    .cta-subtitle {
        font-size: .95rem;
    }
    .cta-actions {
        gap: 12px;
    }
    .cta-btn {
        flex: 1 1 calc(50% - 6px);
        min-width: 130px;
        padding: 14px 24px;
    }
}

/* ================= GLOBAL REACH SECTION ================= */

.global-reach {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    background: var(--ink); /* #1f1f3b - theme navy background */
    color: #fff;
    overflow: hidden;
    position: relative;
}

.reach-left {
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* Badge styled like other badges in the theme */
.reach-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.reach-line {
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--orange);
}

.reach-badge-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--orange);
    text-transform: uppercase;
}

.reach-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 35px;
    color: #fff;
    letter-spacing: -0.5px;
}

.reach-title .highlight {
    color: var(--orange);
}

.reach-subtitle {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 25px;
    text-transform: uppercase;
}

/* Progress bar list */
.reach-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    max-width: 600px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    gap: 12px;
}

.stat-name {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

.stat-name strong {
    color: #fff;
    font-weight: 600;
    margin-right: 8px;
}

.stat-percent {
    font-weight: 700;
    color: var(--orange);
}

.stat-bar-bg {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    background: var(--orange);
    border-radius: 2px;
    transition: width 1.5s ease-out;
}

/* CTA Button */
.btn-reach {
    display: inline-block;
    align-self: flex-start;
    padding: 14px 32px;
    background: var(--orange);
    color: #fff;
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
    box-shadow: 0 8px 24px rgba(214, 136, 42, 0.25);
}

.btn-reach:hover {
    background: #fff;
    color: var(--ink);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.2);
}

/* Right Column (Map) */
.reach-right {
    background: #b9e1fa; /* Matches the map image background (HD sky blue) */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    position: relative;
}

.reach-right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 20px;
}

/* RESPONSIVE LAYOUT FOR DESKTOP */
@media(min-width: 992px) {
    .global-reach {
        grid-template-columns: 1fr 1fr;
    }
    
    .reach-left {
        padding: 90px 60px 90px calc((100vw - min(90vw, 1250px)) / 2 + 10px);
    }
    
    .reach-right {
        min-height: 100%;
    }
}

@media(min-width: 1200px) {
    .reach-left {
        padding-top: 110px;
        padding-bottom: 110px;
    }
}


/* ================= TRUST CERTIFICATE SLIDER ================= */
.trust-slider {
    width: 100%;
    overflow: hidden;
    padding: 24px 0;
    margin-top: 40px;
    position: relative;
    z-index: 5;
    /* Soft horizontal fading edges */
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.trust-track {
    display: flex;
    gap: 30px;
    align-items: center;
    width: max-content;
    animation: scrollTrust 25s linear infinite;
}

/* Pause the animation on hover for interactive feel */
.trust-slider:hover .trust-track {
    animation-play-state: paused;
}

.trust-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 2px 5px;
    width: 240px;
    height: 120px;
    flex-shrink: 0;
    box-shadow: none;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

.trust-card:hover {
    transform: scale(1.1);
}

.trust-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    opacity: 0.98;
    transition: opacity 0.3s ease;
}

.trust-card:hover img {
    opacity: 1;
}

@keyframes scrollTrust {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.3333%);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .trust-card {
        width: 170px;
        height: 90px;
        padding: 2px 4px;
        border-radius: 0;
        background: transparent;
        border: none;
        box-shadow: none;
    }
    .trust-slider {
        padding: 15px 0;
        margin-top: 25px;
        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);
    }
    .trust-track {
        gap: 20px;
    }
    .reach-right {
        min-height: 250px;
        padding: 10px;
    }
    .reach-right img {
        padding: 10px;
    }
    .full-image-section img {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .btn-reach {
        padding: 12px 20px;
        font-size: 0.88rem;
        align-self: stretch;
        text-align: center;
    }
    .btn-partner {
        padding: 12px 18px;
        font-size: 0.88rem;
        width: 100%;
        max-width: 290px;
        box-sizing: border-box;
    }
}