        :root {
            --primary: #2F5FEF;
            --primary-dark: #1A4BD9;
            --secondary: #FF6B35;
            --dark: #1E293B;
            --light: #F8FAFC;
            --gray: #64748B;
            --success: #10B981;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Tajawal', sans-serif;
            background-color: #FFFFFF;
            color: var(--dark);
            line-height: 1.6;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* شريط التنقل */
        nav {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo img {
            height: 50px;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-right: 25px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        .cta-nav {
            background-color: var(--primary);
            color: white !important;
            padding: 8px 20px;
            border-radius: 5px;
        }
        
        .cta-nav:hover {
            background-color: var(--primary-dark);
        }
        
        /* القسم العلوي */
        .hero {
            padding: 150px 0 80px;
            background: linear-gradient(135deg, #F6FAFF 0%, #EFF4FF 100%);
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
        .hero h1 span {
            color: var(--primary);
        }
        
        .subtitle {
            font-size: 1.2rem;
            color: var(--gray);
            margin-bottom: 30px;
        }
        
        .subtitle strong {
            color: var(--secondary);
        }
        
        .hero-cta {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 5px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .btn-primary {
            background-color: var(--primary);
            color: white;
        }
        
        .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(47, 95, 239, 0.3);
        }
        
        .video-btn {
            display: flex;
            align-items: center;
            color: var(--primary);
            font-weight: 700;
        }
        
        .video-btn i {
            margin-right: 8px;
            background-color: var(--primary);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .trust-badges {
            display: flex;
            gap: 20px;
        }
        
        .trust-badges img {
            height: 40px;
        }
        
        .hero-image {
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 50%;
            z-index: 1;
        }
        
        .hero-image img {
            width: 100%;
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }
        
        /* شريط الإحصاءات */
        .stats-bar {
            background-color: var(--primary);
            color: white;
            padding: 20px 0;
            margin-top: -40px;
            position: relative;
            z-index: 2;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(47, 95, 239, 0.3);
        }
        
        .stats-bar .container {
            display: flex;
            justify-content: space-around;
        }
        
        .stat-item {
            text-align: center;
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .stat-item span {
            font-size: 2.5rem;
            display: block;
            margin-bottom: 5px;
        }
        
        /* قسم الخدمات */
        .services {
            padding: 100px 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-header h2 {
            font-size: 2.2rem;
            margin-bottom: 15px;
        }
        
        .section-header h2 span {
            color: var(--primary);
        }
        
        .section-header p {
            color: var(--gray);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid #E2E8F0;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-color: var(--primary);
        }
        
        .service-card.featured {
            border-top: 5px solid var(--secondary);
        }
        
        .service-icon {
            width: 60px;
            height: 60px;
            background-color: rgba(47, 95, 239, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--primary);
            font-size: 1.5rem;
        }
        
        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        .service-card p {
            color: var(--gray);
            margin-bottom: 20px;
        }
        
        .service-card p strong {
            color: var(--secondary);
        }
        
        .service-features {
            list-style: none;
            margin-bottom: 25px;
        }
        
        .service-features li {
            margin-bottom: 8px;
            position: relative;
            padding-right: 20px;
        }
        
        .service-features li:before {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            right: 0;
            color: var(--success);
        }
        
        .service-link {
            color: var(--primary);
            font-weight: 700;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .service-link:hover {
            color: var(--primary-dark);
        }
        
        .service-link i {
            margin-right: 5px;
        }
        
        /* قسم لماذا نحن */
        .why-us {
            padding: 80px 0;
            background-color: #F8FAFC;
        }
        
        .why-us .container {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .why-content {
            flex: 1;
        }
        
        .why-image {
            flex: 1;
        }
        
        .why-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .why-us h2 {
            font-size: 2.2rem;
            margin-bottom: 30px;
        }
        
        .why-us h2 span {
            color: var(--primary);
        }
        
        .why-points {
            display: grid;
            grid-template-columns: 1fr;
            gap: 25px;
        }
        
        .why-item {
            display: flex;
            gap: 20px;
        }
        
        .why-number {
            width: 50px;
            height: 50px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            font-weight: 700;
            flex-shrink: 0;
        }
        
        .why-item h3 {
            font-size: 1.2rem;
            margin-bottom: 8px;
        }
        
        .why-item p {
            color: var(--gray);
        }
        
        /* قسم عملاء */
        .clients-section {
            padding: 80px 0;
            text-align: center;
        }
        
        .clients-section h2 {
            font-size: 2.2rem;
            margin-bottom: 15px;
        }
        
        .clients-section h2 span {
            color: var(--primary);
        }
        
        .client-logos {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 40px;
            margin: 50px 0;
        }
        
        .client-logos img {
            height: 40px;
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        
        .client-logos img:hover {
            opacity: 1;
        }
        
        .testimonials {
            max-width: 800px;
            margin: 0 auto;
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .testimonial p {
            font-size: 1.2rem;
            font-style: italic;
            margin-bottom: 20px;
            color: var(--dark);
        }
        
        .client-info {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .client-info img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
        }
        
        .client-info h4 {
            font-weight: 700;
        }
        
        .client-info span {
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        /* الأئة الشائعة */
        .faq-section {
            padding: 80px 0;
            background-color: #F8FAFC;
        }
        
        .faq-section h2 {
            text-align: center;
            font-size: 2.2rem;
            margin-bottom: 50px;
        }
        
        .faq-section h2 span {
            color: var(--primary);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 15px;
            border: 1px solid #E2E8F0;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .faq-question {
            width: 100%;
            padding: 20px;
            background-color: white;
            border: none;
            text-align: right;
            font-size: 1.1rem;
            font-weight: 700;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background-color: #F8FAFC;
        }
        
        .faq-question i {
            transition: transform 0.3s ease;
        }
        
        .faq-question.active i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background-color: white;
        }
        
        .faq-answer p {
            padding: 0 0 20px;
        }
        
        /* نموذج الاتصال */
        .contact-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
        }
        
        .contact-section .container {
            display: flex;
            gap: 50px;
        }
        
        .contact-info {
            flex: 1;
        }
        
        .contact-info h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
        }
        
        .contact-info p {
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .info-item i {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 15px;
        }
        
        .contact-form {
            flex: 1;
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .contact-form h3 {
            color: var(--dark);
            font-size: 1.5rem;
            margin-bottom: 20px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--dark);
            font-weight: 500;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #E2E8F0;
            border-radius: 5px;
            font-family: 'Tajawal', sans-serif;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(47, 95, 239, 0.2);
        }
        
        textarea.form-control {
            min-height: 120px;
        }
        
        .btn-submit {
            background-color: var(--secondary);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 5px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .btn-submit:hover {
            background-color: #E55624;
        }
        
        /* وتر */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .footer-logo img {
            height: 50px;
            margin-bottom: 20px;
        }
        
        .footer-logo p {
            opacity: 0.7;
            margin-bottom: 20px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background-color: var(--primary);
        }
        
        .footer-links h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h4:after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 50px;
            height: 2px;
            background-color: var(--primary);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
            padding-right: 5px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
            font-size: 0.9rem;
        }
        
        /* التجاوبية */
        @media (max-width: 992px) {
            .hero .container {
                flex-direction: column;
            }
            
            .hero-image {
                position: relative;
                width: 100%;
                margin-top: 50px;
            }
            
            .why-us .container {
                flex-direction: column;
            }
            
            .contact-section .container {
                flex-direction: column;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero-cta {
                flex-direction: column;
            }
            
            .stats-bar .container {
                flex-direction: column;
                gap: 20px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
        }
        /* شريط التنقل */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.primary-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-menu li {
    margin-left: 25px;
    position: relative;
}

.primary-menu a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    transition: all 0.3s ease;
}

.primary-menu a:hover {
    color: var(--primary);
}

.primary-menu a:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.primary-menu a:hover:after {
    width: 100%;
    left: 0;
}

.cta-button {
    background-color: var(--primary);
    color: white !important;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* القائمة المنسدلة للجوال */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

.mobile-menu-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: white;
    z-index: 9999;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    display: none;
}

.mobile-menu-wrapper.active {
    right: 0;
}

.mobile-menu {
    padding: 20px;
}

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 50px 0 0;
}

.mobile-nav li {
    margin-bottom: 15px;
}

.mobile-nav a {
    color: var(--dark);
    text-decoration: none;
    font-size: 1.1rem;
}

.close-menu {
    position: absolute;
    top: 20px;
    left: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 992px) {
    .nav-menu, .header-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-menu-wrapper {
        display: block;
    }
}
