

       .client .logo-item img{
        max-width: 170px;
       }
        .slider-container {
            position: relative;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 15px 0;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }

        .slider-track {
            display: flex;
            animation: scroll 25s linear infinite;
            width: calc(200px * 16);
        }

        .logo-item {
            flex: 0 0 200px;
            height: 120px;
            margin: 0 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .logo-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.6s;
        }

        .logo-item:hover::before {
            left: 100%;
        }

        .logo-item:hover {
            transform: translateY(-8px) scale(1.05);
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(103, 126, 234, 0.3);
            box-shadow: 0 15px 35px rgba(103, 126, 234, 0.2);
        }

        .logo-placeholder {
            width: 80px;
            height: 60px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .logo-placeholder::after {
            content: attr(data-company);
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.8rem;
            font-weight: 500;
            white-space: nowrap;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .logo-item:hover .logo-placeholder::after {
            bottom: -25px;
            opacity: 1;
        }

        .company-name {
            position: absolute;
            bottom: 8px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.85rem;
            color: #a0a0b3;
            font-weight: 500;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .logo-item:hover .company-name {
            opacity: 1;
        }

        .controls {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-top: 40px;
        }

        .control-btn {
            padding: 12px 24px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            color: white;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .control-btn:hover {
            background: rgba(103, 126, 234, 0.2);
            border-color: rgba(103, 126, 234, 0.4);
            transform: translateY(-2px);
        }

        .control-btn.active {
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-color: transparent;
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .slider-track.paused {
            animation-play-state: paused;
        }

        .slider-track.reverse {
            animation-direction: reverse;
        }

        .stats {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin-top: 50px;
            flex-wrap: wrap;
        }



        @media (max-width: 768px) {

            
            .logo-item {
                flex: 0 0 160px;
                height: 100px;
                margin: 0 15px;
            }
            
            .logo-placeholder {
                width: 60px;
                height: 45px;
            }
            
            .stats {
                gap: 40px;
            }
            

        }




