﻿.logo-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    background: lightgray; /* Change as needed */
    padding: 10px 0;
}

.logo-track {
    display: flex;
    gap: 20px;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.logo {
    height: 50px; /* Adjust size */
    object-fit: contain;
}

/* Smooth infinite scrolling animation */
@keyframes scroll {
    from {
        transform: translateX(0);
    }

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