     /* === Theme styles (same as your main site) === */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
            background: linear-gradient(135deg, #111111 0%, #000000 50%, #111111 100%);
            color: #fff;
            overflow-x: hidden;
        }

        html {
            scroll-behavior: smooth;
        }

        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #111111;
        }

        ::-webkit-scrollbar-thumb {
            background: #666666;
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #999999;
        }

        

        .btn-primary {
            background: #ffffff;
            border: none;
            border-radius: .5rem;
            padding: .5rem 1.5rem;
            font-weight: 600;
            transition: all .3s;
            color: #000000;
        }

        .btn-primary:hover {
            background: #cccccc;
            transform: scale(1.05);
        }

        .section {
            padding: 5rem 0;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #d1d5db;
            text-align: center;
            margin-bottom: 3rem;
        }

        .text-primary {
            color: #ffffff !important;
        }

        .glass-card {
            background: rgba(20, 20, 20, 0.6);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 1rem;
            padding: 2rem;
            transition: all .5s;
            height: 100%;
        }

        /* .glass-card:hover {
            border-color: rgba(255, 255, 255, 0.4);
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
        } */
        .carousel-item{
            height: 700px;
}
        .carousel-item img {
            width: 100%;
            max-height: 700px;
            object-fit: contain;
            border-radius: .5rem;
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2.2rem;
            }
            .carousel-item{
            max-height: 205px;
            .carousel-item img {
            width: 100%;
            max-height: 500px;
            object-fit: contain;
            border-radius: .5rem;
        }
}
        }

        

        /* === Partners / Clients (Marquee) === */
        .partners-section {
            padding: 5rem 0;
        }

        .partners-wrap {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 16px;
        }

        .partners-title {
            text-align: center;
            font-weight: 800;
            margin-bottom: 1.25rem;
        }

        .partners-subtitle {
            text-align: center;
            color: #d1d5db;
            margin-bottom: 2rem;
        }

       .logo-marquee {
            position: relative;
            overflow: hidden;
            border-radius: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(12px);
            mask-image: linear-gradient(to right, transparent 0, black 8%, black 92%, transparent 100%);
            -webkit-mask-image: linear-gradient(to right, transparent 0, black 8%, black 92%, transparent 100%);
            padding: 24px 32px;
            /* ← نقلنا الـpadding للـcontainer */
        }

        /* سرعة قابلة للتخصيص عبر متغير */
        .logo-track {
            display: flex;
            gap: 48px;
            align-items: center;
            width: max-content;
            /* يضمن عرض بمقدار المحتوى */
            padding: 0;
            /* ← مهم جداً: بدون padding */
            animation: partners-marquee var(--marquee-speed, 15s) linear infinite;
            will-change: transform;
        }

        .logo-marquee:hover .logo-track {
            animation-play-state: paused;
        }

        .logo-item {
            flex: 0 0 auto;
            display: grid;
            place-items: center;
            min-width: 140px;
            height: 100px;
            opacity: .9;
            transition: transform .25s ease, opacity .25s ease;
        }

        .logo-item:hover {
            transform: scale(1.06);
            opacity: 1;
        }

        .logo-item img {
            max-height: 100px;
            max-width: 160px;
            object-fit: contain;
        }

         @keyframes partners-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); } /* مع وجود نسختين متطابقتين يصير سلس */
}

        @media (max-width: 768px) {
            .logo-track {
                gap: 32px;
            }

            .logo-item {
                min-width: 120px;
                height: 70px;
            }

            .logo-item img {
                max-height: 50px;
                max-width: 140px;
            }
        }