        /* Client Slider - Consistent with Services Section */
        .our-clients * {
            box-sizing: border-box;
        }

        .our-clients {
            background-color: #f8f9fa;
            position: relative;
            margin-top: 0px;
            padding-top: 120px;
            overflow: visible;
        }

        .our-clients .section-heading {
            text-align: center;
            margin-bottom: 45px;
        }

        .our-clients .section-heading h6 {
            font-size: 12px;
            color: var(--secondary-color);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            margin-bottom: 15px;
        }

        .our-clients .section-heading h2 {
            font-size: 32px;
            text-transform: capitalize;
            color: #2a2a2a;
            font-weight: 700;
            letter-spacing: 0.25px;
            position: relative;
            z-index: 2;
            line-height: 1.3;
            margin-bottom: -5px;
        }

        .our-clients .section-heading h2 em {
            font-style: normal;
            color: var(--primary-color);
        }

        .our-clients .section-heading h2 span {
            color: var(--secondary-color);
            font-weight: 700;
            opacity: 1;
            text-transform: capitalize;
        }

        .our-clients .section-heading span {
            font-size: 32px;
            text-transform: uppercase;
            font-weight: 700;
            color: var(--secondary-color);
            opacity: 0.15;
        }

        /* Client Slider Speed Control - Hidden Toggle */
        .our-clients .cl-speed-toggle {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 40px;
            height: 40px;
            background: var(--primary-color);
            color: #ffffff;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            z-index: 10;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }

        .our-clients .cl-speed-toggle:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
        }

        /* Speed Control Panel */
        .our-clients .cl-speed-panel {
            position: absolute;
            top: 60px;
            right: 10px;
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
            padding: 16px;
            z-index: 11;
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }

        .our-clients .cl-speed-panel.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .our-clients .cl-speed-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
            padding-bottom: 8px;
            border-bottom: 1px solid #e0e0e0;
        }

        .our-clients .cl-speed-header span {
            font-size: 13px;
            font-weight: 600;
            color: #2a2a2a;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .our-clients .cl-close-panel {
            background: none;
            border: none;
            font-size: 20px;
            color: #999;
            cursor: pointer;
            padding: 0;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: color 0.2s ease;
        }

        .our-clients .cl-close-panel:hover {
            color: #2a2a2a;
        }

        .our-clients .cl-speed-options {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .our-clients .cl-speed-option {
            padding: 8px 12px;
            border: 2px solid #e0e0e0;
            background: #ffffff;
            color: #2a2a2a;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .our-clients .cl-speed-option:hover {
            border-color: var(--primary-color);
            color: var(--primary-color);
        }

        .our-clients .cl-speed-option.active {
            background: var(--primary-color);
            color: #ffffff;
            border-color: var(--primary-color);
        }

        .our-clients .cl-speed-option i {
            font-size: 10px;
        }

        /* Client Slider Wrapper - Matches Services Style */
        .our-clients .cl-slider-wrapper {
            overflow: visible;
            position: relative;
            padding: 30px 0;
            margin-top: -50px;
        }

        .our-clients .cl-slider-mask {
            overflow: hidden;
            width: 100%;
            position: relative;
        }

        @media (max-width: 768px) {
            .our-clients .cl-slider-wrapper {
                margin-top: -20px;
            }
        }

        .our-clients .cl-slider-wrapper::before,
        .our-clients .cl-slider-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 120px;
            z-index: 2;
            pointer-events: none;
        }

        .our-clients .cl-slider-wrapper::before {
            left: 0;
            background: linear-gradient(to right, #f8f9fa, rgba(248, 249, 250, 0));
        }

        .our-clients .cl-slider-wrapper::after {
            right: 0;
            background: linear-gradient(to left, #f8f9fa, rgba(255, 255, 255, 0));
        }

        /* Client Slider Items - Service Card Style */
        .our-clients .cl-slider {
            display: flex;
            gap: 30px;
            width: max-content;
            will-change: transform;
            backface-visibility: hidden;
            -webkit-font-smoothing: antialiased;
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }

        @keyframes scrollClients {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .our-clients .cl-item {
            flex: 0 0 220px;
            height: 140px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #ffffff;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
            transition: box-shadow 0.3s ease, background 0.3s ease;
            cursor: grab;
            margin: 15px;
            user-select: none;
            -webkit-user-select: none;
        }

        .our-clients .cl-item:active {
            cursor: grabbing;
        }

        .our-clients .cl-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            background: #ffffff;
        }

        .our-clients .cl-logo {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%) opacity(0.5);
            transition: filter 0.3s ease, transform 0.3s ease;
            pointer-events: none;
        }

        .our-clients .cl-item:hover .cl-logo {
            filter: grayscale(0%) opacity(1);
            transform: scale(1.08);
        }

        /* Responsive Design - Matches Services Breakpoints */
        @media (max-width: 992px) {
            .our-clients {
                padding-top: 80px;
            }

            .our-clients .section-heading h6 {
                font-size: 11px;
                margin-bottom: 12px;
            }

            .our-clients .section-heading h2 {
                margin: 0px 15px;
                font-size: 26px;
                line-height: 1.3;
            }

            .our-clients .cl-slider-wrapper {
                margin-top: 20px;
            }

            .our-clients .cl-item {
                flex: 0 0 200px;
                height: 130px;
                padding: 25px;
                margin: 10px;
            }

            .our-clients .cl-slider {
                gap: 25px;
            }

            .our-clients .cl-speed-toggle {
                width: 36px;
                height: 36px;
                font-size: 14px;
            }

            .our-clients .cl-speed-panel {
                min-width: 180px;
            }
        }

        @media (max-width: 768px) {
            .our-clients {
                padding: 60px 0;
            }

            .our-clients .section-heading {
                margin-bottom: 35px;
            }

            .our-clients .section-heading h6 {
                font-size: 10px;
                margin-bottom: 10px;
            }

            .our-clients .section-heading h2 {
                font-size: 20px;
                line-height: 1.3;
                margin: 0px 10px;
            }

            .our-clients .section-heading span {
                font-size: 20px;
                margin-top: 10px;
            }

            .our-clients .cl-slider-wrapper {
                padding: 25px 0;
                margin-top: -30px;
            }

            .our-clients .cl-item {
                flex: 0 0 180px;
                height: 110px;
                padding: 20px;
                margin: 8px;
            }

            .our-clients .cl-slider {
                gap: 20px;
            }

            .our-clients .cl-slider-wrapper::before,
            .our-clients .cl-slider-wrapper::after {
                width: 60px;
            }

            .our-clients .cl-speed-toggle {
                width: 34px;
                height: 34px;
                font-size: 13px;
                top: 8px;
                right: 8px;
            }

            .our-clients .cl-speed-panel {
                top: 50px;
                right: 8px;
                min-width: 160px;
                padding: 12px;
            }

            .our-clients .cl-speed-header span {
                font-size: 11px;
            }

            .our-clients .cl-speed-option {
                padding: 6px 10px;
                font-size: 11px;
            }
        }

        @media (max-width: 576px) {
            .our-clients {
                padding: 50px 0;
            }

            .our-clients .section-heading {
                margin-bottom: 30px;
            }

            .our-clients .section-heading h6 {
                font-size: 11px;
                margin-bottom: 8px;
            }

            .our-clients .section-heading h2 {
                font-size: 22px;
                line-height: 1.3;
            }

            .our-clients .section-heading span {
                font-size: 20px;
            }

            .our-clients .cl-slider-wrapper {
                padding: 20px 0;
                margin-top: -35px;
            }

            .our-clients .cl-item {
                flex: 0 0 160px;
                height: 100px;
                padding: 18px;
                margin: 6px;
                border-radius: 15px;
            }

            .our-clients .cl-slider {
                gap: 15px;
            }

            .our-clients .cl-slider-wrapper::before,
            .our-clients .cl-slider-wrapper::after {
                width: 40px;
            }

            /* Improved mobile touch targets */
            .our-clients .cl-speed-toggle {
                width: 36px;
                height: 36px;
                font-size: 14px;
                top: 10px;
                right: 10px;
            }

            .our-clients .cl-speed-panel {
                top: 55px;
                right: 10px;
                min-width: 180px;
                padding: 12px;
            }

            .our-clients .cl-speed-header span {
                font-size: 12px;
            }

            .our-clients .cl-speed-option {
                padding: 8px 12px;
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            .our-clients {
                padding: 40px 0;
            }

            .our-clients .section-heading h6 {
                font-size: 10px;
                margin-bottom: 6px;
            }

            .our-clients .section-heading h2 {
                font-size: 20px;
                line-height: 1.3;
            }

            .our-clients .section-heading span {
                font-size: 18px;
            }

            .our-clients .cl-slider-wrapper {
                margin-top: -40px;
            }

            .our-clients .cl-item {
                flex: 0 0 140px;
                height: 90px;
                padding: 15px;
                margin: 5px;
            }

            .our-clients .cl-slider {
                gap: 12px;
            }

            .our-clients .cl-slider-wrapper::before,
            .our-clients .cl-slider-wrapper::after {
                width: 30px;
            }

            /* Maintain touch sizes on small screens */
            .our-clients .cl-speed-toggle {
                width: 36px;
                height: 36px;
                font-size: 14px;
            }

            .our-clients .cl-speed-panel {
                min-width: 160px;
                padding: 12px;
            }

            .our-clients .cl-speed-header span {
                font-size: 11px;
            }

            .our-clients .cl-speed-option {
                padding: 6px 10px;
                font-size: 11px;
            }
        }

        @media (max-width: 400px) {
            .our-clients .section-heading h6 {
                font-size: 9px;
                margin-bottom: 5px;
            }

            .our-clients .section-heading h2 {
                font-size: 18px;
                line-height: 1.3;
            }

            .our-clients .cl-slider-wrapper {
                margin-top: -45px;
            }

            .our-clients .cl-item {
                flex: 0 0 130px;
                height: 85px;
                padding: 12px;
            }

            /* Keep usable size even on very small screens */
            .our-clients .cl-speed-toggle {
                width: 32px;
                height: 32px;
                font-size: 12px;
            }

            .our-clients .cl-speed-panel {
                min-width: 140px;
                padding: 10px;
            }

            .our-clients .cl-speed-header span {
                font-size: 10px;
            }

            .our-clients .cl-speed-option {
                padding: 5px 8px;
                font-size: 10px;
            }
        }