

        
        .customers-section {
            padding: 40px 0;
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-top: 30px;
            position: relative;
            overflow: hidden;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
            padding: 0 15px;
        }
        
        .section-header h2 {
            color: var(--secondary-color);
            font-weight: 700;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            font-size: 1.5rem;
        }
        
        .section-header h2:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background-color: var(--primary-color);
            bottom: -10px;
            right: 50%;
            transform: translateX(50%);
            border-radius: 2px;
        }
        
        .section-header p {
            color: #666;
            max-width: 600px;
            margin: 15px auto 0;
            line-height: 1.6;
            font-size: 0.95rem;
        }
        
        /* استایل برای بخش اصلی اسکرول */
        .customers-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            padding: 20px 0;
            min-height: 220px;
        }
        
        /* دکمه‌های اسکرول در گوشه‌ها */
        .scroll-btn-container {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 20;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .scroll-btn-container.left {
            right: 5px;
        }
        
        .scroll-btn-container.right {
            left: 5px;
        }
        
        .scroll-btn {
            background-color: white;
            color: var(--primary-color);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
            border: 2px solid #f0f0f0;
            touch-action: manipulation;
            user-select: none;
            -webkit-user-select: none;
        }
        
        .scroll-btn:hover:not(:disabled),
        .scroll-btn:active:not(:disabled) {
            background-color: var(--primary-color);
            color: white;
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(74, 111, 165, 0.3);
            border-color: var(--primary-color);
        }
        
        .scroll-btn:disabled {
            opacity: 0;
            visibility: hidden;
            transform: scale(0.8);
            cursor: default;
            pointer-events: none;
        }
        
        /* کانتینر اسکرول */
        .scroll-wrapper {
            width: 100%;
            overflow: hidden;
            padding: 15px 60px;
            position: relative;
            -webkit-overflow-scrolling: touch;
        }
        
        @media (max-width: 768px) {
            .scroll-wrapper {
                padding: 15px 50px;
            }
        }
        
        @media (max-width: 576px) {
            .scroll-wrapper {
                padding: 15px 45px;
            }
            
            .scroll-btn-container.left {
                right: 2px;
            }
            
            .scroll-btn-container.right {
                left: 2px;
            }
            
            .scroll-btn {
                width: 45px;
                height: 45px;
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 400px) {
            .scroll-wrapper {
                padding: 15px 40px;
            }
            
            .scroll-btn {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
            }
        }
        
        .customers-track {
            display: flex;
            gap: 20px;
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform;
            padding: 5px 0;
            touch-action: pan-y;
        }
        
        /* آیتم مشتریان */
        .customer-card {
            flex: 0 0 auto;
            width: 180px;
            height: 130px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background-color: #fff;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 2px solid #f5f5f5;
            padding: 20px 15px;
            position: relative;
            overflow: hidden;
            user-select: none;
        }
        
        @media (max-width: 768px) {
            .customer-card {
                width: 160px;
                height: 120px;
            }
        }
        
        @media (max-width: 576px) {
            .customer-card {
                width: 140px;
                height: 110px;
                padding: 15px 10px;
            }
        }
        
        @media (max-width: 400px) {
            .customer-card {
                width: 130px;
                height: 100px;
                padding: 12px 8px;
            }
        }
        
        .customer-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 4px;
            background-color: var(--primary-color);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .customer-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
            border-color: var(--primary-color);
        }
        
        .customer-card:hover::before {
            opacity: 1;
        }
        
        .customer-icon {
            font-size: 2.5rem;
            margin-bottom: 12px;
            transition: all 0.3s ease;
        }
        
        @media (max-width: 576px) {
            .customer-icon {
                font-size: 2rem;
                margin-bottom: 8px;
            }
        }
        
        .customer-name {
            font-size: 0.9rem;
            color: #444;
            font-weight: 600;
            text-align: center;
            line-height: 1.3;
        }
        
        @media (max-width: 576px) {
            .customer-name {
                font-size: 0.85rem;
            }
        }
        
        /* رنگ‌های مختلف برای آیکن‌ها */
        .customer-card:nth-child(1) .customer-icon { color: #4a6fa5; }
        .customer-card:nth-child(2) .customer-icon { color: #ff6b6b; }
        .customer-card:nth-child(3) .customer-icon { color: #51cf66; }
        .customer-card:nth-child(4) .customer-icon { color: #ffd43b; }
        .customer-card:nth-child(5) .customer-icon { color: #cc5de8; }
        .customer-card:nth-child(6) .customer-icon { color: #22b8cf; }
        .customer-card:nth-child(7) .customer-icon { color: #f76707; }
        .customer-card:nth-child(8) .customer-icon { color: #5c7cfa; }
        .customer-card:nth-child(9) .customer-icon { color: #20c997; }
        .customer-card:nth-child(10) .customer-icon { color: #e64980; }
        
        /* نمایشگر موقعیت */
        .position-indicator {
            text-align: center;
            margin-top: 20px;
            padding: 10px 15px;
            background-color: #f8f9fa;
            border-radius: 10px;
            display: inline-block;
            border: 1px solid #e9ecef;
            font-size: 0.85rem;
            color: #666;
        }
        
        .position-container {
            text-align: center;
            margin-top: 15px;
        }
        
        /* توضیحات */
        .instructions {
            text-align: center;
            margin-top: 30px;
            padding: 15px;
            background-color: #f8f9fa;
            border-radius: 10px;
            max-width: 800px;
            margin-right: auto;
            margin-left: auto;
            font-size: 0.9rem;
        }
        
        .instructions h5 {
            color: var(--secondary-color);
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        
        .instructions p {
            color: #666;
            margin-bottom: 0;
            font-size: 0.85rem;
        }
        
 

        
        .scroll-wrapper::before {
            right: 0;
            background: linear-gradient(to left, white 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
        }
        
        .scroll-wrapper::after {
            left: 0;
            background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
        }
        
        @media (max-width: 576px) {
            .scroll-wrapper::before,
            .scroll-wrapper::after {
                width: 40px;
            }
        }
        
        /* حالت‌های مختلف افکت */
        .scroll-wrapper.fade-left::after {
            opacity: 1;
        }
        
        .scroll-wrapper.fade-right::before {
            opacity: 1;
        }
        
        .scroll-wrapper.no-fade-left::after {
            opacity: 0;
        }
        
        .scroll-wrapper.no-fade-right::before {
            opacity: 0;
        }
        
        /* جلوگیری از انتخاب متن و کشیدن */
        .customers-track,
        .customer-card {
            -webkit-user-drag: none;
            -khtml-user-drag: none;
            -moz-user-drag: none;
            -o-user-drag: none;
        }
        
        /* بهبود عملکرد لمسی */
        .scroll-btn {
            -webkit-touch-callout: none;
        }
        
        /* برای جلوگیری از bounce effect در iOS */
        body {
            overscroll-behavior: none;
        }
        
        .scroll-wrapper {
            overscroll-behavior-x: contain;
        }
		
		
/*just for scroll*/		  
.scrollWrapper {
  overflow-x: auto;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    user-select: none;
    scroll-behavior: smooth; /* برای دکمه‌ها */
}

.scrollWrapper:active {
    cursor: grabbing;
}

.customers-track {
    display: flex;
    gap: 20px;
    width: max-content;
    padding-bottom: 10px;
}

.customer-card {
    flex: 0 0 auto;
    width: 160px; /* حدود 5 تا دیده میشه */
    text-align: center;
}

.customer-card img {
    max-width: 120px;
    pointer-events: none; /* خیلی مهم */
}

/* مخفی کردن اسکرول‌بار */
.scrollWrapper::-webkit-scrollbar {
    display: none;
}
.scrollWrapper {
    scrollbar-width: none;
}
.slider-btn {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    z-index: 10;
}

.slider-btn-left {
    left: 0;
}

.slider-btn-right {
    right: 0;
}

