.uu-client-section * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .uu-client-section {
            font-family: 'Inter', sans-serif;
            background: #ffffff;
            padding: 4rem 2rem;
            display: flex;
            justify-content: center;
            position: relative;
        }

        .uu-client-container {
            max-width: 1280px;
            width: 100%;
        }

        .uu-client-heading {
            text-align: center;
            margin-bottom: 3rem;
        }

        .uu-client-heading h2 {
            font-size: 2.4rem;
            font-weight: 700;
            color: #1a1a2e;
            letter-spacing: -0.02em;
        }

        .uu-client-heading h2 span {
            color: #7c3aed;
            position: relative;
        }

        .uu-client-heading h2 span::before {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 0;
            right: 0;
            height: 8px;

            border-radius: 4px;
            z-index: -1;
        }

        .uu-client-heading p {
            color: #5a5a7a;
            font-size: 1.05rem;
            margin-top: 0.5rem;
        }

        /* Slider Container */
        .uu-slider-wrapper {
            position: relative;
            overflow: hidden;
            padding: 1.5rem 0;

            border-radius: 24px;


        }

        .uu-slider-track {
            display: flex;
            gap: 3rem;
            animation: uu-scroll 25s linear infinite;
            width: max-content;
        }

        .uu-slider-track:hover {
            animation-play-state: paused;
        }

        .uu-slide-item {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 179px;
            height: 131px padding: 0.5rem 1rem;
            background: #ffffff;
            border-radius: 16px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .uu-slide-item:hover {
            border-color: rgba(124, 58, 237, 0.1);
            box-shadow: 0 8px 24px rgba(124, 58, 237, 0.06);
            transform: scale(1.02);
        }

        .uu-slide-item img {
            max-width: 221px;
            height: 135px;
            object-fit: contain;

            transition: all 0.4s ease;
        }

        .uu-slide-item:hover img {
            filter: grayscale(0%) opacity(1);
        }

        /* Animation for continuous scroll */
        @keyframes uu-scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        /* Duplicate track for seamless loop */
        .uu-slider-track-duplicate {
            display: flex;
            gap: 3rem;
            animation: uu-scroll 25s linear infinite;
            width: max-content;
        }

        .uu-slider-track-duplicate:hover {
            animation-play-state: paused;
        }

        /* Inner container for the two tracks */
        .uu-track-container {
            display: flex;
            gap: 3rem;
            width: max-content;
        }

        /* Responsive */
        @media screen and (max-width: 768px) {
            .uu-client-section {
                padding: 3rem 1rem;
            }

            .uu-client-heading h2 {
                font-size: 1.8rem;
            }

            .uu-slide-item {
                min-width: 170px;
                padding: 0.3rem 0.8rem;
                height: 125px;
            }

            .uu-slide-item img {
                max-width: 100px;
                height: 125px;
            }

            .uu-slider-track {
                gap: 2rem;
            }

            .uu-slider-track-duplicate {
                gap: 2rem;
            }

            .uu-track-container {
                gap: 2rem;
            }
        }

        @media screen and (max-width: 480px) {
            .uu-slide-item {
                min-width: 100px;
                padding: 0.2rem 0.6rem;
            }

            .uu-slide-item img {
                max-width: 80px;
                height: 35px;
            }

            .uu-slider-track {
                gap: 1.5rem;
            }

            .uu-slider-track-duplicate {
                gap: 1.5rem;
            }

            .uu-track-container {
                gap: 1.5rem;
            }
        }


           /* ===== MM Expert Section ===== */
    .mm-expert-section {
        font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        max-width: 100%;
        margin: 0 auto;
        padding: 80px 40px;
        background: linear-gradient(145deg, #7c1fd9 0%, #3b28cc 50%, #1a3a9e 100%);
        border-radius: 32px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 24px 72px rgba(26, 47, 85, 0.20);
        isolation: isolate;
    }

    /* Animated gradient overlay */
    .mm-expert-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 60%),
            radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
        pointer-events: none;
        z-index: 0;
    }

    /* Decorative blurred orbs */
    .mm-expert-section::after {
        content: '';
        position: absolute;
        bottom: -30%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(120, 80, 255, 0.15) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
        z-index: 0;
    }

    .mm-expert-inner {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* ---- Tag ---- */
    .mm-expert-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        color: #f0edff;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        padding: 8px 22px;
        border-radius: 60px;
        margin-bottom: 24px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        transition: background 0.3s ease;
    }

    .mm-expert-tag .mm-tag-dot {
        display: inline-block;
        width: 8px;
        height: 8px;
        background: #6ef0a0;
        border-radius: 50%;
        animation: mm-pulse-dot 2s ease-in-out infinite;
    }

    @keyframes mm-pulse-dot {
        0%,
        100% {
            opacity: 1;
            transform: scale(1);
        }
        50% {
            opacity: 0.5;
            transform: scale(0.8);
        }
    }

    /* ---- Heading ---- */
    .mm-expert-heading {
        font-size: clamp(34px, 4.4vw, 52px);
        font-weight: 800;
        color: #ffffff;
        margin: 0 0 14px 0;
        line-height: 1.15;
        letter-spacing: -0.025em;
        max-width: 700px;
    }

    .mm-expert-heading .mm-highlight {
        background: linear-gradient(135deg, #b8a5ff, #7dd3fc);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    /* ---- Description ---- */
    .mm-expert-desc {
        font-size: 18px;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.80);
        max-width: 620px;
        margin: 0 auto 40px auto;
        font-weight: 400;
        letter-spacing: 0.2px;
    }

    /* ---- Button Wrapper ---- */
    .mm-expert-btn-wrap {
        position: relative;
        display: inline-block;
    }

    /* ---- Button ---- */
    .mm-expert-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        background: linear-gradient(135deg, #ffffff 0%, #f0f2ff 100%);
        color: #1a1a3e;
        border: none;
        padding: 18px 52px;
        font-size: 16px;
        font-weight: 700;
        border-radius: 60px;
        cursor: pointer;
        transition: all 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.20);
        letter-spacing: 0.4px;
        text-decoration: none;
        position: relative;
        overflow: hidden;
    }

    /* Button shine effect */
    .mm-expert-btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.40) 0%, rgba(255, 255, 255, 0) 60%);
        opacity: 0;
        transition: opacity 0.4s ease;
        border-radius: 60px;
        pointer-events: none;
    }

    .mm-expert-btn::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15), transparent 60%);
        opacity: 0;
        transition: opacity 0.5s ease;
        pointer-events: none;
    }

    .mm-expert-btn:hover {
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
        background: linear-gradient(135deg, #ffffff 0%, #e8ebff 100%);
    }

    .mm-expert-btn:hover::before {
        opacity: 1;
    }

    .mm-expert-btn:hover::after {
        opacity: 1;
    }

    .mm-expert-btn:active {
        transform: translateY(-1px) scale(0.98);
    }

    .mm-expert-btn .mm-btn-text {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .mm-expert-btn .mm-btn-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 22px;
        height: 22px;
        transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
        position: relative;
        z-index: 1;
    }

    .mm-expert-btn:hover .mm-btn-icon {
        transform: translateX(6px) rotate(-4deg);
    }

    .mm-expert-btn .mm-btn-icon svg {
        width: 20px;
        height: 20px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2.5;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    /* ---- Decorative dots ---- */
    .mm-decor-dot {
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
        z-index: 0;
    }

    .mm-decor-dot.mm-d1 {
        width: 14px;
        height: 14px;
        background: rgba(255, 255, 255, 0.10);
        top: 40px;
        right: 70px;
        animation: mm-float 6s ease-in-out infinite;
    }

    .mm-decor-dot.mm-d2 {
        width: 24px;
        height: 24px;
        background: rgba(255, 255, 255, 0.06);
        bottom: 50px;
        left: 50px;
        animation: mm-float 8s ease-in-out infinite reverse;
    }

    .mm-decor-dot.mm-d3 {
        width: 10px;
        height: 10px;
        background: rgba(255, 255, 255, 0.12);
        top: 50%;
        left: 35px;
        transform: translateY(-50%);
        animation: mm-float 7s ease-in-out infinite 1s;
    }

    .mm-decor-dot.mm-d4 {
        width: 18px;
        height: 18px;
        background: rgba(255, 255, 255, 0.05);
        top: 25%;
        right: 30px;
        animation: mm-float 9s ease-in-out infinite 2s;
    }

    .mm-decor-dot.mm-d5 {
        width: 8px;
        height: 8px;
        background: rgba(255, 255, 255, 0.08);
        bottom: 30%;
        left: 80px;
        animation: mm-float 5s ease-in-out infinite 0.5s;
    }

    @keyframes mm-float {
        0%,
        100% {
            transform: translateY(0) scale(1);
        }
        50% {
            transform: translateY(-12px) scale(1.1);
        }
    }

    /* ---- Subtle bottom glow ---- */
    .mm-expert-glow {
        position: absolute;
        bottom: -60px;
        left: 50%;
        transform: translateX(-50%);
        width: 600px;
        height: 120px;
        background: radial-gradient(ellipse, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
        z-index: 0;
    }

    /* ===== Responsive ===== */
    @media (max-width: 768px) {
        .mm-expert-section {
            padding: 56px 28px;
            border-radius: 24px;
        }

        .mm-expert-desc {
            font-size: 16px;
            line-height: 1.7;
            padding: 0 4px;
        }

        .mm-expert-btn {
            padding: 16px 36px;
            font-size: 15px;
            width: 100%;
            justify-content: center;
        }

        .mm-expert-btn .mm-btn-icon svg {
            width: 18px;
            height: 18px;
        }

        .mm-decor-dot.mm-d1,
        .mm-decor-dot.mm-d2,
        .mm-decor-dot.mm-d3,
        .mm-decor-dot.mm-d4,
        .mm-decor-dot.mm-d5 {
            display: none;
        }

        .mm-expert-glow {
            width: 300px;
            height: 80px;
            bottom: -40px;
        }
    }

    @media (max-width: 480px) {
        .mm-expert-section {
            padding: 40px 20px;
            border-radius: 20px;
        }

        .mm-expert-tag {
            font-size: 11px;
            padding: 6px 16px;
            letter-spacing: 1px;
        }

        .mm-expert-heading {
            font-size: 28px;
        }

        .mm-expert-desc {
            font-size: 15px;
            margin-bottom: 32px;
        }

        .mm-expert-btn {
            padding: 14px 28px;
            font-size: 14px;
        }
    }

    /* ===== Reduced motion ===== */
    @media (prefers-reduced-motion: reduce) {
        .mm-decor-dot,
        .mm-expert-btn,
        .mm-expert-btn .mm-btn-icon,
        .mm-expert-tag .mm-tag-dot {
            animation: none !important;
            transition: none !important;
        }

        .mm-expert-btn:hover {
            transform: none !important;
        }

        .mm-expert-btn:hover .mm-btn-icon {
            transform: none !important;
        }
    }