/* Home page (post 174) consolidated styles.
 * Extracted from inline <style> blocks during Phase 1C.
 * Original source: docs/audit-baseline/home-174-content.html
 */

/* =================================================================
   Block 1 — extracted from Home post 174
   ================================================================= */
/* --- Traxx IT Brand Variables --- */
        :root {
            --traxx-bg: #000000; 
            --traxx-text: #cbd5e1;
            --traxx-cyan: #00d2ff;
            --traxx-blue-dark: #0284c7; 
            --traxx-yellow: #ffc400;
            --traxx-gradient: linear-gradient(90deg, var(--traxx-blue-dark) 0%, var(--traxx-cyan) 100%);
            
            --font-main: 'Inter', system-ui, -apple-system, sans-serif;
            --font-code: 'Fira Code', monospace; 
        }

        /* --- Hero Banner Wrapper --- */
        .traxx-hero {
            position: relative;
            /* Forces true full width ignoring parent containers */
            width: 100vw;
            margin-left: calc(-50vw + 50%);
            min-height: 80vh; 
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 40px 20px;
            box-sizing: border-box;
            overflow: hidden;
            background-color: #111111;
        }

        /* The Background Image */
        .traxx-hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-image: url('https://traxxit-f89d094ac30cfedd-endpoint.azureedge.net/blobtraxxit315cc0d68b/wp-content/uploads/IMG_0302.jpeg');
            background-size: cover;
            background-position: 46% 43%; /* Maintained your original focal point */
            background-repeat: no-repeat;
            z-index: 1;
        }

        /* The Original WP Gradient Overlay */
        .traxx-hero::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(180deg, rgb(51, 51, 245) 0%, rgb(17, 17, 17) 100%);
            mix-blend-mode: multiply;
            opacity: 1;
            z-index: 2;
        }

        /* Subtle Cyber Grid Pattern */
        .hero-grid {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                              linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 40px 40px;
            z-index: 3;
            pointer-events: none;
        }

        /* --- Hero Content --- */
        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 900px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* System Diagnostic Tag */
        .hero-tag {
            font-family: var(--font-code);
            color: var(--traxx-cyan);
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 10px;
            padding: 6px 16px;
            background-color: rgba(0, 210, 255, 0.1);
            border: 1px solid rgba(0, 210, 255, 0.2);
            border-radius: 50px;
            letter-spacing: 1px;
            animation: fadeInDown 1s ease-out;
        }

        /* Main H1 Title */
        .hero-title {
            font-family: var(--font-main);
            color: #ffffff;
            font-size: clamp(45px, 8vw, 85px);
            font-weight: 900;
            letter-spacing: -2px;
            margin: 0 0 10px 0;
            line-height: 1.1;
            animation: fadeInDown 1s ease-out 0.2s both;
        }

        /* The Code H2 Area */
        .hero-typing-area {
            font-family: var(--font-code);
            font-size: clamp(24px, 4vw, 40px);
            font-weight: 500;
            color: var(--traxx-yellow);
            margin: 0 0 30px 0;
            animation: fadeInDown 1s ease-out 0.4s both;
        }
        
        /* Syntax highlighting */
        .syntax-bracket { color: #94a3b8; }
        .syntax-string { color: var(--traxx-yellow); }

        .cursor {
            display: inline-block;
            width: 12px;
            height: 1em;
            background-color: var(--traxx-cyan);
            vertical-align: middle;
            margin-left: 5px;
            animation: blink 0.8s infinite;
        }

        @keyframes blink {
            0%, 49% { opacity: 1; }
            50%, 100% { opacity: 0; }
        }

        /* Location Line */
        .hero-location {
            font-family: var(--font-code);
            font-size: 13px;
            font-weight: 500;
            color: #94a3b8;
            letter-spacing: 2px;
            margin-top: 4px;
            animation: fadeInUp 1s ease-out 0.8s both;
        }

        /* Intro Animations */
        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

/* =================================================================
   Block 2 — extracted from Home post 174
   ================================================================= */
:root {
        --wwa-bg: #000000;
        --wwa-text: #94a3b8;
        --wwa-text-bright: #e2e8f0;
        --wwa-dark: #0f172a;
        --wwa-cyan: #00d2ff;
        --wwa-blue-dark: #0284c7;
        --font-main: 'Inter', system-ui, -apple-system, sans-serif;
        --font-code: 'Fira Code', monospace;
    }

    .wwa-section {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        background-color: var(--wwa-bg);
        padding: clamp(40px, 5vw, 70px) 20px;
        box-sizing: border-box;
        font-family: var(--font-main);
        position: relative;
        z-index: 10;
    }

    .wwa-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .wwa-header {
        text-align: center;
        margin-bottom: clamp(24px, 3vw, 40px);
    }

    .wwa-preheading {
        font-family: var(--font-code);
        color: var(--wwa-cyan);
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 2px;
        margin: 0 0 12px 0;
    }

    .wwa-header h2 {
        font-size: clamp(28px, 4.5vw, 46px);
        font-weight: 900;
        color: #ffffff;
        margin: 0 0 20px 0;
        letter-spacing: -1px;
    }

    .wwa-divider {
        width: 260px;
        height: 4px;
        background: linear-gradient(90deg, var(--wwa-blue-dark) 0%, var(--wwa-cyan) 100%);
        margin: 0 auto;
        border-radius: 2px;
    }

    .wwa-body {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(30px, 4vw, 60px);
        margin-bottom: clamp(24px, 3vw, 40px);
    }

    .wwa-body p {
        font-size: clamp(15px, 1.6vw, 17px);
        font-weight: 400;
        color: var(--wwa-text);
        line-height: 1.8;
        margin: 0;
    }

    .wwa-body p strong {
        color: var(--wwa-text-bright);
        font-weight: 600;
    }

    .wwa-chips {
        display: grid;
        grid-template-columns: repeat(5, auto);
        justify-content: center;
        gap: 12px 32px;
    }

    .wwa-chip {
        display: flex;
        align-items: center;
        gap: 10px;
        font-family: var(--font-main);
        font-size: 15px;
        font-weight: 500;
        color: var(--wwa-text-bright);
        background: transparent;
        border: 0;
        border-radius: 0;
        padding: 0;
        letter-spacing: 0;
        text-align: left;
        white-space: nowrap;
        line-height: 1.4;
        transition: color 0.3s ease;
    }
    .wwa-chip::before {
        content: '\2714';
        color: var(--wwa-cyan);
        font-weight: 700;
        flex-shrink: 0;
        font-size: 14px;
    }
    .wwa-chip:last-child {
        grid-column: 1 / -1;
        justify-content: center;
    }
    .wwa-chip:hover {
        color: #ffffff;
    }

    @media (max-width: 768px) {
        .wwa-section {
            padding-bottom: 180px;
        }
        .wwa-section::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 200px;
            background: linear-gradient(to bottom,
                rgba(255,255,255,0) 0%,
                rgba(255,255,255,0.013) 9.1%,
                rgba(255,255,255,0.049) 17.9%,
                rgba(255,255,255,0.104) 26.2%,
                rgba(255,255,255,0.175) 34%,
                rgba(255,255,255,0.259) 41.3%,
                rgba(255,255,255,0.352) 48.2%,
                rgba(255,255,255,0.450) 54.8%,
                rgba(255,255,255,0.550) 61.1%,
                rgba(255,255,255,0.648) 67.2%,
                rgba(255,255,255,0.741) 73.3%,
                rgba(255,255,255,0.825) 79.5%,
                rgba(255,255,255,0.896) 86%,
                rgba(255,255,255,0.951) 92.9%,
                rgba(255,255,255,0.987) 98.7%,
                #ffffff 100%
            );
            pointer-events: none;
        }
        .wwa-body {
            grid-template-columns: 1fr;
            gap: 24px;
        }
        .wwa-body p {
            text-align: center;
        }
        .wwa-chips {
            grid-template-columns: auto auto;
            gap: 10px 24px;
        }
        .wwa-chip {
            font-size: 13px;
            gap: 8px;
        }
        .wwa-chip::before {
            font-size: 13px;
        }
    }

