/* client-animations.css */

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes slideRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.animate-slide-left {
    animation: slideLeft 30s linear infinite;
}

.animate-slide-right {
    animation: slideRight 30s linear infinite;
}

.animation-paused {
    animation-play-state: paused;
}

/* Client section styling */
.client-section {
    margin-bottom: 4rem;
    margin-top: 2.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    position: relative;
    overflow: hidden;
}

.client-logo {
    flex: none;
    min-width: 120px;
    height: 120px;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.client-logo img {
    height: 6rem;
    width: 6rem;
    object-fit: contain;
}

.client-track-container {
    width: 100%;
    overflow: hidden;
}

.top-track-container {
    margin-bottom: 2.5rem;
}

.client-track {
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
}