        /* متغيرات الألوان */
        :root {
            --primary-color: #030B9A;
            --primary-light: #2a32c5;
            --primary-dark: #020875;
            --secondary-color: #FF6B00;
            --secondary-light: #f38434;
            --text-dark: #1E293B;
            --text-light: #64748B;
            --background-light: #F8FAFC;
             --bg: #f8f9fa;
            --white: #FFFFFF;
            --border-radius: 12px;
            --shadow: 0 10px 25px rgba(3, 11, 154, 0.1);
            --transition: all 0.3s ease;
             --primary: #030B9A;
            --primary-light: #2a32c9;
            --primary-dark: #020875;
            --accent: #FF6B00;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        /* إعادة تعيين وإعدادات عامة */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Tajawal', 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--background-light);
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        p {
            color: #000000;
            font-weight: 600;
        }
        
         .muh-message {
            background-color: rgba(3, 11, 154, 0.05);
            border-right: 4px solid var(--primary);
            padding: 18px;
            margin-bottom: 25px;
            border-radius: 8px;
        }
        
        .muh-message p {
            margin-bottom: 10px;
            color: var(--text-dark);
        }
        
        .muh-price {
            text-align: center;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--white);
            padding: 18px;
            border-radius: var(--border-radius);
            margin-bottom: 25px;
            font-weight: bold;
            font-size: 18px;
            box-shadow: var(--shadow);
        }
        
        .muh-form-group {
            margin-bottom: 20px;
        }
        
        .muh-checkbox-container {
            display: block;
            position: relative;
            padding-right: 35px;
            margin-bottom: 12px;
            cursor: pointer;
            font-size: 16px;
            user-select: none;
        }
        
        /* Hide the default checkbox */
        .muh-checkbox-container input {
            position: absolute;
            opacity: 0;
            cursor: pointer;
            height: 0;
            width: 0;
        }
        
        /* Create custom checkbox */
        .muh-checkmark {
            position: absolute;
            top: 0;
            right: 0;
            height: 25px;
            width: 25px;
            background-color: var(--light);
            border: 2px solid var(--gray);
            border-radius: 6px;
            transition: var(--transition);
        }
        
        /* On hover, change border color */
        .muh-checkbox-container:hover input ~ .muh-checkmark {
            border-color: var(--primary);
            background-color: rgba(3, 11, 154, 0.05);
        }
        
        /* When checkbox is checked, change background */
        .muh-checkbox-container input:checked ~ .muh-checkmark {
            background-color: var(--primary);
            border-color: var(--primary);
        }
        
        /* Create checkmark (hidden when not checked) */
        .muh-checkmark:after {
            content: "";
            position: absolute;
            display: none;
        }
        
        /* Show checkmark when checked */
        .muh-checkbox-container input:checked ~ .muh-checkmark:after {
            display: block;
        }
        
        /* Style the checkmark */
        .muh-checkbox-container .muh-checkmark:after {
            right: 7px;
            top: 3px;
            width: 7px;
            height: 12px;
            border: solid var(--white);
            border-width: 0 3px 3px 0;
            transform: rotate(45deg);
        }
        
        .muh-checkbox-label {
            font-weight: 500;
            color: var(--text-dark);
        }
        
        .muh-required {
            color: var(--accent);
        }
        
        .muh-btn {
            display: block;
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--white);
            border: none;
            border-radius: var(--border-radius);
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 20px;
            box-shadow: var(--shadow);
        }
        
        .muh-btn:hover {
            background: linear-gradient(135deg, var(--primary-light), var(--primary));
            transform: translateY(-2px);
            box-shadow: 0 12px 20px rgba(3, 11, 154, 0.2);
        }
        
        .muh-btn:active {
            transform: translateY(0);
        }
        
        .muh-btn:disabled {
            background: var(--gray);
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
        
        .muh-error-message {
            color: var(--accent);
            font-size: 14px;
            margin-top: 8px;
            display: none;
        }
        
        .muh-checkbox-container.muh-error .muh-checkmark {
            border-color: var(--accent);
            background-color: rgba(255, 107, 0, 0.05);
        }
        
        .muh-checkbox-container.muh-error .muh-error-message {
            display: block;
        }

        /* خطوط لكل لغة */
        body[lang="ar"] {
            font-family: 'Tajawal', sans-serif;
        }

        body[lang="en"] {
            font-family: 'Inter', sans-serif;
        }

        body[lang="it"] {
            font-family: 'Montserrat', sans-serif;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section {
            padding: 40px 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 20px;
            color: var(--text-dark);
        }

        .section-subtitle {
            font-size: 1.2rem;
            text-align: center;
            color: #000000;
            margin-bottom: 15px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 32px;
            border-radius: var(--border-radius);
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            gap: 8px;
        }

        .btn-primary {
            background-color: var(--primary-color);
            color: var(--white);
        }

        .btn-primary:hover {
            background-color: var(--primary-light);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        .btn-secondary {
            background-color: var(--secondary-color);
            color: var(--white);
        }

        .btn-secondary:hover {
            background-color: var(--secondary-light);
            transform: translateY(-3px);
        }

        .card {
            background: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            padding: 30px;
            transition: var(--transition);
            height: 100%;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(3, 11, 154, 0.15);
        }

        /* الهيدر */
        .landing-header {
            background-color: var(--primary-color);
            color: var(--white);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: transform 0.25s ease, opacity 0.25s ease;
        }

        .landing-header.is-hidden {
            transform: translateY(calc(-100% - 12px));
            opacity: 0;
            pointer-events: none;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 8px 10px !important;
            gap: 18px;
        }

        #muhHeaderLocked {
            display: flex;
            align-items: center;
            gap: 30px;
            flex: 1;
            justify-content: flex-end;
        }

        .logo {
            height: 50px;
            width: 230px;
            object-fit: contain;
        }

        .nav-menu {
            display: flex;
            gap: 30px;
        }

        .header-cta-btn {
            flex-direction: column;
            gap: 2px;
            min-width: 220px;
            padding: 10px 18px;
            text-align: center;
            box-shadow: 0 12px 24px rgba(255, 107, 0, 0.28);
        }

        .header-cta-btn .hero-cta-main {
            margin-top: 0;
            font-size: 18px;
        }

        .header-cta-btn .hero-sale-price {
            font-size: 14px;
            line-height: 1.3;
        }

        .nav-link {
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            color: var(--white);
        }

        .nav-link:hover {
            color: var(--secondary-color);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            right: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary-color);
            transition: var(--transition);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* الهيرو */
        .hero {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
            color: var(--white);
            padding: 20px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxyZWN0IHdpZHRoPSIxMDAwIiBoZWlnaHQ9IjEwMDAiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiLz48cGF0aCBkPSJNMCwwIEwxMDAwLDEwMDAgWiIgc3Ryb2tlPSJyZ2JhKDI1NSwyNTUsMjU1LDAuMSkiIHN0cm9rZS13aWR0aD0iMiIvPjxwYXRoIGQ9Ik0xMDAwLDAgTDAsMTAwMCBaIiBzdHJva2U9InJnYmEoMjU1LDI1NSwyNTUsMC4xKSIgc3Ryb2tlLXdpZHRoPSIyIi8+PC9zdmc+');
            opacity: 0.3;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
            color: white;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .hero-headline {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 16px;
            line-height: 1.5;
            color: #ffffff;
        }

        .hero-subheadline-accent {
            font-size: 18px;
            font-weight: 600;
            line-height: 1.6;
            margin-bottom: 18px;
            color: #ff6b00f2;
        }

        .hero-badge {
            display: inline-block;
            background-color: var(--secondary-color);
            color: var(--white);
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            margin-bottom: 30px;
            font-size: 1.1rem;
        }

        .hero-sale-price {
            display: block;
            font-size: 18px;
            font-weight: 500;
            color: #ffffff !important;
        }

        .hero-regular-price {
            text-decoration: line-through;
        }

        .btn .hero-cta-main {
            display: block;
            margin-top: 10px;
            font-size: 22px;
        }

        .hero .btn.btn-secondary {
            flex-direction: column;
            gap: 2px;
        }

        .btn.btn-secondary.hero-cta-btn {
            flex-direction: column;
            gap: 2px;
        }

        .hero-video-arrow {
            margin: 8px auto 4px;
            color: #ff2d2d;
            font-size: 44px;
            line-height: 1;
            animation: heroVideoArrowBounce 1s ease-in-out infinite;
            text-shadow: 0 6px 16px rgba(255, 45, 45, 0.4);
        }

        .hero-video {
            margin: 50px auto;
            max-width: 800px;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            aspect-ratio: 16 / 9;
        }

        .hero-video iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .muh-video-placeholder {
            height: 100%;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(3, 11, 154, 0.9), rgba(42, 50, 197, 0.9));
            background-size: cover;
            background-position: center;
            color: #ffffff;
            cursor: pointer;
            text-align: center;
        }

        .muh-video-play {
            width: 76px;
            height: 76px;
            border-radius: 50%;
            background: rgba(255, 107, 0, 0.95);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
        }

        @keyframes heroVideoArrowBounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(10px);
            }
        }


        /* ميزات الدورة */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .feature-card {
            text-align: center;
            padding: 40px 30px;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background-color: rgba(37, 150, 190, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--secondary-color);
            font-size: 2rem;
        }

        .feature-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .feature-description {
            color: #000000;
            line-height: 1.7;
            font-weight: 600;
        }

        /* ما ستتعلمه */
        .learning-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .learning-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 20px;
            border-radius: var(--border-radius);
            margin-bottom: 15px;
            background-color: var(--white);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
            transition: var(--transition);
        }

        .learning-item:hover {
            transform: translateX(10px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        }

        .learning-icon {
            color: var(--secondary-color);
            font-size: 1.2rem;
            margin-top: 3px;
            flex-shrink: 0;
        }

        .learning-text {
            flex: 1;
        }

        .learning-text strong {
            color: var(--primary-color);
        }

        /* التسجيل */
        .registration {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
            color: var(--white);
            text-align: center;
            padding: 100px 0;
        }

        .registration-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
        }

        .registration-subtitle {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            color: #ffffff !important;
        }

        .muh-slider-section {
            width: 100%;
        }

        .muh-slider {
            position: relative;
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 4px 30px;
        }

        .muh-slider-viewport {
            overflow: hidden;
            direction: ltr;
        }

        .muh-slider-track {
            display: flex;
            align-items: center;
            transition: transform 0.45s ease;
            will-change: transform;
        }

        .muh-slider-slide {
            flex: 0 0 calc(100% / var(--muh-slides-per-view, 5));
            padding: 0 10px;
            box-sizing: border-box;
        }

        .muh-slider-slide img {
            width: 100%;
            aspect-ratio: 3 / 4;
            object-fit: cover;
            border-radius: 12px;
            display: block;
        }

        .muh-slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 44px;
            height: 44px;
            border: none;
            border-radius: 50%;
            background: transparent;
            color: #030B9A;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 4;
            box-shadow: none;
            font-size: 22px;
            text-shadow: 0 2px 8px rgba(255, 255, 255, 0.85);
        }

        .muh-slider-arrow:hover {
            background: transparent;
            color: #060fbe;
        }

        .muh-slider-arrow-prev {
            left: 8px;
        }

        .muh-slider-arrow-next {
            right: 8px;
        }

        .muh-slider-dots {
            margin-top: 16px;
            display: flex;
            justify-content: center;
            gap: 8px;
        }

        .muh-slider-dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            border: none;
            background: rgba(3, 11, 154, 0.28);
            cursor: pointer;
            padding: 0;
        }

        .muh-slider-dot.is-active {
            background: #030B9A;
        }

        .muh-countdown {
            max-width: 1170px;
            margin: 0 auto 10px;
            color: #fff;
            text-align: center;
        }

        .muh-countdown-items {
            display: table;
            width: 100%;
        }

        .muh-countdown-item {
            display: table-cell;
            padding: 0;
        }

        .muh-countdown-digits {
            display: block;
            font-size: 54px;
            line-height: 1;
            font-weight: 400;
            color: #fff;
        }

        .muh-countdown-label {
            display: block;
            font-size: 18px;
            line-height: 1;
            color: #fff;
            margin-top: 8px;
        }

        .price {
            font-size: 3.5rem;
            font-weight: 800;
            margin: 30px 0;
        }

        .price-original {
            text-decoration: line-through;
            opacity: 0.7;
            font-size: 1.8rem;
            margin-left: 15px;
        }

        /* الفوتر */
        footer {
            background-color: var(--primary-color);
            color: var(--white);
            padding: 60px 0 30px;
        }
        h3 {
             color: var(--white);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-logo {
            height: 40px;
            width: 184px;
            object-fit: contain;
            margin-bottom: 20px;
        }

        .footer-description {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .footer-heading {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
            color: var(--white);
        }

        .footer-heading::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--secondary-color);
        }

        [dir="rtl"] .footer-heading::after {
            right: 0;
            left: auto;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-link {
            color: rgba(255, 255, 255, 0.7);
            transition: var(--transition);
        }

        .footer-link:hover {
            color: var(--white);
            transform: translateX(-5px);
        }

        .phone-ltr {
            direction: ltr;
            unicode-bidi: isolate;
            display: inline-block;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
        }

        [data-key="hero.video_intro"],
        [data-key="registration.guarantee"],
        [data-key="footer.copyright"] {
            color: #ffffff !important;
        }


        /* زر اختيار اللغة */
        .lang-switcher {
            position: fixed;
            bottom: 28px;
            right: 28px;
            z-index: 99999;
        }

        .lang-toggle {
            background: rgba(255, 107, 0, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            min-width: 54px;
            height: 54px;
            padding: 0 18px;
            color: var(--white);
            font-size: 18px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            box-shadow: 0 14px 30px rgba(3, 11, 154, 0.35);
            transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
            backdrop-filter: blur(6px);
        }
        .lang-toggle {
            background: rgba(255, 107, 0, 0.95) !important;
            border-radius: 10px !important;
            color: var(--white) !important;
        }

        .lang-toggle:hover {
            transform: translateY(-2px);
            box-shadow: 0 18px 36px rgba(3, 11, 154, 0.4);
        }

        .lang-dropdown {
            display: none;
            position: absolute;
            bottom: 70px;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
            min-width: 200px;
            border: 1px solid rgba(15, 23, 42, 0.08);
        }

        .lang-dropdown.show {
            display: block;
            animation: langDropIn 0.18s ease;
        }

        .lang-option {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 16px;
            color: var(--text-dark);
            transition: background 0.15s ease, color 0.15s ease;
            cursor: pointer;
            font-weight: 600;
        }

        .lang-option:hover {
            background-color: rgba(37, 150, 190, 0.12);
            color: var(--primary-color);
        }

        .lang-flag {
            width: 22px;
            height: auto;
            border-radius: 4px;
        }

        .lang-toggle .lang-flag {
            width: 24px;
            height: 16px;
            object-fit: cover;
            border-radius: 3px;
            box-shadow: 0 0 0 1px rgba(255,255,255,0.35);
        }

        .lang-caret {
            font-size: 14px;
            opacity: 0.8;
        }

        /* Popup badge responsive */
        .muh-popup-badge {
            text-align: center;
            white-space: nowrap;
        }

        @media (max-width: 576px) {
            .muh-popup-badge {
                font-size: 14px !important;
                padding: 8px 16px !important;
                max-width: 90%;
                white-space: normal;
                line-height: 1.3;
            }
        }

        @keyframes langDropIn {
            from { opacity: 0; transform: translateY(6px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
         /* Content Section */
        .about-content {
            padding: 40px;
        }

        .about-section-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 30px;
            position: relative;
            text-align: center;
        }

        .about-section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            margin: 15px auto;
            border-radius: 2px;
        }

        .about-text {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 25px;
            color: #010101;
            font-weight: 600;
        }

        .about-highlight {
            background: linear-gradient(120deg, rgba(3, 11, 153, 0.1) 0%, rgba(3, 11, 153, 0) 100%);
            padding: 2px 5px;
            border-radius: 4px;
        }

        .about-secret {
            background-color: #ff6b00f2;
            color: #ffffff;
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 700;
        }

        .about-achievements {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .about-achievement {
            background: var(--bg);
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
            border-top: 4px solid var(--primary-color);
        }

        .about-achievement:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .about-achievement-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-color);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 24px;
        }

        .about-achievement-title {
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--primary-color);
        }

        .about-achievement-gallery {
            margin-top: 14px;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 8px;
        }

        .about-achievement-gallery.count-1 {
            grid-template-columns: minmax(0, 1fr);
            max-width: 140px;
            margin-left: auto;
            margin-right: auto;
        }

        .about-achievement-gallery.count-2 {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            max-width: 290px;
            margin-left: auto;
            margin-right: auto;
        }

        .about-achievement-gallery img {
            width: 100%;
            height: 76px;
            object-fit: cover;
            border-radius: 8px;
            display: block;
            cursor: zoom-in;
        }

        .about-lightbox {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.82);
            display: none;
            align-items: center;
            justify-content: center;
            padding: 24px;
            z-index: 10000;
        }

        .about-lightbox.is-open {
            display: flex;
        }

        .about-lightbox img {
            max-width: min(96vw, 1100px);
            max-height: 90vh;
            width: auto;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
        }

        .about-lightbox-close {
            position: absolute;
            top: 14px;
            right: 18px;
            border: none;
            background: transparent;
            color: #fff;
            font-size: 34px;
            line-height: 1;
            cursor: pointer;
            padding: 8px;
        }
        
          /* Mission Section */
        .about-mission {
            margin-top: 50px;
            padding-top: 40px;
            border-top: 1px solid #eee;
        }

        .about-mission-content {
            text-align: center;
        }

        .about-mission-text {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--text-light);
        }

        .about-values {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .about-value {
            text-align: center;
            padding: 30px 20px;
            background: var(--bg);
            border-radius: var(--border-radius);
            transition: var(--transition);
        }

        .about-value:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }

        .about-value-icon {
            font-size: 40px;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .about-value-title {
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .about-header-content {
                flex-direction: column;
                gap: 20px;
            }
            
            .about-lang-dropdown {
                left: auto;
                right: 0;
            }
            
            .about-section-title {
                font-size: 1.7rem;
            }
            
            .about-content {
                padding: 30px 20px;
            }
        }

        /* التجاوب مع الشاشات المختلفة */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.8rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .nav-menu {
                display: none;
            }

            #muhHeaderLocked {
                gap: 14px;
            }
            
            .mobile-menu-btn {
                display: block;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }
            
            .section {
                padding: 10px 0;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .hero-video {
                aspect-ratio: 16 / 10;
            }
            
            .price {
                font-size: 2.8rem;
            }

            .muh-slider {
                padding-bottom: 26px;
            }

            .muh-slider-slide {
                flex-basis: calc(100% / var(--muh-slides-per-view, 2));
                padding: 0 6px;
            }

            .muh-slider-arrow {
                width: 36px;
                height: 36px;
            }

            .muh-countdown-digits {
                font-size: 32px;
            }

            .muh-countdown-label {
                font-size: 13px;
                margin-top: 6px;
            }

            .header-container {
                gap: 10px;
            }

            .header-cta-btn {
                min-width: 0;
                width: auto;
                padding: 9px 14px;
            }

            .header-cta-btn .hero-cta-main {
                font-size: 15px;
            }

            .header-cta-btn .hero-sale-price {
                font-size: 12px;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 1.8rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .btn {
                width: 100%;
                padding: 14px 8px;
                justify-content: center;
            }
             .logo {
                width: 180px !important;
            }
            .muh-video-placeholder {
                height: 100%;
            }

            #muhHeaderLocked {
                flex: 0 0 auto;
            }

            .header-cta-btn {
                padding: 8px 10px;
                border-radius: 10px;
            }

            .header-cta-btn .hero-cta-main {
                font-size: 13px;
            }

            .header-cta-btn .hero-sale-price {
                display: none;
            }
        }
        
        .faq-item {
          margin-bottom: 15px;
          border-radius: 8px;
          background: #fff;
          box-shadow: 0 4px 12px rgba(0,0,0,0.05);
          overflow: hidden;
        }
        
        .faq-question {
          padding: 15px 20px;
          font-weight: 600;
          cursor: pointer;
          background: #f8f9fa;
          transition: all 0.3s ease;
        }
        
        .faq-question:hover {
          background: #eef2ff;
          color: var(--primary-color);
        }
        
        .faq-answer {
          display: none;
          padding: 15px 20px;
          line-height: 1.7;
          color: var(--text-dark);
          border-top: 1px solid #eee;
        }
        
        .faq-item.active .faq-answer {
          display: block;
        }
         /* Main Content Styles */
        section {
            padding: 40px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 25px;
            color: var(--primary);
            font-size: 2.2rem;
            font-weight: 700;
        }
        
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .feature-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            text-align: center;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .feature-title {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        .divider {
            width: 80px;
            height: 4px;
            background: var(--accent);
            margin: 20px auto;
            border-radius: 2px;
        }
        
        /* Why Now Section */
        .why-now {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 50px;
            box-shadow: var(--box-shadow);
            margin-bottom: 50px;
        }
        
        .benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        
        .benefit-icon {
            color: var(--primary);
            font-size: 1.5rem;
            flex-shrink: 0;
        }
  .trustpilot-section {
    background: transparent;
  }

  .trustpilot-section .section-title,
  .trustpilot-section .section-subtitle {
    text-align: center;
  }

  .trustpilot-eyebrow {
    display: inline-block;
    display: table;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #00b67a;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .trustpilot-slider {
    max-width: 1180px;
    margin-top: 34px;
  }

  .trustpilot-slider-viewport {
    padding: 8px 4px;
  }

  .trustpilot-slider .muh-slider-track {
    align-items: stretch;
  }

  .trustpilot-slide {
    display: flex;
    padding: 0 12px;
  }

  .trustpilot-review-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 320px;
    height: 100%;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(3, 11, 154, 0.1);
    background: #ffffff;
    box-shadow: 0 18px 34px rgba(3, 11, 154, 0.08);
    text-decoration: none;
    color: inherit;
    width: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }

  .trustpilot-review-card:hover,
  .trustpilot-review-card:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(0, 182, 122, 0.38);
    box-shadow: 0 24px 40px rgba(3, 11, 154, 0.12);
    outline: none;
  }

  .trustpilot-review-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .trustpilot-review-brand-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 128px;
    height: 34px;
    padding: 6px 12px;
    border-radius: 10px;
    background: #00b67a;
    overflow: hidden;
    flex-shrink: 0;
  }

  .trustpilot-review-brand-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .trustpilot-review-brand-stars {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #00b67a;
    font-size: 0.9rem;
  }

  .trustpilot-review-title {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.5;
    color: #111827;
  }

  .trustpilot-review-body {
    margin: 0;
    color: #4b5563;
    line-height: 1.8;
    flex: 1 1 auto;
  }

  .trustpilot-review-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(3, 11, 154, 0.08);
  }

  .trustpilot-review-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .trustpilot-review-meta strong {
    font-size: 0.98rem;
    color: #111827;
  }

  .trustpilot-review-meta span {
    font-size: 0.88rem;
    color: #6b7280;
  }

  .trustpilot-slider-arrow {
    color: #00b67a;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.95);
  }

  .trustpilot-slider-arrow:hover {
    color: #019965;
  }

  .trustpilot-slider-dots .muh-slider-dot.is-active {
    background: #00b67a;
  }

  .trustpilot-button {
    display: table;
    min-width: 240px;
    margin: 28px auto 0;
  }

  [dir="rtl"] .trustpilot-review-card {
    direction: rtl;
  }

  [dir="ltr"] .trustpilot-review-card {
    direction: ltr;
  }

	   .feedback {
	    background: #f7f9ff;
	  }

  .feedback-iframe {
    position: relative;
    width: min(100%, 420px);
    margin: 0 auto 32px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(3, 11, 154, 0.12);
  }

  .feedback-iframe iframe {
    display: block;
    width: 100%;
    aspect-ratio: 9 / 16;
    min-height: 520px;
    border: 0;
    background: #000;
  }

  .feedback-iframe iframe:not([src]) {
    visibility: hidden;
  }

  .feedback-iframe-overlay {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px 22px;
    text-align: center;
    background: rgba(3, 11, 154, 0.82);
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: 0.2px;
    border: none;
    border-radius: inherit;
    cursor: pointer;
    touch-action: manipulation;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 2;
  }

  .feedback-iframe-overlay:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.85);
    outline-offset: -4px;
  }

  @media (max-width: 768px) {
    .trustpilot-slider {
      padding-bottom: 36px;
    }

    .trustpilot-review-card {
      min-height: 0;
      padding: 22px 20px;
    }

    .trustpilot-review-footer {
      flex-direction: column;
      align-items: flex-start;
    }

    .feedback-iframe-overlay {
      display: flex;
      opacity: 0;
      pointer-events: none;
    }

    .feedback-iframe.is-lockable {
      touch-action: pan-y;
    }

    .feedback-iframe.is-locked iframe {
      pointer-events: none;
    }

    .feedback-iframe.is-locked .feedback-iframe-overlay {
      opacity: 1;
      pointer-events: auto;
    }

    .feedback-iframe.is-interactive .feedback-iframe-overlay {
      inset: auto;
      top: 10px;
      right: 10px;
      bottom: auto;
      left: auto;
      width: auto;
      padding: 10px 16px;
      background: rgba(3, 11, 154, 0.75);
      border-radius: 999px;
      font-size: 0.85rem;
      line-height: 1.2;
      letter-spacing: 0.3px;
      box-shadow: 0 12px 24px rgba(3, 11, 154, 0.22);
      opacity: 1;
      pointer-events: auto;
    }

    .feedback-iframe.is-interactive .feedback-iframe-overlay:focus-visible,
    .feedback-iframe.is-interactive .feedback-iframe-overlay:hover {
      background: rgba(3, 11, 154, 0.92);
    }
  }

  .feedback-slider {
    margin-top: 40px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
  }
.registration-deadline {
  text-align: center;
  margin: 20px auto 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #c0392b;
}

.registration-deadline-text {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(192, 57, 43, 0.3);
  background: rgba(192, 57, 43, 0.05);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
 
