* {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        /* Carousel Styles */
        .logo-carousel {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
        }
        
        .logo-carousel-inner {
            overflow: hidden;
        }
        
        .logo-carousel-container {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .logo-slide {
            flex: 0 0 auto;
            min-width: calc(100% / 6);
            padding: 0 15px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .logo-slide img {
            max-width: 100%;
            height: auto;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        
        .logo-slide img:hover {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.05);
        }
        
        /* Navigation Arrows */
        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: white;
            border-radius: 50%;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            z-index: 10;
            border: none;
            font-size: 18px;
            color: #333;
        }
        
        /* LTR Styles */
        html:not([dir="rtl"]) .carousel-arrow.prev {
            left: 10px;
        }
        
        html:not([dir="rtl"]) .carousel-arrow.next {
            right: 10px;
        }
        
        /* RTL Styles */
        html[dir="rtl"] .carousel-arrow.prev {
            right: 10px;
        }
        
        html[dir="rtl"] .carousel-arrow.next {
            left: 10px;
        }
        
        /* Dots Navigation */
        .carousel-dots {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ccc;
            margin: 0 5px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .dot.active {
            background: #333;
        }
        
        /* Responsive Styles */
        @media (max-width: 1024px) {
            .logo-slide {
                min-width: calc(100% / 4);
            }
        }
        
        @media (max-width: 768px) {
            .logo-slide {
                min-width: calc(100% / 3);
            }
        }
        
        @media (max-width: 480px) {
            .logo-slide {
                min-width: calc(100% / 2);
            }
        }