.carousel-container {
            width: 100%;
            overflow: hidden;
            position: relative;
            background: rgba(255,255,255,0.1);
            border-radius: 15px;
            padding: 20px 0;
            margin: 20px 0;
        }

        .carousel-track {
            display: flex;
            width: calc((420px + 30px) * 14);
            animation: scroll 60s linear infinite;
        }

        .carousel-track:hover {
            animation-play-state: paused;
        }

        .logo-item {
            flex: 0 0 420px;
            height: 170px;
            margin: 0 15px;
            background: white;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .logo-item:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        .logo-item img {
            max-width: 400px;
            max-height: 150px;
            object-fit: contain;
            /* padding: 15px; */
        }

        .placeholder-logo {
            font-size: 14px;
            color: #6c757d;
            font-weight: 600;
            text-align: center;
            padding: 15px;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-200px * 29 - 15px * 29));
            }
        }

        .carousel-controls {
            text-align: center;
            margin-top: 20px;
        }

        .speed-control {
            margin: 0 10px;
        }

        /* Gradient fade effects on sides */
        .carousel-container::before,
        .carousel-container::after {
            content: '';
            position: absolute;
            top: 0;
            width: 100px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .carousel-container::before {
            left: 0;
            background: linear-gradient(to right, #fcfcfc, transparent);
        }

        .carousel-container::after {
            right: 0;
            background: linear-gradient(to left, #fcfcfc, transparent);
        }