/* =================================================================
   CLIENTS / TRUST SECTION STYLES — PCB / RETRO VERSION
   ================================================================= */

.client-section {
    background-color: #081712; /* Deep PCB green (same base as hero/nav) */
    padding: 60px 0;

    /* Thin gold trace divider */
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);

    position: relative;
    z-index: 10;
}

/* --- SECTION TITLE --- */
.client-title {
    text-align: center;
    color: #9BB0A1; /* Muted PCB-text green */
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 40px;
    font-family: 'Inter', sans-serif;

    /* Subtle CRT glow */
    text-shadow: 0 0 4px rgba(41, 255, 65, 0.15);
}

/* --- SCROLLER CONTAINER --- */
.clients-container {
    width: 100%;
    overflow: hidden;

    /* Greenish fade edges instead of plain white */
    /* Masks work the same, just tinted */
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        rgba(255,255,255,1) 20%,
        rgba(255,255,255,1) 80%,
        transparent
    );
    mask-image: linear-gradient(
        to right,
        transparent,
        rgba(255,255,255,1) 20%,
        rgba(255,255,255,1) 80%,
        transparent
    );

    margin-top: 0;
}

/* --- LOGO TRACK --- */
.clients-track {
    display: flex;
    align-items: center;
    width: fit-content;
    will-change: transform;
    padding: 10px 0;
}

/* --- LOGO IMAGES --- */
.clients-track img {
    height: 35px;
    margin: 0 50px;

    /* PCB-style dimming (slightly greener tone) */
    filter: grayscale(100%) opacity(0.35) brightness(1.3) sepia(10%);
    transition: all 0.3s ease;
    flex-shrink: 0;
    cursor: pointer;
}

/* Hover State: Clean reveal (retro highlight) */
.clients-track img:hover {
    filter: grayscale(0%) opacity(1) brightness(1);
    transform: scale(1.1);

    /* Tiny gold glow on hover */
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
}

/* --- RESPONSIVE --- */
@media only screen and (max-width: 800px) {
    .client-section {
        padding: 40px 0;
    }

    .client-title {
        margin-bottom: 30px;
        font-size: 11px;
    }

    .clients-track img {
        height: 28px;
        margin: 0 25px;
    }
}
