/* Clients Section */
.clients-section {
    background: #ffffff;
    overflow: hidden;
    padding: 4rem 0;
}

.clients-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 3rem;
    padding: 1rem 0;
}

.clients-slider::before,
.clients-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.clients-slider::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}

.clients-slider::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

.clients-track {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
    gap: 2rem;
}

.clients-track:hover {
    animation-play-state: paused;
}

.client-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 100px;
    background: #fff;
    border-radius: 12px;
    font-weight: 600;
    color: #666;
    font-size: 1.2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.client-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: var(--accent-color);
    background: #fff;
}

.client-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 1rem;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Clients */
@media (max-width: 768px) {
    .client-item {
        min-width: 150px;
        height: 80px;
        font-size: 1rem;
    }

    .clients-track {
        gap: 1rem;
    }
}