/* Logo Scroll Animation for Certifications Page */

.logo-scroll-container {
    width: 100%;
    height: 120px;
    overflow: hidden;
    background-color: #ffffff;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    position: relative;
    margin-top: 30px;
}

.logo-scroll {
    display: flex;
    align-items: center;
    height: 100%;
    animation: scroll 80s linear infinite;
    will-change: transform;
}

.logo-scroll img {
    height: auto;
    width: 160px;
    margin-right: 20px;
    object-fit: contain;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.logo-scroll img:hover {
    transform: scale(1.1);
}

/* 37 logos × (160px width + 20px margin) = 6660px per set */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-6660px);
    }
}
