
        /* ===== LANGUAGE SWITCHER STYLES ===== */
        .lang-switcher {
            display: flex;
            align-items: center;
            gap: 4px;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.25);
            border-radius: 30px;
            padding: 4px 6px;
            margin-left: 12px;
        }
        .lang-btn {
            background: transparent;
            border: none;
            color: #aaa;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.25s ease;
            letter-spacing: 0.5px;
        }
        .lang-btn:hover {
            color: #fff;
            background: rgba(255,255,255,0.15);
        }
        .lang-btn.active {
            background: var(--primary, #06A3DA);
            color: #fff;
        }
        .lang-divider {
            color: rgba(255,255,255,0.2);
            font-size: 12px;
            user-select: none;
        }

        /* Devanagari font for Hindi/Marathi */
        body.lang-hi,
        body.lang-mr {
            font-family: 'Noto Sans Devanagari', 'Open Sans', sans-serif;
        }

        /* Floating mobile language switcher */
        .lang-switcher-mobile {
            position: fixed;
            bottom: 80px;
            right: 20px;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            gap: 6px;
            background: #1a1a2e;
            border: 1px solid rgba(6,163,218,0.4);
            border-radius: 14px;
            padding: 8px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }
        .lang-switcher-mobile .lang-btn {
            color: #ccc;
            font-size: 11px;
            padding: 6px 12px;
            text-align: center;
        }
        .lang-switcher-mobile .lang-btn.active {
            background: var(--primary, #06A3DA);
            color: #fff;
        }
        @media (min-width: 992px) {
            .lang-switcher-mobile {
                display: none;
            }
        }
        @media (max-width: 991px) {
            .lang-switcher-desktop {
                display: none;
            }
        }

        /* ===== CLIENT LOGOS SLIDER ===== */
        .clients-section {
            background: #f8fbfe;
            padding: 50px 0 40px;
            overflow: hidden;
        }
        .clients-section .section-heading {
            text-align: center;
            margin-bottom: 36px;
        }
        .clients-section .section-heading h6 {
            color: #06A3DA;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 8px;
        }
        .clients-section .section-heading h2 {
            font-size: 28px;
            font-weight: 700;
            color: #222;
            margin-bottom: 8px;
        }
        .clients-section .section-heading p {
            color: #777;
            font-size: 14px;
            margin: 0;
        }

        /* Slider wrapper with fade edges */
        .clients-slider-wrapper {
            position: relative;
            overflow: hidden;
            width: 100%;
            padding: 8px 0;
        }
        .clients-slider-wrapper::before,
        .clients-slider-wrapper::after {
            content: '';
            position: absolute;
            top: 0; bottom: 0;
            width: 100px;
            z-index: 2;
            pointer-events: none;
        }
        .clients-slider-wrapper::before {
            left: 0;
            background: linear-gradient(to right, #f8fbfe 0%, transparent 100%);
        }
        .clients-slider-wrapper::after {
            right: 0;
            background: linear-gradient(to left, #f8fbfe 0%, transparent 100%);
        }

        /* The scrolling track */
        .clients-track {
            display: flex;
            gap: 20px;
            width: max-content;
            animation: clientScroll 35s linear infinite;
        }
        .clients-track:hover {
            animation-play-state: paused;
        }
        @keyframes clientScroll {
            0%   { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* Each logo card */
        .client-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: #ffffff;
            border: 1.5px solid #e8f0f7;
            border-radius: 14px;
            padding: 18px 24px;
            min-width: 160px;
            max-width: 160px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            cursor: default;
            user-select: none;
        }
        .client-card:hover {
            box-shadow: 0 8px 28px rgba(6,163,218,0.15);
            transform: translateY(-5px);
            border-color: #06A3DA;
        }
        .client-card .logo-wrap {
            width: 100px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .client-card .logo-wrap img {
            max-width: 100px;
            max-height: 50px;
            width: auto;
            height: auto;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.6;
            transition: filter 0.3s ease, opacity 0.3s ease;
        }
        .client-card:hover .logo-wrap img {
            filter: grayscale(0%);
            opacity: 1;
        }
        /* Text fallback when logo image fails */
        .client-card .logo-text {
            font-size: 14px;
            font-weight: 800;
            color: #555;
            text-align: center;
            letter-spacing: 0.5px;
            display: none;
        }
        .client-card .client-name {
            font-size: 11.5px;
            font-weight: 600;
            color: #999;
            text-align: center;
            letter-spacing: 0.2px;
            line-height: 1.3;
        }

