/* =======================================================
   CLIENT MARQUEE STYLES
   ======================================================= */
.clients-section {
    width: 100%;
    background-color: #ffffff;
    padding: 70px 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.clients-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.clients-header h2 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #888888;
}

.marquee-container {
    width: 100%;
    display: flex;
    overflow: hidden;
    user-select: none;
    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);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 60px;
    padding-right: 60px;
    flex-shrink: 0;
    animation: scroll 25s linear infinite;
}

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

.logo-item {
    width: 130px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

@media (max-width: 768px) {
    .clients-section { padding: 50px 0; }
    .marquee-track { gap: 40px; padding-right: 40px; animation-duration: 18s; }
    .logo-item { width: 100px; height: 45px; }
}