﻿/* -------- Start Perfect Logo slider style --------- */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        .logo-slider-container {
            max-width: 100%;
            margin: 2rem auto;
            position: relative;
            overflow: hidden;
            padding: 0 50px;
            touch-action: pan-y;
        }
        
        .logo-track {
            display: flex;
            gap: 20px;
            transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
            will-change: transform;
        }
        
        .logo-slide {
            flex: 0 0 250px;
            height: 150px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }
        
        .logo-slide img {
            max-width: 80%;
            max-height: 80%;
            object-fit: contain;
            filter: grayscale(20%);
            transition: all 0.3s ease;
        }
        
        .logo-slide:hover img {
            filter: grayscale(0%);
            transform: scale(1.1);
        }
        
        .slider-nav {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            pointer-events: none;
            z-index: 2;
        }
        
        .slider-nav button {
            pointer-events: all;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: none;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            cursor: pointer;
            font-size: 1.2rem;
            color: #333;
            transition: all 0.2s ease;
        }
        
        .slider-nav button:hover {
            background: #f0f0f0;
            transform: scale(1.1);
        }
        
        .slider-nav button:disabled {
            opacity: 0.3;
            transform: none !important;
            cursor: not-allowed;
        }
        
        @media (max-width: 768px) {
            .logo-slider-container {
                padding: 0 40px;
            }
            .logo-slide {
                flex: 0 0 120px;
                height: 80px;
            }
            .slider-nav button {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
        }
/* End Perfect Logo slider style */
