.clients-section {
    background: linear-gradient(to bottom right, #ffffff, #f5f5ff);
    padding: 70px 0;
    text-align: center;
}

.clients-title {
    font-size: 32px;
    font-weight: 700;
    color: #1d2d50;
    margin-bottom: 40px;
}

/* SLIDER CONTAINER */
.clients-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.clients-track {
    display: flex;
    gap: 50px;
    align-items: center;
}

.clients-track img {
    height: 90px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: 0.3s ease;
}

.clients-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Auto-moving animation */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 768px) {
    .clients-track img {
        height: 45px;
    }
}



/* NEW pixel-based animation */
@keyframes clientsScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-1 * var(--scroll-width)));
    }
}
