.ticker-container {
    background-color: #ffffff;
    padding: 40px 0;
    overflow: hidden;
    position: relative;
    /*box-shadow: 0 2px 10px rgba(0,0,0,0.1);*/
}

    .ticker-container::before,
    .ticker-container::after {
        content: '';
        position: absolute;
        top: 0;
        width: 100px;
        height: 100%;
        z-index: 2;
    }

    .ticker-container::before {
        left: 0;
        background: linear-gradient(to right, #ffffff, transparent);
    }

    .ticker-container::after {
        right: 0;
        background: linear-gradient(to left, #ffffff, transparent);
    }

.ticker-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

.ticker-wrapper {
    display: flex;
    width: fit-content;
    animation: scroll 30s linear infinite;
}

    .ticker-wrapper:hover {
        animation-play-state: paused;
    }

.logo-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 50px;
    min-width: 150px;
}

    .logo-item img {
        max-width: 200px;
        max-height: 100px;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: 0.7;
        transition: all 0.3s ease;
    }

    .logo-item:hover img {
        filter: grayscale(0%);
        opacity: 1;
        transform: scale(1.1);
    }

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ticker-wrapper {
        animation-play-state: paused;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-item {
        padding: 0 30px;
        min-width: 150px;
    }

        .logo-item img {
            max-width: 100px;
            max-height: 60px;
        }
}
