.clients-section {
            max-width: 1400px;
            margin: 40px auto;
            padding: 20px;
        }
        
        .section-title {
            text-align: center;
            color: #3b3b3b;
            text-transform: uppercase;
            font-size: 28px;
            margin-bottom: 40px;
            position: relative;
            padding-bottom: 15px;
			border: none !important;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #3b3b3b, #6c757d);
            border-radius: 2px;
        }
        
        .clients-grid {
            display: grid;
            grid-template-columns: repeat(10 , 1fr);
            gap: 15px;
            justify-content: center;
        }
        
        .client-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100px;
            padding: 15px;
            position: relative;
            cursor: pointer;
        }
        
        .client-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            z-index: 10;
        }
        
        .client-logo {
            max-width: 100%;
            max-height: 80px;
            width: auto;
            height: auto;
            object-fit: contain;
            opacity: 0.9;
            transition: all 0.4s ease;
        }
        
        .client-card:hover .client-logo {
            opacity: 1;
            transform: scale(1.4); /* Increased zoom on hover */
        }
        
       
        
        /* Responsive adjustments */
        @media (max-width: 1200px) {
            .clients-grid {
                grid-template-columns: repeat(6, 1fr);
            }
        }
        
        @media (max-width: 992px) {
            .clients-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .section-title {
                font-size: 24px;
            }
        }
        
        @media (max-width: 768px) {
            .clients-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 12px;
            }
            
            .client-card {
                height: 100px;
                padding: 12px;
            }
            
            .client-card:hover .client-logo {
                transform: scale(1.3); /* Slightly less zoom on smaller screens */
            }
            
            .section-title {
                font-size: 22px;
            }
        }
        
        @media (max-width: 576px) {
            .clients-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .client-card {
                height: 90px;
                padding: 10px;
            }
            
            .client-card:hover .client-logo {
                transform: scale(1.2); /* Slightly less zoom on mobile */
            }
            
            .section-title {
                font-size: 20px;
                margin-bottom: 30px;
            }
        }