/* =================================================================
   Block 3 — extracted from Home post 174
   ================================================================= */
/* --- Traxx IT Homepage IDE Variables --- */
    :root {
        --traxx-darker: #000000; /* Solid Black */
        --traxx-dark: #0f172a;
        --traxx-cyan: #00d2ff;
        --traxx-yellow: #ffc400;
        --traxx-alert-red: #ef4444;
        --term-font: 'Fira Code', monospace;
    }

    body.modal-open {
        overflow: hidden;
    }

    /* Outer Wrapper with Solid Black Background */
    .traxx-animated-wrapper {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        background-color: var(--traxx-darker);
        padding: 70px 20px 140px 20px; /* Adjusted to match original 570px total visual height */
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 10;
    }

    /* THE ULTRA-SMOOTH EASED FADE MASK */
    .traxx-animated-wrapper::after {
        content: '';
        position: absolute;
        bottom: -2px; 
        left: 0;
        width: 100%;
        height: 300px; /* Much taller to allow a seamless feather */
        /* 16-point Bezier curve gradient to eliminate banding completely */
        background: linear-gradient(to bottom, 
            rgba(255,255,255,0) 0%, 
            rgba(255,255,255,0.013) 9.1%, 
            rgba(255,255,255,0.049) 17.9%, 
            rgba(255,255,255,0.104) 26.2%, 
            rgba(255,255,255,0.175) 34%, 
            rgba(255,255,255,0.259) 41.3%, 
            rgba(255,255,255,0.352) 48.2%, 
            rgba(255,255,255,0.450) 54.8%, 
            rgba(255,255,255,0.550) 61.1%, 
            rgba(255,255,255,0.648) 67.2%, 
            rgba(255,255,255,0.741) 73.3%, 
            rgba(255,255,255,0.825) 79.5%, 
            rgba(255,255,255,0.896) 86%, 
            rgba(255,255,255,0.951) 92.9%, 
            rgba(255,255,255,0.987) 98.7%, 
            #ffffff 100%
        );
        z-index: 1; 
        pointer-events: none;
    }

    /* The IDE Window Shell */
    .ide-window {
        width: 100%;
        max-width: 850px; /* Scaled down from 960px for a tighter look */
        background-color: var(--traxx-dark);
        border-radius: 8px;
        border: 1px solid rgba(255,255,255,0.1);
        box-shadow: 0 30px 60px -15px rgba(0,0,0,0.6);
        overflow: hidden;
        position: relative;
        z-index: 2; /* Sits above the fade mask to look 3D */
    }

    .ide-header {
        background-color: #182235;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 15px;
    }

    .ide-title {
        color: #94a3b8;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 13px;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 0;
    }

    .ide-controls {
        display: flex;
    }

    .win-btn {
        padding: 10px 15px;
        color: #94a3b8;
        font-size: 12px;
        cursor: pointer;
        transition: background-color 0.2s;
    }

    .win-btn:hover { background-color: rgba(255, 255, 255, 0.1); color: #ffffff; }
    .win-btn.close:hover { background-color: #e81123; color: #ffffff; }

    /* The Text Area */
    .traxx-typewriter {
        height: 360px; /* Adjusted to respect your original dimensions */
        padding: 40px;
        font-size: clamp(14px, 2vw, 16px);
        line-height: 1.6;
        white-space: pre-wrap;
        box-sizing: border-box;
        color: #cbd5e1;
        text-align: left;
        font-family: var(--term-font);
    }

    /* Official Syntax Highlighting */
    .traxx-typewriter .keyword { color: var(--traxx-cyan); }
    .traxx-typewriter .function { color: var(--traxx-yellow); }
    .traxx-typewriter .string { color: #cbd5e1; }
    .traxx-typewriter .property { color: #94a3b8; }

    .traxx-typewriter .cursor {
        display: inline-block;
        width: 10px;
        background: var(--traxx-cyan);
        animation: blink 0.7s infinite;
        vertical-align: bottom;
        margin-left: 4px;
    }

    @keyframes blink { 
        0%, 50% { opacity: 1; } 
        51%, 100% { opacity: 0; } 
    }

    /* --- Easter Egg Modal Styles --- */
    .easter-egg-overlay {
        display: none; 
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(8px);
        z-index: 99999;
        align-items: center;
        justify-content: center;
        padding: 20px;
        box-sizing: border-box;
        font-family: var(--term-font);
    }

    .easter-egg-window {
        background-color: #0b1120;
        border: 2px solid var(--traxx-alert-red);
        border-radius: 6px;
        max-width: 700px;
        width: 100%;
        box-shadow: 0 0 50px rgba(239, 68, 68, 0.2);
        animation: glitchFade 0.3s ease-out forwards;
        position: relative;
    }

    /* Added Close (X) Button */
    .ee-close-x {
        position: absolute;
        top: 6px;
        right: 15px;
        color: #ffffff;
        font-size: 24px;
        font-family: system-ui, -apple-system, sans-serif;
        cursor: pointer;
        transition: opacity 0.2s ease;
        line-height: 1;
        opacity: 0.6;
    }

    .ee-close-x:hover {
        opacity: 1;
    }

    .ee-header {
        background-color: var(--traxx-alert-red);
        color: #fff;
        padding: 10px 20px;
        font-weight: 700;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .ee-content {
        padding: 40px;
        color: #fff;
    }

    .ee-content h2 {
        color: var(--traxx-alert-red);
        font-size: clamp(20px, 3vw, 26px);
        margin: 0 0 20px 0;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .ee-content p {
        font-size: 1.1rem;
        color: #cbd5e1;
        margin: 0 0 20px 0;
        line-height: 1.6;
    }

    .ee-terminal-box {
        background-color: rgba(0,0,0,0.5);
        border: 1px solid rgba(255,255,255,0.1);
        padding: 20px;
        border-radius: 4px;
        color: var(--traxx-cyan);
        font-size: 14px;
        margin-bottom: 30px;
        line-height: 1.7;
    }

    .ee-terminal-box span { color: var(--traxx-yellow); }

    .btn-ee {
        background-color: transparent;
        border: 1px solid var(--traxx-alert-red);
        color: var(--traxx-alert-red);
        padding: 12px 25px;
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.2s ease;
        border-radius: 4px;
        display: inline-block;
        text-decoration: none;
    }

    .btn-ee:hover {
        background-color: var(--traxx-alert-red);
        color: #fff;
    }

    @keyframes glitchFade {
        0% { opacity: 0; transform: scale(0.95); }
        50% { opacity: 1; transform: translateX(5px); }
        75% { transform: translateX(-5px); }
        100% { opacity: 1; transform: translate(0); }
    }

    @media (max-width: 768px) {
        .traxx-animated-wrapper { display: none; }
        .ee-content { padding: 30px 20px; }
    }

/* =================================================================
   Block 4 — extracted from Home post 174
   ================================================================= */
/* --- Traxx IT Brand Variables --- */
    :root {
        --traxx-bg: #ffffff; 
        --traxx-card-bg: #f8f9fa; 
        --traxx-dark: #0f172a; 
        --traxx-text: #475569; 
        
        --traxx-accent: #00d2ff; 
        --traxx-accent-hover: #00b8e6;
        --traxx-blue-dark: #0284c7; 

        --font-main: 'Inter', system-ui, -apple-system, sans-serif;
        --font-code: 'Fira Code', monospace; 
    }

    /* --- Container & Layout --- */
    .traxx-success-section {
        background-color: var(--traxx-bg);
        padding: clamp(60px, 8vw, 60px) 20px;
        font-family: var(--font-main);
    }

    .traxx-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* --- Section Header (Tech Aesthetic) --- */
    .traxx-header {
        text-align: center;
        margin-bottom: clamp(50px, 6vw, 70px);
        max-width: 1000px; 
        margin-inline: auto;
    }

    .traxx-preheading {
        font-family: var(--font-code);
        color: var(--traxx-blue-dark);
        font-size: 14px;
        font-weight: 600;
        text-transform: lowercase;
        letter-spacing: 1px;
        margin: 0 0 10px 0;
    }

    .traxx-header h2 {
        font-size: clamp(28px, 4.5vw, 46px);
        font-weight: 900;
        color: var(--traxx-dark);
        margin: 0 0 20px 0;
        letter-spacing: -1px;
    }

    @media (min-width: 768px) {
        .traxx-header h2 {
            white-space: nowrap; 
        }
    }

    .traxx-divider {
        width: 260px;
        height: 4px;
        background: linear-gradient(90deg, var(--traxx-blue-dark) 0%, var(--traxx-accent) 100%);
        margin: 0 auto 25px auto;
        border-radius: 2px;
    }

    .traxx-header p {
        font-size: clamp(16px, 2.5vw, 18px);
        color: var(--traxx-text);
        margin: 0;
        line-height: 1.7;
        text-align: center; 
    }

    /* --- Card Grid --- */
    .traxx-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 450px), 1fr));
        gap: clamp(30px, 4vw, 40px);
        align-items: stretch;
    }

    /* --- Individual Cards --- */
    .traxx-card {
        background: var(--traxx-card-bg);
        border-radius: 12px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        border: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    }

    .traxx-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    }

    .traxx-card-img-wrapper {
        position: relative;
        width: 100%;
        aspect-ratio: 16 / 9;
        overflow: hidden;
        border-bottom: 3px solid var(--traxx-accent); 
    }

    .traxx-card-img-wrapper a {
        display: block;
        width: 100%;
        height: 100%;
        text-decoration: none;
    }

    .traxx-card-img {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        transition: transform 0.6s ease;
    }

    .traxx-card:hover .traxx-card-img {
        transform: scale(1.05);
    }

    .traxx-tag {
        position: absolute;
        top: 20px;
        left: 20px;
        display: inline-block;
        background-color: var(--traxx-dark);
        color: #fff;
        padding: 9px 16px;
        font-family: var(--font-code);
        font-size: 11px;
        font-weight: 400;
        line-height: 1.35;
        letter-spacing: 0.5px;
        border-radius: 4px;
        z-index: 2;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    /* --- Card Content --- */
    .traxx-card-content {
        padding: clamp(30px, 4vw, 40px);
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        position: relative;
    }

    .traxx-card-content h3 {
        font-size: clamp(22px, 3vw, 26px);
        color: var(--traxx-dark);
        margin: 0 0 20px 0;
        font-weight: 800;
        letter-spacing: -0.5px;
    }

    .traxx-quote-box {
        position: relative;
        margin-bottom: 0px; 
        flex-grow: 1; 
        display: flex;
        flex-direction: column;
    }

    .traxx-quote-icon {
        color: var(--traxx-accent);
        font-size: 24px;
        margin-bottom: 15px;
        display: block;
        opacity: 0.8;
    }

    .traxx-quote-text {
        font-size: clamp(15px, 2.5vw, 16px);
        color: var(--traxx-text);
        line-height: 1.7;
        margin: 0 0 25px 0; /* Added bottom margin to guarantee white space padding */
        position: relative;
        z-index: 2;
    }

    /* --- Structured Author Profile Block --- */
    .traxx-author-profile {
        margin-top: auto; 
        padding-top: 18px;
        border-top: 1px solid rgba(0,0,0,0.08);
        display: flex;
        flex-direction: column;
        gap: 4px; 
    }

    .traxx-author-name {
        font-size: 15px;
        color: var(--traxx-dark);
        font-weight: 800;
        margin: 0;
        letter-spacing: -0.2px;
    }

    .traxx-author-title {
        font-size: 13px;
        color: var(--traxx-text);
        font-weight: 600;
        margin: 0;
    }

    .traxx-author-title span {
        color: var(--traxx-blue-dark); 
    }

    .traxx-author-location {
        font-size: 12px;
        color: #888888;
        margin: 0;
        display: flex;
        align-items: center;
        font-weight: 500;
    }

    .traxx-author-location i {
        color: var(--traxx-accent); 
        margin-right: 6px;
        font-size: 11px;
    }

    /* --- Action Link --- */
    .traxx-link {
        display: inline-flex;
        align-items: center;
        font-size: 14px;
        font-weight: 700;
        color: var(--traxx-dark);
        text-decoration: none;
        transition: color 0.3s ease;
        font-family: var(--font-code);
        margin-top: 25px;
    }

    .traxx-link i {
        margin-left: 8px;
        font-size: 14px;
        color: var(--traxx-accent);
        transition: transform 0.3s ease;
    }

    .traxx-link:hover {
        color: var(--traxx-blue-dark);
    }

    .traxx-link:hover i {
        transform: translateX(5px);
    }

/* =================================================================
   Block 5 — extracted from Home post 174
   ================================================================= */
.client-logos-wrapper {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #ffffff;
  padding: 10px 0 40px;
  overflow: hidden;
  box-shadow: 0 -1px 0 0 #fff, 0 1px 0 0 #fff;
  margin-top: -1px;
  margin-bottom: -1px;
  z-index: 5;
  position: relative;
}

.client-logos-header {
  font-family: 'Roboto', sans-serif;
  text-align: center;
  margin-bottom: 30px; 
}

.client-logos-header h6 {
  /* Dynamic font size: scales between 12px and 0.95rem */
  font-size: clamp(12px, 2.5vw, 0.95rem);
  font-weight: 600;
  color: #3333F5;
  margin: 0;
  line-height: 1.3;
  letter-spacing: 0.5px;
}

.client-logos-header h2 {
  /* Dynamic font size: scales between 26px and 2.4rem */
  font-size: clamp(26px, 6vw, 2.4rem);
  font-weight: 800;
  color: #000000;
  margin: 4px 0 0;
  line-height: 1.3;
}

/* New Gradient Divider */
.expertise-divider {
  width: 190px;
  height: 4px;
  /* Traxx Dark Blue/Black to Light Blue Cyan Gradient */
  background: linear-gradient(90deg, #0d2f4f 0%, #00d2ff 100%);
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

.client-logos-container {
  overflow: hidden;
  width: 100%;
  display: flex;
}

.client-logos-track {
  display: flex;
  gap: 40px;
  align-items: center;
  /* slowed down to 240s */
  animation: scroll-logos 240s linear infinite;
}

.client-logos-track img {
  /* Desktop logo sizing */
  max-width: 186px;
  max-height: 80px;
  width: auto;
  height: auto;

  filter: grayscale(0%);
  opacity: 0.8;
  transition: filter 0.3s ease, opacity 0.3s ease;
  flex-shrink: 0;
}

.client-logos-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes scroll-logos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Mobile Adjustments --- */
@media (max-width: 768px) {
  .client-logos-track {
    gap: 25px; /* Tighter spacing on smaller screens */
  }
  
  .client-logos-track img {
    /* Reduced logo sizes for mobile */
    max-width: 120px; 
    max-height: 55px;
  }
}
