        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: #1a1a2e;
            line-height: 1.65;
            background:rgb(255, 255, 255);
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            --glow-color: #82B7EC;
        }

        html {
            overflow-x: hidden;
        }

        /* Header Styles - مطابق للصورة 100% */
        .header-wrapper {
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            /* background: linear-gradient(180deg, rgba(250,251,252,0.98) 0%, rgba(250,251,252,0.95) 100%); */
            background: #ffffff00;
            backdrop-filter: blur(8px);
            border-bottom: 1px solid #D9D9D9
        }

        body.dark-mode .header-wrapper {
            background: linear-gradient(180deg, rgba(0,7,21,0.98) 0%, rgba(0,7,21,0.95) 100%);
        }

        .header-bar {
            max-width: 1920px;
            width: calc(100% - 48px);
            margin: 0 auto;
            min-height: 80px;
            border-radius: 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 40px;
        }

        .logo-link {
            display: flex;
            align-items: center;
            gap: 0;
            text-decoration: none;
        }

        .logo-mr {
            width: 56px;
            height: 44px;
            background: #EBF2FF;
            border-radius: 8px;
            color: #0A66C2;
            font-size: 1.375rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            letter-spacing: -0.02em;
        }

        .logo-kharaj {
            color: #0A66C2;
            font-size: 1.5rem;
            font-weight: 700;
            margin-left: 10px;
            letter-spacing: -0.02em;
        }

        .header-nav {
            display: flex;
            align-items: center;
            gap: 8px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .header-nav a {
            text-decoration: none;
            color: #1a1a2e;
            font-weight: 600;
            font-size: 1.0625rem;
            padding: 6px 24px;
            border-radius: 37px;
            border: 1px solid transparent;
            transition: color 0.2s, border-color 0.2s, background 0.2s;
        }

        .header-nav a:hover {
            color: #0A66C2;
            background: rgba(10, 102, 194, 0.1);
        }

        .header-nav a.active {
            color: #0A66C2;
            font-weight: 700;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .lang-selector {
            display: flex;
            align-items: center;
            gap: 12px;
            min-height: 40px;
            padding: 4px 12px 4px 4px;
            background: #fff;
            border-radius: 28px;
            box-shadow: 0 2px 12px rgba(69, 69, 69, 0.08);
            cursor: pointer;
            border: 1px solid rgba(0, 0, 0, 0.08);
            font-size: 1rem;
            color: #1a1a2e;
            font-weight: 400;
            transition: box-shadow 0.2s, border-color 0.2s;
        }

        .lang-selector:hover {
            box-shadow: 0 4px 16px rgba(69, 69, 69, 0.12);
            border-color: rgba(10, 102, 194, 0.2);
        }

        .lang-selector .lang-flag-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            object-fit: cover;
        }

        .lang-selector svg.chevron,
        .lang-selector img.chevron {
            width: 15px;
            height: 13px;
            margin-left: 8px;
            color: #fff;
            fill: #fff;
        }
        .lang-selector img.chevron {
            filter: brightness(0) invert(1);
        }

        .lang-dropdown-wrap {
            position: relative;
        }

        .lang-dropdown {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            min-width: 100%;
            list-style: none;
            margin: 0;
            padding: 6px 0;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            border: 1px solid rgba(0, 0, 0, 0.08);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-4px);
            transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
            z-index: 100;
        }

        .lang-dropdown.open {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .lang-option {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 16px;
            cursor: pointer;
            font-size: 1rem;
            color: #1a1a2e;
            transition: background 0.15s;
            text-align: left;
        }

        .lang-option-flag {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
        }

        .lang-option:hover {
            background: rgba(10, 102, 194, 0.08);
        }

        .lang-option.selected {
            background: rgba(10, 102, 194, 0.12);
            font-weight: 600;
            color: #0A66C2;
        }

        body.dark-mode .lang-dropdown {
            background: #1e293b;
            border-color: rgba(255, 255, 255, 0.08);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
        }

        body.dark-mode .lang-option {
            color: #e2e8f0;
        }

        body.dark-mode .lang-option:hover {
            background: rgba(130, 183, 236, 0.12);
        }

        body.dark-mode .lang-option.selected {
            background: rgba(130, 183, 236, 0.2);
            color: #82B7EC;
        }

        [dir="rtl"] .lang-dropdown {
            left: auto;
            right: 0;
        }

        [dir="rtl"] .lang-selector svg.chevron,
        [dir="rtl"] .lang-selector img.chevron {
            margin-left: 8px;
            margin-right: 8px;
        }

        [dir="rtl"] .lang-option {
            flex-direction: row-reverse;
            text-align: right;
        }

        [dir="rtl"] .logo-kharaj {
            margin-left: 0;
            margin-right: 10px;
        }

        .theme-toggle {
            display: flex;
            align-items: center;
            background: #fff;
            border-radius: 32px;
            box-shadow: 0 2px 12px rgba(69, 69, 69, 0.08);
            overflow: hidden;
            padding: 4px 8px 4px 4px;
            border: 1px solid rgba(0, 0, 0, 0.08);
        }

        .theme-toggle button {
            width: 36px;
            height: 36px;
            border: none;
            border-radius: 87px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s, transform 0.15s;
        }

        .theme-toggle button:hover {
            transform: scale(1.02);
        }

        .theme-toggle button.light-btn {
            background: transparent;
        }

        .theme-toggle button.light-btn img {
            width: 26px;
            height: 26px;
        }

        .theme-toggle button.dark-btn {
            background: transparent;
        }

        .theme-toggle button.dark-btn img {
            width: 18px;
            height: 18px;
        }

        .theme-toggle button.dark-btn.active {
            background: #0A66C2;
        }

        .theme-toggle button.dark-btn.active img {
            filter: brightness(0) invert(1);
        }

        .theme-toggle button.light-btn.active {
            background: #0A66C2;
        }

        .theme-toggle button.light-btn:not(.active) {
            background: transparent;
        }

        .theme-toggle button.light-btn:not(.active) img {
            filter: none;
        }

        body.dark-mode {
            background: #000715;
            --glow-color: #003060;
        }

        body.dark-mode .header-bar {
            border-color: rgba(255, 255, 255, 0.08);
        }

        body.dark-mode .lang-selector {
            background: #1e293b;
            border-color: rgba(255, 255, 255, 0.08);
            color: #e2e8f0;
        }

        body.dark-mode .theme-toggle {
            background: #1e293b;
            border-color: rgba(255, 255, 255, 0.08);
        }

        body.dark-mode .header-nav a {
            color: #e2e8f0;
        }


        body.dark-mode .logo-kharaj {
            color: #e2e8f0;
        }

        /* أيقونة البرغر – تتحول لـ X بإنيميشن عند الفتح */
        .header-burger {
            display: none;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            min-width: 44px;
            min-height: 44px;
            padding: 0;
            border: none;
            background: transparent;
            cursor: pointer;
            border-radius: 8px;
            transition: background 0.2s;
            flex-direction: column;
            gap: 5px;
            position: relative;
            z-index: 10004;
            opacity: 1;
            visibility: visible;
        }

        .header-burger:hover {
            background: rgba(10, 102, 194, 0.08);
        }

        .header-burger .burger-line {
            display: block;
            width: 20px;
            height: 2.5px;
            background: #1a1a2e;
            border-radius: 2px;
            flex-shrink: 0;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
            transform-origin: center;
        }

        body.dark-mode .header-burger .burger-line {
            background: #e2e8f0;
        }

        /* عند فتح المنيو: البرغر يتحول لـ X بإنيميشن واضح */
        body.nav-drawer-open .header-burger .burger-line {
            background: #ffffff;
        }
        body.nav-drawer-open .header-burger .burger-line:nth-child(1) {
            transform: translateY(7.5px) rotate(45deg);
        }
        body.nav-drawer-open .header-burger .burger-line:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }
        body.nav-drawer-open .header-burger .burger-line:nth-child(3) {
            transform: translateY(-7.5px) rotate(-45deg);
        }

        /* منيو بملء الشاشة (ما عدا الشعار) – بدون سكرول */
        .nav-drawer-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100vw;
            height: 100vh;
            height: 100dvh;
            background: #0A66C2;
            z-index: 10000;
            clip-path: circle(0px at var(--menu-origin-x, 90%) var(--menu-origin-y, 5%));
            visibility: hidden;
            opacity: 1;
            transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0s;
            overflow: hidden;
            touch-action: none;
        }

        body.dark-mode .nav-drawer-overlay {
            background: #003060;
        }

        .nav-drawer {
            display: none;
            position: fixed;
            inset: 0;
            width: 100%;
            height: 100%;
            min-height: 100vh;
            min-height: 100dvh;
            z-index: 10001;
            padding: 0;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 32px;
            overflow: hidden;
            touch-action: none;
            pointer-events: none;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.6s ease-out 0.3s, visibility 0.6s ease-out 0.3s;
        }

        .nav-drawer .header-nav-mobile,
        .nav-drawer .header-right-mobile {
            pointer-events: auto;
        }

        body.dark-mode .nav-drawer {
            background: transparent;
            box-shadow: none;
        }

        .header-nav-mobile {
            flex-direction: column;
            align-items: center;
            gap: 8px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .header-nav-mobile li {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .header-nav-mobile a {
            display: block;
            padding: 20px 36px;
            font-size: 2rem;
            font-weight: 700;
            color: #fff;
            text-decoration: none;
            border-radius: 10px;
            transition: background 0.2s, color 0.2s;
        }

        body.nav-drawer-open .header-nav-mobile li {
            opacity: 1;
            transform: translateY(0);
        }

        body.nav-drawer-open .header-nav-mobile li:nth-child(1) {
            transition-delay: 0.4s;
        }

        body.nav-drawer-open .header-nav-mobile li:nth-child(2) {
            transition-delay: 0.6s;
        }

        body.nav-drawer-open .header-nav-mobile li:nth-child(3) {
            transition-delay: 0.8s;
        }

        body.nav-drawer-open .header-nav-mobile li:nth-child(4) {
            transition-delay: 1.0s;
        }

        body:not(.nav-drawer-open) .header-nav-mobile li:nth-child(4) {
            transition-delay: 0s;
        }

        body:not(.nav-drawer-open) .header-nav-mobile li:nth-child(3) {
            transition-delay: 0.05s;
        }

        body:not(.nav-drawer-open) .header-nav-mobile li:nth-child(2) {
            transition-delay: 0.1s;
        }

        body:not(.nav-drawer-open) .header-nav-mobile li:nth-child(1) {
            transition-delay: 0.15s;
        }

        body:not(.nav-drawer-open) .header-right-mobile {
            transition-delay: 0.2s;
        }

        .header-nav-mobile a:hover,
        .header-nav-mobile a.active {
            color: #fff;
            background: transparent;
        }

        body.dark-mode .header-nav-mobile a {
            color: #e2e8f0;
        }

        .header-right-mobile {
            flex-direction: row;
            align-items: center;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.3s ease 1.4s, transform 0.3s ease 1.4s;
        }

        body.nav-drawer-open .header-right-mobile {
            opacity: 1;
            transform: translateY(0);
        }

        .header-right-mobile .lang-dropdown-wrap {
            width: auto;
        }

        .header-right-mobile .lang-selector {
            width: auto;
            justify-content: flex-start;
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
            border-color: rgba(255, 255, 255, 0.25);
        }

        body.dark-mode .header-right-mobile .lang-selector {
            background: rgba(255, 255, 255, 0.1);
            color: #e2e8f0;
        }

        .header-right-mobile .theme-toggle {
            width: fit-content;
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.25);
        }

        body.dark-mode .header-right-mobile .theme-toggle {
            background: rgba(255, 255, 255, 0.1);
        }

        body.dark-mode .section-title { color: #f1f5f9; }
        body.dark-mode .section-subtitle { color: #94a3b8; }
        body.dark-mode .hero-content h1 { color: #ffffff; }
        body.dark-mode .hero-content p { color: #ffffff; }
        body.dark-mode .hero-dots button { background: #475569; }
        body.dark-mode .hero-dots button.active { background: #0A66C2; }
        body.dark-mode .who-content h2,
        body.dark-mode .contact-form h3 { color: #f1f5f9; }
        body.dark-mode .who-content p,
        body.dark-mode .contact-form p,
        body.dark-mode .testimonial-text,
        body.dark-mode .feature-card-content p { color: #94a3b8; }
        body.dark-mode .feature-card-content h4,
        body.dark-mode .testimonial-info h5 { color: #e2e8f0; }
        body.dark-mode .testimonial-info p { color: #64748b; }
        body.dark-mode .form-group label { color: #e2e8f0; }
        body.dark-mode .contact-detail span { color: #e2e8f0; }

        body.dark-mode .testimonials-section {
            background: #000715;
        }

        body.dark-mode .form-group input,
        body.dark-mode .form-group textarea {
            background: #01041600;
            border-color: #D9D9D9;
            color: #e2e8f0;
        }

        body.dark-mode .form-group input::placeholder,
        body.dark-mode .form-group textarea::placeholder {
            color: #64748b;
        }

        body.dark-mode .form-group input:focus,
        body.dark-mode .form-group textarea:focus {
            border-color: #0A66C2;
            box-shadow: 0 0 0 3px rgba(10, 102, 194, 0.2);
        }

        .btn-primary {
            background: #0A66C2;
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 0.95rem;
        }

        .btn-primary:hover {
            background: #084a94;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(10, 102, 194, 0.35);
        }

        /* Page width - professional layout */
        .page-width {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* Hero Section - مطابق للصورة 100% */
        .hero {
            max-width: 1600px;
            width: 100%;
            margin: 0 auto;
            padding: 4rem 40px 7rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .hero-content {
            max-width: 100%;
            text-align: left;
        }

        .hero-content h1 {
            font-size: 48px;
            ;
            font-weight: 500;
            color:rgb(0, 0, 0);
            margin-bottom: 1.75rem;
            line-height: 1.5;
        }

        .hero-title-desktop {
            display: block;
        }

        .hero-title-mobile {
            display: none;
        }

        .hero-title-static,
        .hero-title-typing-wrapper,
        .hero-title-typing,
        .hero-title-cursor {
            display: none;
        }

        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }

        .hero-content p {
            font-size: 18px;
            color: #475569;
            margin-bottom: 2.5rem;
            line-height: 1.5;
            max-width: 100%;
        }

        .hero-subtitle-mobile {
            display: none;
        }

        .hero-buttons {
            display: flex;
            gap: 0;
            flex-wrap: wrap;
            margin-bottom: 0;
        }
        .btn-hero {
            background: #0A66C2;
            color: white;
            padding: 1.125rem 2.9rem;
            border-radius: 10px;
            text-decoration: none;
            font-weight: bold;
            font-size: 20px;
            display: inline-flex;
            align-items: center;
            gap: 0.625rem;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            margin-left: 11%;
        }

        .hero-buttons .btn-hero {
            margin-left: 0;
        }

        .btn-hero-secondary {
            display: none;
        }

        .hero-stats {
            display: none;
        }

        /* مربع زي أزرف لوري مايل - تحت hero-content، مائل زي الصور */
        .hero-envelope {
            margin-top: 2rem;
            width: 200px;
            height: 140px;
            background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
            transform: rotate(-4deg);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero-envelope::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 36%;
            background: linear-gradient(180deg, rgba(10, 102, 194, 0.06) 0%, transparent 100%);
            border-radius: 10px 10px 0 0;
        }

        .hero-envelope .envelope-icon {
            font-size: 2.5rem;
            color: #0A66C2;
            opacity: 0.85;
            z-index: 1;
        }

        body.dark-mode .hero-envelope {
            background: linear-gradient(145deg, #1e293b 0%, #334155 100%);
            border-color: rgba(255,255,255,0.12);
            box-shadow: 0 8px 24px rgba(0,0,0,0.25);
        }

        body.dark-mode .hero-envelope .envelope-icon {
            color: #0A66C2;
        }

        .btn-hero:hover {
            background: #084a94;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(10, 102, 194, 0.4);
        }

        .hero-content h1 .underline {
            padding-bottom: 2px;
        }

        /* شكل مايل ورا كلمة Graduation - CSS فقط بدون SVG، لون أغمق شوي */
        .hero-grad-wrap {
            position: relative;
            display: inline-block;
        }

        .hero-grad-wrap::before {
            content: '';
            position: absolute;
            left: 49%;
            top: 64%;
            transform: translate(-51%, -41%) rotate(2deg);
            width: 100%;
            height: 50%;
            min-width: 104px;
            background: rgba(10, 102, 194, 0.15);
            border-radius: 5px;
            z-index: 0;
            pointer-events: none;
        }
        .hero-grad-wrap .underline {
            position: relative;
            z-index: 1;
        }

        body.dark-mode .hero-grad-wrap::before {
            background: #202A3E;
        }

        .hero-image-wrap {
            position: relative;
            width: 100%;
            max-width: 100%;
            min-width: 0;
            flex-shrink: 0;
            overflow: visible;
        }

        /* Glow blob بدلاً من bacblur.svg — أوضح على الديستوب */
        .hero-glow-bg {
            transform: translate(-50%, -50%);
            pointer-events: none;
            opacity: 0.88;
            min-width: 320px;
            min-height: 320px;
        }

        .hero-image-wrap .hero-glow-bg {
            width: var(--size);
            height: var(--size);
            max-width: 90vw;
            max-height: 90vw;
        }

        /* في dark mode: لون ثابت أوضح للـ hero glow */
        body.dark-mode .hero-glow-bg {
            --bg-color: #00306066 !important;
            opacity: 0.92;
        }

        /* ظل أزرق خلف صورة الريسومي */
        .hero-image-wrap::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 95%;
            height: 95%;
            /* background: linear-gradient(135deg, rgba(10, 102, 194, 0.08) 0%, rgba(59, 130, 246, 0.06) 50%, rgba(147, 197, 253, 0.04) 100%); */
            border-radius: 20px;
            filter: blur(28px);
            z-index: 0;
            pointer-events: none;
        }

        body.dark-mode .hero-image-wrap::before {
            background: linear-gradient(135deg, rgba(10, 102, 194, 0.15) 0%, rgba(10, 102, 194, 0.1) 50%, rgba(10, 102, 194, 0.05) 100%);
            border-radius: 121%;
        }

        .hero-slider {
            position: relative;
            width: 100%;
            border-radius: 16px;
            overflow: hidden;
            z-index: 1;
            perspective: 1400px;
            padding: 34px;
        }

        .hero-slide {
            display: none;
            width: 100%;
            transform-style: preserve-3d;
        }

        .hero-slide.active {
            display: block;
        }

        .hero-slide {
            backface-visibility: hidden;
        }

        .hero-slide.active img {
            animation: heroFlipOut 1s cubic-bezier(0.4, 0.0, 0.2, 1) 4s forwards;
        }

        .hero-slide.active.flip-in img {
            animation: heroFlipIn 1s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
        }

        @keyframes heroFlipOut {
            0% {
                transform: rotateY(0deg);
            }
            8% {
                transform: rotateY(4deg);
            }
            18% {
                transform: rotateY(8.5deg);
            }
            28% {
                transform: rotateY(12deg);
            }
            38% {
                transform: rotateY(15deg);
            }
            48% {
                transform: rotateY(25deg);
            }
            58% {
                transform: rotateY(35deg);
            }
            68% {
                transform: rotateY(45deg);
            }
            78% {
                transform: rotateY(60deg);
            }
            88% {
                transform: rotateY(75deg);
            }
            100% {
                transform: rotateY(90deg);
            }
        }

        @keyframes heroFlipIn {
            0% {
                transform: rotateY(-90deg);
            }
            12% {
                transform: rotateY(-75deg);
            }
            22% {
                transform: rotateY(-60deg);
            }
            32% {
                transform: rotateY(-45deg);
            }
            42% {
                transform: rotateY(-35deg);
            }
            52% {
                transform: rotateY(-25deg);
            }
            62% {
                transform: rotateY(-15deg);
            }
            72% {
                transform: rotateY(-12deg);
            }
            82% {
                transform: rotateY(-8.5deg);
            }
            92% {
                transform: rotateY(-4deg);
            }
            100% {
                transform: rotateY(0deg);
            }
        }

        .hero-slider img {
            width: 100%;
            max-height: 65vh;
            object-fit: contain;
            border-radius: 25px;
            display: block;
           
            transform-origin: center center;
            backface-visibility: hidden;
        }

        .floating-badge {
            position: absolute;
            background: white;
            padding: 0.75rem 1rem;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
            display: flex;
            align-items: center;
            gap: 0.625rem;
            font-size: 0.875rem;
            font-weight: 600;
            z-index: 10;
            animation: float 3s ease-in-out infinite;
        }

        .badge-1 {
            bottom: 15%;
            left: -5%;
            background: #fff;
            border: 1px solid rgba(10, 102, 194, 0.2);
            transform: rotate(-5deg);
            box-shadow: 0 8px 24px rgba(10, 102, 194, 0.15);
        }

        .badge-1 i {
            color: #0A66C2;
        }

        .badge-2 {
            top: 10%;
            right: -5%;
            background: #fef3c7;
            border: 1px solid rgba(245, 158, 11, 0.25);
            transform: rotate(5deg);
        }

        .badge-2 i {
            color: #f59e0b;
        }

        .hero-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 24px;
            margin-bottom: 80px;
            z-index: 2;
            position: relative;
        }

        .hero-dots button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: none;
            background: #cbd5e1;
            cursor: pointer;
            padding: 0;
            transition: background 0.25s, transform 0.2s;
        }

        .hero-dots button:hover {
            background: #94a3b8;
        }

        .hero-dots button.active {
            background: #0A66C2;
            transform: scale(1.3);
        }

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

        /* Section Styles */
        section {
            padding: 5rem 0 6rem;
        }

        .section-title {
            text-align: center;
            font-size: 4.5rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            color:rgb(0, 0, 0);
            letter-spacing: -0.02em;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.5rem;
            color: #1C1C1C;
            margin-bottom: 4rem;
            max-width: 560px;
            margin-left: auto;
            margin-right: auto;
        }

        .container {
            max-width: 100%;
            width: 100%;
            margin: 0 auto;
            padding: 0px 130px;
            overflow-x: hidden;
        }

        /* Services Section - خلفية بقوس rounded top (overflow: hidden يمنع السكرول) */
        .services-section {
            background: #EBF2FF;
            padding: 2rem 0 1rem;
            position: relative;
            overflow: hidden;
            border-radius: 158px 150px 0 0;
            margin-top: -79px;
            padding-top: calc(6rem + -50px);
        }

        body.dark-mode .services-section {
            background: #040E22;
        }

        .services-section .container {
            position: relative;
            z-index: 1;
        }

        /* ========== تصميم service-item فقط (يُطبّق على قسم Our services فقط) ========== */
        .services-section .service-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            margin-bottom: 6rem;
            margin-top: 4rem;
            width: 100%;
            position: relative;
            overflow: visible;
        }

        .services-section .service-item .service-content {
            width: 100%;
        }

        .services-section .service-item .service-image {
            width: 100%;
            border-radius: 16px;
        }

        .services-section .service-item:first-child {
            margin-top: 0;
        }

        .services-section .service-item:last-child {
            margin-bottom: 147px;
        }

        /* Service 1: الكلام على اليمين، الصور على اليسار */
        .services-section .service-item:nth-child(1) {
            direction: rtl;
        }

        .services-section .service-item:nth-child(1) .service-content {
            direction: ltr;
        }

        /* Service 2: الكلام على اليسار، الصور على اليمين */
        .services-section .service-item:nth-child(2) {
            direction: ltr;
        }

        /* Service 3: الكلام على اليسار، الصور على اليمين (مثل Service 2) */
        .services-section .service-item:nth-child(3) {
            direction: ltr;
        }

        /* Service 3 (Graduation): نص على اليمين، صور على اليسار – مثل الأول (صور أولاً في HTML + LTR) */
        .services-section .service-item.service-item--graduation {
            direction: ltr;
        }

        .services-section .service-content h3 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 2.25rem;
            color: #1f2937;
            line-height: 1.3;
        }

        .services-section .service-content ul {
            list-style: none;
        }

        .services-section .service-content ul li {
            display: flex;
            align-items: start;
            gap: 1.15rem;
            margin-bottom: 1.4rem;
            font-size: 0.9rem;
            color: #4b5563;
            line-height: 1.7;
        }

        .services-section .service-content ul li i {
            color: #0A66C2;
            font-size: 1.3rem;
            margin-top: 0.2rem;
            flex-shrink: 0;
        }

        .services-section .service-image {
            position: relative;
            overflow: hidden;
        }

        /* ظل خلف الكارت – داخل حدود القسم لتفادي السكرول */
        /* .services-section .service-image::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120%;
            height: 120%;
            z-index: -2;
            pointer-events: none;
            background-image: url("../image/bacblur.svg");
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.4;
            filter: blur(24px);
        } */

        /* ========== Portfolio فقط (Design a Portfolio That Represents You) ========== */
        .services-section .service-item--portfolio .service-image-container {
            background: transparent;
            backdrop-filter: none;
            border-radius: 20px;
            padding: 0;
            box-shadow: none;
            position: relative;
            overflow: visible;
            width: 100%;
            max-width: 100%;
        }

        /* .services-section .service-item--portfolio .service-image-container::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 95%;
            height: 95%;
            background: linear-gradient(135deg, rgba(10, 102, 194, 0.08) 0%, rgba(59, 130, 246, 0.06) 50%, rgba(147, 197, 253, 0.04) 100%);
            border-radius: 20px;
            filter: blur(28px);
            z-index: -1;
            pointer-events: none;
        } */

        .services-section .service-item--portfolio .service-image-layered {
            background: #82b7ec0d;
            position: relative;
            width: 100%;
            height: 471px;
            overflow: hidden;
            border-radius: 16px;
            z-index: 1;
        }

        .services-section .service-item--portfolio .service-image-layered::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 16px;
            box-shadow: 0 8px 29px #82B7EC;
            backdrop-filter: blur(74px);
            -webkit-backdrop-filter: blur(12px);
            z-index: 0;
        }

        .services-section .service-item--portfolio .service-image-layered img {
            position: absolute;
            width: 65%;
            max-width: 49%;
            aspect-ratio: 1 / 1;
            height: auto;
            border-radius: 18px;
            box-shadow: 0 8px 24px rgba(10, 102, 194, 0.25), 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, z-index 0.3s, box-shadow 0.3s;
            object-fit: cover;
            opacity: 1;
            z-index: 1;
        }

        .services-section .service-item--portfolio .service-image-layered img:nth-child(1) {
            top: 2%;
            left: 40%;
            z-index: 0;
        }

        .services-section .service-item--portfolio .service-image-layered img:nth-child(2) {
            top: 24%;
            left: 47%;
            z-index: 1;
            transform: rotate(2deg);
        }

        .services-section .service-item--portfolio .service-image-layered img:nth-child(3) {
            top: 53%;
            left: 60%;
            z-index: 1;
            transform: rotate(-1deg);
        }

        .services-section .service-item--portfolio .service-image-layered img:nth-child(4) {
            top: 26%;
            left: 3%;
            z-index: 2;
        }

        .services-section .service-item--portfolio .service-image-layered:hover img:nth-child(1) {
            transform: rotate(0deg) translateY(-5px);
            z-index: 4;
        }

        .services-section .service-item--portfolio .service-image-layered:hover img:nth-child(2) {
            transform: rotate(0deg) translateY(-3px);
        }

        /* body.dark-mode .services-section .service-item--portfolio .service-image-container::before {
            background: linear-gradient(135deg, rgba(10, 102, 194, 0.15) 0%, rgba(10, 102, 194, 0.1) 50%, rgba(10, 102, 194, 0.05) 100%);
        } */

        body.dark-mode .services-section .service-item--portfolio .service-image-layered {
            overflow: visible;
        }

        body.dark-mode .services-section .service-item--portfolio .service-image-layered::before {
            background: #000715;
            box-shadow: 0 0 60px 25px rgba(0, 48, 96, 0.45), 0 0 120px 50px rgba(0, 48, 96, 0.25), 0 0 180px 70px rgba(0, 48, 96, 0.12);
        }

        /* ========== Graduation فقط (القسم الأخير – نفس تصميم الأول لكن أنماط منفصلة للتعديل) ========== */
        .services-section .service-item--graduation .service-image-container {
            background: transparent;
            backdrop-filter: none;
            border-radius: 20px;
            padding: 0;
            box-shadow: none;
            position: relative;
            overflow: visible;
            width: 100%;
            max-width: 100%;
        }

        .services-section .service-item--graduation .service-image-container::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 95%;
            height: 95%;
            background: linear-gradient(135deg, rgba(10, 102, 194, 0.08) 0%, rgba(59, 130, 246, 0.06) 50%, rgba(147, 197, 253, 0.04) 100%);
            border-radius: 20px;
            filter: blur(28px);
            z-index: -1;
            pointer-events: none;
        }

        .services-section .service-item--graduation .service-image-layered {
            background: #82b7ec0d;
            position: relative;
            width: 100%;
            height: 471px;
            overflow: hidden;
            border-radius: 16px;
            z-index: 1;
        }

        .services-section .service-item--graduation .service-image-layered::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 16px;
            box-shadow: 0 8px 29px #82B7EC;
            backdrop-filter: blur(74px);
            -webkit-backdrop-filter: blur(12px);
            /* border: 1px solid rgb(240 224 224 / 40%); */
            z-index: 0;
        }

        .services-section .service-item--graduation .service-image-layered img {
            position: absolute;
            width: 62%;
            max-width: 62%;
            height: 72%;
            max-height: 59%;
            border-radius: 18px;
            transition: transform 0.3s, z-index 0.3s;
            object-fit: contain;
            opacity: 1;
            z-index: 1;
        }

        .services-section .service-item--graduation .service-image-layered img:nth-child(1) {
            top: 33%;
            left: -3%;
            z-index: 0;
        }

        .services-section .service-item--graduation .service-image-layered img:nth-child(2) {
            top: -3%;
            left: 21%;
            z-index: 1;
            transform: rotate(2deg);
        }

        .services-section .service-item--graduation .service-image-layered img:nth-child(3) {
            top: 42%;
            left: 41%;
            z-index: 1;
            transform: rotate(-1deg);
        }

        .services-section .service-item--graduation .service-image-layered img:nth-child(4) {
            top: 26%;
            left: 3%;
            z-index: 2;
        }

        .services-section .service-item--graduation .service-image-layered:hover img:nth-child(1) {
            transform: rotate(0deg) translateY(-5px);
            z-index: 4;
        }

        .services-section .service-item--graduation .service-image-layered:hover img:nth-child(2) {
            transform: rotate(0deg) translateY(-3px);
        }

        body.dark-mode .services-section .service-item--graduation .service-image-container::before {
            background: linear-gradient(135deg, rgba(10, 102, 194, 0.15) 0%, rgba(10, 102, 194, 0.1) 50%, rgba(10, 102, 194, 0.05) 100%);
        }

        body.dark-mode .services-section .service-item--graduation .service-image-layered {
            overflow: visible;
        }

        body.dark-mode .services-section .service-item--graduation .service-image-layered::before {
            background: #000715;
            box-shadow: 0 0 60px 25px rgba(0, 48, 96, 0.45), 0 0 120px 50px rgba(0, 48, 96, 0.25), 0 0 180px 70px rgba(0, 48, 96, 0.12);
        }

        /* ========== CV فقط (Create Your Perfect CV in Minutes) ========== */
        .services-section .service-item--cv .service-image-container {
            background: transparent;
            backdrop-filter: none;
            border-radius: 20px;
            padding: 0;
            box-shadow: none;
            position: relative;
            overflow: visible;
            width: 100%;
            max-width: 100%;
        }

        .services-section .service-item--cv .service-image-container::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 95%;
            height: 95%;
            background: linear-gradient(135deg, rgba(10, 102, 194, 0.08) 0%, rgba(59, 130, 246, 0.06) 50%, rgba(147, 197, 253, 0.04) 100%);
            border-radius: 20px;
            filter: blur(28px);
            z-index: -1;
            pointer-events: none;
        }

        .services-section .service-item--cv .service-image-layered {
            background: #82b7ec0d;
            position: relative;
            width: 100%;
            height: 471px;
            overflow: hidden;
            border-radius: 16px;
            z-index: 1;
        }

        .services-section .service-item--cv .service-image-layered::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 16px;
            box-shadow: 0 8px 29px #82B7EC;
            backdrop-filter: blur(74px);
            -webkit-backdrop-filter: blur(12px);
            /* border: 1px solid rgb(240 224 224 / 40%); */
            z-index: 0;
        }

        .services-section .service-item--cv .service-image-layered img {
            position: absolute;
            width: 62%;
            max-width: 62%;
            height: 72%;
            max-height: 72%;
            border-radius: 18px;
            transition: transform 0.3s, z-index 0.3s;
            object-fit: contain;
            opacity: 1;
            z-index: 1;
        }

        /* صورة واحدة في قسم CV: في المنتصف */
        .services-section .service-item--cv .service-image-layered img:only-child {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 75%;
            max-width: 75%;
            height: 85%;
            max-height: 85%;
        }

        .services-section .service-item--cv .service-image-layered:hover img:only-child {
            transform: translate(-50%, -50%) scale(1.02);
        }

        /* بطاقة ATS Score بجانب صورة السيرة */
        .services-section .service-item--cv .cv-ats-score {
            position: absolute;
            top: 8%;
            right: 5%;
            z-index: 10;
            background: #fff;
            border-radius: 12px;
            padding: 14px 18px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            min-width: 140px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
            border: 1px solid rgba(0, 0, 0, 0.06);
        }

        .services-section .service-item--cv .cv-ats-score-title {
            font-size: 0.95rem;
            font-weight: 700;
            color: #1a1a2e;
            width: 100%;
        }

        .services-section .service-item--cv .cv-ats-score-bar-wrap {
            flex: 1;
            height: 8px;
            background: #e5e7eb;
            border-radius: 4px;
            overflow: hidden;
        }

        .services-section .service-item--cv .cv-ats-score-bar {
            height: 100%;
            background: linear-gradient(90deg, #0A66C2, #3b82f6);
            border-radius: 4px;
            transition: width 0.3s;
        }

        .services-section .service-item--cv .cv-ats-score-star {
            color: #f59e0b;
            font-size: 1.1rem;
        }

        body.dark-mode .services-section .service-item--cv .cv-ats-score {
            background: #334155;
            border-color: rgba(255, 255, 255, 0.08);
        }

        body.dark-mode .services-section .service-item--cv .cv-ats-score-title {
            color: #f1f5f9;
        }

        body.dark-mode .services-section .service-item--cv .cv-ats-score-bar-wrap {
            background: #475569;
        }

        /* صورتا السيرة: resumtest + Resum */
        .services-section .service-item--cv .service-image-layered img:nth-child(1) {
            top: 50%;
            left: 76%;
            transform: translate(-50%, -50%);
            width: 55%;
            max-width: 55%;
            height: 79%;
            max-height: 76%;
            z-index: 1;
        }

        .services-section .service-item--cv .service-image-layered img:nth-child(2) {
            top: 4%;
            left: 4%;
            width: 50%;
            max-width: 57%;
            height: 93%;
            max-height: 93%;
            z-index: 0;
        }

        .services-section .service-item--cv .service-image-layered:hover img:nth-child(1) {
            transform: translate(-50%, -50%) translateY(-4px);
            z-index: 2;
        }

        .services-section .service-item--cv .service-image-layered:hover img:nth-child(2) {
            transform: translateY(-2px);
        }

        .services-section .service-item--cv .service-image-layered img:nth-child(3) {
            top: 53%;
            left: 60%;
            z-index: 1;
            transform: rotate(-1deg);
        }

        .services-section .service-item--cv .service-image-layered img:nth-child(4) {
    top: 3%;
    left: -12%;
    z-index: 2;
    width: 91%;
    max-width: 84%;
    height: 99%;
    max-height: 91%;
}
        body.dark-mode .services-section .service-item--cv .service-image-container::before {
            background: linear-gradient(135deg, rgba(10, 102, 194, 0.15) 0%, rgba(10, 102, 194, 0.1) 50%, rgba(10, 102, 194, 0.05) 100%);
        }

        body.dark-mode .services-section .service-item--cv .service-image-layered {
            overflow: visible;
        }

        body.dark-mode .services-section .service-item--cv .service-image-layered::before {
            background: #000715;
            box-shadow: 0 0 60px 25px rgba(0, 48, 96, 0.45), 0 0 120px 50px rgba(0, 48, 96, 0.25), 0 0 180px 70px rgba(0, 48, 96, 0.12);
        }

        /* صورة بسيطة (قسم Graduation Memories فقط) */
        .services-section .service-image > img {
            width: 55%;
            max-width: 55%;
            min-height: 212px;
            height: auto;
            border-radius: 20px;
            transition: transform 0.3s;
            object-fit: contain;
            display: block;
        }

        .services-section .service-image:hover > img {
            transform: scale(1.01);
        }

        body.dark-mode .services-section .service-content h3 {
            color: #f1f5f9;
        }

        body.dark-mode .services-section .service-content ul li {
            color: #e2e8f0;
        }
        /* ========== نهاية تصميم service-item ========== */

        /* Why Choose Section */
        .why-choose {
     
            padding: 5rem 0 6rem;
        }

        body.dark-mode .why-choose {
            background: #000715;
        }

        .why-choose .section-title span {
            color: #0A66C2;
            font-weight: bold;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-top: 4.5rem;
        }

        .feature-card {
            background: transparent;
            padding: 0;
            border-radius: 0;
            box-shadow: none;
            overflow: visible;
            transition: none;
            border: none;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .features-grid .feature-card:last-child,
        .feature-card--reverse {
            flex-direction: column !important;
        }

        .feature-card:hover {
            transform: none;
        }

        body.dark-mode .feature-card {
            background: transparent;
            border: none;
            box-shadow: none;
        }

        .feature-card img {
            width: 100%;
            height: 525px;
            object-fit: cover;
            border-radius: 14px;
            display: block;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .feature-card img:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
        }

        .feature-card--reverse img {
            border-radius: 14px;
        }

        /* الكارت الأوسط - البوكس داخل الصورة مع خلفية زجاجية */
        .feature-card--glass {
            gap: 0;
        }

        .feature-card--glass .feature-card-image-wrapper {
            position: relative;
            width: 100%;
            border-radius: 0 0 14px 14px;
            overflow: hidden;
            margin-top: 14%;
        }

        .feature-card--glass img {
            width: 103%;
            height: 607px;
            object-fit: cover;
            border-radius: 0 0 19px 19px;
            display: block;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .feature-card--glass .feature-card-content--glass {
            position: absolute;
            bottom: 2%;
            left: 0;
            right: 0;
            padding: 1.75rem 2rem;
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 14px;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
            margin: 0px 1rem;
        }

        .feature-card--glass .feature-card-content--glass h4 {
            color: #1f2937;
            text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
        }

        .feature-card--glass .feature-card-content--glass p {
            color: #1f2937;
            text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
        }

        .feature-card--glass .feature-card-content--glass:hover {
            transform: none;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        }

        body.dark-mode .feature-card--glass .feature-card-content--glass {
            background: rgba(30, 41, 59, 0.4);
            border-color: rgba(255, 255, 255, 0.2);
        }

        body.dark-mode .feature-card--glass .feature-card-content--glass h4,
        body.dark-mode .feature-card--glass .feature-card-content--glass p {
            color: #e2e8f0;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
        }

        .feature-card-content {
            padding: 1.75rem 2rem;
            background: #fff;
            border: 1px solid rgba(10, 102, 194, 0.22);
            border-radius: 14px;
            box-shadow: -2px -2px 4px #82B7EC, -1px -1px 2px rgba(10, 102, 194, 0.1), 0 4px 20px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .feature-card-content:hover {
            transform: translateY(-2px);
            box-shadow: 
                -3px -3px 6px rgba(10, 102, 194, 0.2),
                -2px -2px 4px rgba(10, 102, 194, 0.15),
                0 8px 28px rgba(0,0,0,0.12), 
                0 4px 12px rgba(0,0,0,0.06);
        }

        .feature-card--reverse .feature-card-content {
            border-radius: 14px;
        }

        .feature-card-content h4 {
            font-size: 1.35rem;
            font-weight: bold;
            margin-bottom: 0.75rem;
            color: #1f2937;
            padding-top: 0;
            border-top: none;
        }

        .feature-card-content p {
            color:rgb(0, 0, 0);
            line-height: 1.75;
            font-size: 0.95rem;
font-weight: 600;


        }

        body.dark-mode .feature-card-content {
            background: #1e293b;
            border-color: rgba(10, 102, 194, 0.35);
        }

        body.dark-mode .feature-card-content h4 {
            color: #e2e8f0;
        }

        body.dark-mode .feature-card-content p {
            color: #94a3b8;
        }

        /* Who is MASARAK for Section */
        .who-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .who-content h2 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #1f2937;
        }

        .who-content h2 span {
            color: #0A66C2;
        }

        .who-content p {
            font-size: 1.25rem;
            color: #4b5563;
            margin-bottom: 2.5rem;
            line-height: 1.8;
        }

        .who-image img {
            width: 100%;
            border-radius: 16px;
            box-shadow: 0 15px 40px rgba(10, 102, 194, 0.15);
        }

        /* Who is MASARAK for Section - New Design */
        .who-section-new {
            background: #EBF2FF;
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }

        .who-section-new .container {
            position: relative;
            width: 100%;
            max-width: 100%;
            overflow: hidden;
        }

        .who-section-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            position: relative;
            z-index: 2;
            min-height: 450px;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }

        .who-content-new {
            position: relative;
            z-index: 3;
        }

        .who-content-new h2 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #1f2937;
            line-height: 1.2;
            margin-left: 11%;
        }

        .who-content-new h2 span {
            color: #0A66C2;
            font-weight: 800;
        }

        .who-content-new p {
            font-size: 1.25rem;
            color: #1f2937;
            margin-bottom: 2.5rem;
            line-height: 1.8;
            font-weight: 500;
            margin-left: 11%;
        }

        .who-image-new {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: flex-start;
            align-items: flex-start;
            z-index: 0;
            overflow: hidden;
            max-width: 100%;
            box-sizing: border-box;
        }

        .who-image-wrapper {
            position: relative;
            width: 100%;
            max-width: 600px;
            height: auto;
            overflow: visible;
            box-sizing: border-box;
        }

        .who-shadow-image {
            position: absolute;
            top: 38%;
            left: 287%;
            transform: translate(-50%, -50%);
            width: 95%;
            height: auto;
            z-index: 1;
            pointer-events: none;
            opacity: 0.6;
        }

        .who-girl-image {
            margin-top: 7%;
            width: 100%;
            height: auto;
            position: relative;
            top: 58%;
            left: 223%;
            z-index: 3;
            max-width: 100%;
            object-fit: contain;
            box-sizing: border-box;
            display: block;
        }

        .who-path-lines {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            opacity: 0;
            pointer-events: none;
            max-width: 100%;
            overflow: visible;
            box-sizing: border-box;
            object-fit: fill;
        }

        .who-path-lines path {
            stroke: #0A66C2;
            stroke-width: 2;
            fill: none;
            stroke-dasharray: 2000;
            stroke-dashoffset: 2000;
            transition: stroke-dashoffset 3s ease-in-out, opacity 0.5s ease-in-out;
        }

        .who-path-lines path:nth-child(1) {
            stroke-dasharray: 1500;
            stroke-dashoffset: 1500;
            transition-delay: 0s;
        }

        .who-path-lines path:nth-child(2) {
            stroke-dasharray: 1800;
            stroke-dashoffset: 1800;
            transition-delay: 0.3s;
        }

        .who-path-lines path:nth-child(3) {
            stroke-dasharray: 2000;
            stroke-dashoffset: 2000;
            transition-delay: 0.6s;
        }

        .who-section-new.animate .who-path-lines {
            opacity: 1;
        }

        .who-section-new.animate .who-path-lines path {
            stroke-dashoffset: 0;
        }

        body.dark-mode .who-section-new {
            background: #040E22;
        }

        body.dark-mode .who-content-new h2 {
            color: #e2e8f0;
        }

        body.dark-mode .who-content-new p {
            color: #cbd5e1;
        }

        /* Testimonials Section */
        .testimonials-section {
            background: #ffffff;
            padding: 6rem 0 7rem;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-top: 4.5rem;
        }

        .testimonial-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
            border: 1px solid rgba(0,0,0,0.06);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .testimonial-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(10, 102, 194, 0.08), 0 2px 8px rgba(0,0,0,0.06);
        }

        body.dark-mode .testimonial-card {
            background: #01041600;
            border-color: rgba(255,255,255,0.06);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .testimonial-header img {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #e5e7eb;
        }

        .testimonial-info h5 {
            font-weight: 700;
            margin-bottom: 0.25rem;
            color: #1f2937;
            font-size: 1.1rem;
        }

        .testimonial-info p {
            color: #6b7280;
            font-size: 0.95rem;
        }

        .testimonial-text {
            color: #4b5563;
            line-height: 1.8;
            font-size: 1rem;
        }

        /* Contact Section */
        .contact-section {
       
            padding: 6rem 0 7rem;
        }

        body.dark-mode .contact-section {
            background: #000715;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: start;
        }

        .contact-form {
            background: white;
            padding: 3rem;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
            border: 1px solid rgba(0,0,0,0.06);
            margin-top: 6%;
        }

        body.dark-mode .contact-form {
            background: #01041600;
            border-color: rgba(255,255,255,0.06);
        }

        .contact-form h3 {
            font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #000000;
    line-height: 1.2;
        }

        .contact-form p {
            color: #2E2E2E;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
        }

        .contact-form-divider {
            width: 100%;
    height: 1px;
    background: #D9D9D9;
    margin-bottom: 2rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group:last-of-type {
            margin-bottom: 0;
        }

        .form-group-half {
            margin-bottom: 0;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: #374151;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.875rem;
            border: 1px solid #e5e7eb;
            border-radius: 6px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: border-color 0.3s;
            background: white;
            color: #1f2937;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #9ca3af;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #0A66C2;
            box-shadow: 0 0 0 3px rgba(10, 102, 194, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
            font-family: 'Inter', sans-serif;
        }

        .contact-submit-btn {
            width: 100%;
            padding: 1rem;
            background: #0A66C2;
            color: white;
            border: none;
            border-radius: 45px;
            font-weight: 600;
            font-size: 20px;
            cursor: pointer;
            margin-top: 40px;
            transition: background 0.3s, transform 0.2s;
            font-family: 'Inter', sans-serif;
        }

        .contact-submit-btn:hover {
            background: #084a94;
            transform: translateY(-1px);
        }

        .contact-submit-btn:active {
            transform: translateY(0);
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1.75rem;
        }

        .contact-image-wrapper {
            position: relative;
            width: 100%;
            border-radius: 16px;
            overflow: visible;
            padding-top: 15%;
        }

        .contact-bg-pattern {
            width: 56%;
            height: 5%;
            display: block;
            position: relative;
            z-index: 0;
            border-radius: 16px;
            overflow: hidden;
            margin-top: -8%;
            margin-left: 24%;
        }

        .contact-main-image {
            width: 50%;
            height: auto;
            display: block;
            position: absolute;
            top: 2px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-detail {
            background: white;
            padding: 1.75rem;
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 1.5rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            border: 1px solid rgba(0,0,0,0.06);
            transition: box-shadow 0.3s, transform 0.3s;
        }

        .contact-detail:hover {
            box-shadow: 0 4px 16px rgba(0,0,0,0.12);
            transform: translateY(-2px);
        }

        .contact-icon-wrapper {
            width: 48px;
            height: 48px;
            min-width: 48px;
            background: #0A66C2;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-icon {
            width: 24px;
            height: 24px;
        }

        .contact-icon {
            width: 24px;
            height: 24px;
            display: block;
        }

        .contact-icon svg {
            width: 100%;
            height: 100%;
            display: block;
        }

        .contact-icon svg path {
            stroke: white;
            fill: none;
        }

        .contact-text {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .contact-text strong {
            color: #1f2937;
            font-weight: 700;
            font-size: 1rem;
        }

        .contact-text span {
            color: #374151;
            font-weight: 400;
            font-size: 1rem;
        }

        body.dark-mode .contact-detail {
            background: #01041600;
            border-color: rgba(255,255,255,0.06);
        }

        body.dark-mode .contact-text strong {
            color: #e2e8f0;
        }

        body.dark-mode .contact-text span {
            color: #94a3b8;
        }

        /* Footer */
        footer {
            background: #003060;
            color: white;
            padding: 4rem 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-bottom: 2rem;
        }

        .footer-brand h2 {
            font-size: 2rem;
            font-weight: 500;
            margin-bottom: 0.75rem;
            color: white;
            font-family: 'Inter', sans-serif;
        }

        /* .footer-brand h2 .brand-dot {
            color: #0A66C2;
        } */

        .footer-brand p {
            font-size: 1rem;
            color:rgb(255, 255, 255);
            line-height: 1.6;
            margin: 0;
        }

        .footer-links {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .footer-links-column h3 {
            font-size: 21px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: white;
            margin-bottom: 1.25rem;
        }

        .footer-links-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links-column ul li {
            margin-bottom: 0.75rem;
        }

        .footer-links-column ul li a {
            color: #cbd5e1;
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.3s;
        }

        .footer-links-column ul li a:hover {
            color: white;
        }

        .footer-divider {
            width: 100%;
            height: 1px;
            background: rgba(255, 255, 255, 0.1);
            margin: 2rem 0;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1rem;
        }

        .footer-copyright {
            color: #cbd5e1;
            font-size: 0.95rem;
            margin: 0;
        }

        .footer-social {
            display: flex;
            gap: 0.75rem;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: transform 0.3s, background 0.3s;
        }

        .footer-social a:hover {
            transform: translateY(-2px);
            background: #f1f5f9;
        }

        .footer-social a svg {
            width: 20px;
            height: 20px;
        }

        .footer-social a svg path {
            fill: #0f172a;
        }

        body.dark-mode footer {
            background: #202A3E;
        }

        @media (max-width: 968px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .footer-links {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1.5rem;
                text-align: center;
            }
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .hero {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .services-section .service-item,
            .who-section,
            .who-section-content,
            .contact-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .who-section-new {
                padding: 4rem 0;
            }

            .who-content-new h2 {
                font-size: 2rem;
            }

            .who-content-new p {
                font-size: 1.1rem;
            }

            .features-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .hero-content {
                margin-left: 0;
                max-width: 100%;
            }

            .hero-content h1 {
                font-size: 2.6rem;
            }

            .hero-content p {
                font-size: 1.2rem;
            }

            .hero-envelope {
                width: 160px;
                height: 112px;
                margin-top: 1.5rem;
            }

            .hero-envelope .envelope-icon {
                font-size: 2rem;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .header-nav-desktop {
                gap: 0;
            }
            .header-nav-desktop a {
                padding: 6px 12px;
                font-size: 0.9rem;
            }

            .floating-badge {
                position: relative;
                top: auto;
                right: auto;
                left: auto;
                bottom: auto;
                margin: 1rem 0;
            }

        }

        /* شاشات صغيرة: ناف بار → أيقونة برغر + درج من اليمين */
        @media (max-width: 992px) {
            .header-nav-desktop,
            .header-right-desktop {
                display: none !important;
            }

            .header-burger {
                display: flex !important;
                opacity: 1 !important;
                visibility: visible !important;
                z-index: 10004;
                background: transparent;
            }

            .header-burger:hover {
                background: transparent;
            }

            .header-burger .burger-line {
                background: #0A66C2;
            }

            body.dark-mode .header-burger:hover {
                background: transparent;
            }

            body.dark-mode .header-burger .burger-line {
                background: #0A66C2;
            }

            .nav-drawer-overlay,
            .nav-drawer {
                display: block;
            }

            .nav-drawer {
                display: flex;
            }

            .header-nav-mobile a {
                font-size: 2rem !important;
                padding: 20px 36px !important;
            }
        }

        body.nav-drawer-open .nav-drawer-overlay {
            clip-path: circle(200vmax at var(--menu-origin-x, 90%) var(--menu-origin-y, 5%));
            visibility: visible;
            opacity: 1;
            transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0s;
        }

        body.nav-drawer-open .nav-drawer {
            opacity: 1;
            visibility: visible;
        }

        /* الشعار والبرغر/X فوق المنيو */
        body.nav-drawer-open .header-wrapper {
            z-index: 10002;
        }

        body.nav-drawer-open .header-bar {
            position: relative;
            z-index: 10003;
        }

        @media (max-width: 768px) {
            .header-bar {
                flex-wrap: nowrap;
                min-height: auto;
                padding: 16px 20px;
                gap: 12px;
                width: calc(100% - 24px);
            }

            .header-nav-desktop,
            .header-right-desktop {
                display: none !important;
            }

            .hero,
            .container {
                padding-left: 24px;
                padding-right: 24px;
            }

            .hero {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 3rem 24px;
            }

            .hero-content {
                text-align: center;
            }

            .hero-content h1 {
                font-size: 2rem;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 0;
                line-height: 1.4;
            }

            .hero-title-desktop {
                display: none !important;
            }

            .hero-title-mobile {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 0;
                width: 100%;
            }

            .hero-title-static {
                display: block;
                width: 100%;
                text-align: center;
            }

            .hero-title-typing-wrapper {
                display: inline-block;
                min-height: 1.5em;
                text-align: center;
            }

            .hero-title-typing {
                display: inline;
                color: #0A66C2;
                font-weight: 600;
            }

            body.dark-mode .hero-title-typing {
                color: #82B7EC;
            }

            .hero-title-cursor {
                display: none !important;
            }

            [dir="rtl"] .hero-title-mobile {
                direction: rtl;
            }

            [dir="rtl"] .hero-title-static {
                text-align: center;
            }

            .hero-content p {
                font-size: 1rem;
            }

            .hero-subtitle-desktop {
                display: none !important;
            }

            .hero-subtitle-mobile {
                display: block !important;
                font-size: 1rem;
                color: #475569;
                margin-bottom: 2.5rem;
                line-height: 1.5;
                text-align: center;
            }

            body.dark-mode .hero-subtitle-mobile {
                color: #ffffff;
            }

            .hero-buttons {
                flex-direction: column;
                width: 100%;
                align-items: center;
            }

            /* على التلفون: الـ glow أوضح وأكبر */
            .hero-glow-bg {
                --size: 140% !important;
                --blur-amount: 100px;
                opacity: 0.95;
                min-width: 320px;
                min-height: 320px;
            }

            body.dark-mode .hero-glow-bg {
                --bg-color: #00306099 !important;
                opacity: 0.95;
            }

            .btn-hero {
                width: auto;
                max-width: 90%;
                padding: 0.875rem 1.75rem;
                font-size: 16px;
                justify-content: center;
                margin-left: 0;
            }

            .hero-stats {
                flex-direction: column;
                gap: 1rem;
            }

            .hero-envelope {
                width: 140px;
                height: 98px;
                margin-top: 1.25rem;
            }

            .hero-envelope .envelope-icon {
                font-size: 1.75rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .contact-form {
                padding: 2rem;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .services-section .service-content h3 {
                font-size: 1rem;
                font-weight: bold;
                margin-bottom: 2.25rem;
                color: #1f2937;
                line-height: 1.3;
            }

            .services-section .service-item--cv .service-image-layered::before {
                box-shadow: 0 8px 29px #3c8fe1;
            }
        }

        /* ========== RTL — العربية: اتجاه يمين لليسار ========== */
        [dir="rtl"] .hero-content {
            text-align: right;
        }

        [dir="rtl"] .who-section-new .btn-hero,
        [dir="rtl"] .who-content-new .btn-hero {
            margin-left: 0;
            margin-right: 10%;
        }

        [dir="rtl"] .section-title,
        [dir="rtl"] .section-subtitle {
            text-align: center;
        }

        [dir="rtl"] .container {
            text-align: right;
        }

        [dir="rtl"] .services-section .service-content,
        [dir="rtl"] .services-section .service-content h3,
        [dir="rtl"] .services-section .service-content ul {
            text-align: right;
        }

        [dir="rtl"] .services-section .service-content ul li {
            flex-direction: row-reverse;
        }

        [dir="rtl"] .services-section .service-content ul li i {
            margin-left: 1.15rem;
            margin-right: 0;
        }

        [dir="rtl"] .who-content-new h2,
        [dir="rtl"] .who-content-new p {
            margin-left: 0;
            margin-right: 11%;
            text-align: right;
        }

        [dir="rtl"] .who-section-content {
            direction: rtl;
        }

        [dir="rtl"] .who-image-new {
            left: auto;
            right: 0;
            justify-content: flex-end;
            overflow: visible;
        }

        [dir="rtl"] .who-image-wrapper {
            direction: ltr;
            max-width: 600px;
        }

        [dir="rtl"] .who-shadow-image {
            left: auto;
            right: 42%;
            transform: translate(50%, -50%);
        }

        [dir="rtl"] .who-girl-image {
            left: auto;
            right: -34%;
        }

        [dir="rtl"] .who-path-lines {
            left: auto;
            right: 0;
            transform: scaleX(-1);
        }

        [dir="rtl"] .feature-card-content,
        [dir="rtl"] .feature-card-content h4,
        [dir="rtl"] .feature-card-content p {
            text-align: right;
        }

        [dir="rtl"] .contact-form,
        [dir="rtl"] .contact-form h3,
        [dir="rtl"] .contact-form p,
        [dir="rtl"] .form-group label {
            text-align: right;
        }

        [dir="rtl"] .contact-bg-pattern {
            margin-left: 0;
            margin-right: 24%;
        }

        [dir="rtl"] .contact-main-image {
            left: auto;
            right: 50%;
            transform: translateX(50%);
        }

        [dir="rtl"] .contact-detail {
            flex-direction: row;
            text-align: right;
        }

        [dir="rtl"] .contact-text {
            align-items: flex-start;
        }

        [dir="rtl"] .testimonial-card,
        [dir="rtl"] .testimonial-text,
        [dir="rtl"] .testimonial-info h5,
        [dir="rtl"] .testimonial-info p {
            text-align: right;
        }

        [dir="rtl"] .testimonial-header {
            flex-direction: row-reverse;
        }

        [dir="rtl"] footer .footer-brand,
        [dir="rtl"] footer .footer-brand p,
        [dir="rtl"] .footer-links-column h3,
        [dir="rtl"] .footer-links-column ul li a {
            text-align: right;
        }

        [dir="rtl"] .footer-bottom {
            flex-direction: row-reverse;
        }

        [dir="rtl"] .footer-social {
            flex-direction: row-reverse;
        }

        [dir="rtl"] .contact-submit-btn {
            text-align: center;
        }

        [dir="rtl"] .page-width {
            text-align: right;
        }

        [dir="rtl"] .who-content h2,
        [dir="rtl"] .who-content p {
            text-align: right;
        }

        [dir="rtl"] .fa-arrow-right {
            display: inline-block;
            transform: scaleX(-1);
        }
