 /* التنسيقات العامة */
        body {
            font-family: 'Cairo', sans-serif;
            background-color: #f8fbff;
            color: #333333;
            overflow-x: hidden;
            margin: 0;
            padding: 0;
        }

        /* Hero Section */
        .hero {
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: radial-gradient(circle at top right, #eef5ff, #ffffff);
            position: relative;
            padding: 60px 0;
        }

        .grid-bg {
            background-image: radial-gradient(#0056b3 0.5px, transparent 0.5px);
            background-size: 30px 30px;
            opacity: 0.05;
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            z-index: -1;
        }

        @keyframes floating {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-25px); }
        }

        .img-floating {
            animation: floating 4s ease-in-out infinite;
            width: 100%;
            max-width: 500px;
            
           
        }

        .hero-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 900;
            color: #0d1b2a;
            line-height: 1.3;
            margin-bottom: 25px;
        }

        .hero-title span { color: #0056b3; }

        .hero-p {
            font-size: 1.1rem;
            color: #666666;
            margin-bottom: 35px;
            line-height: 1.8;
        }

        .btn-moqy {
            background-color: #ff6b00;
            color: #ffffff !important;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 700;
            border: none;
            transition: all 0.4s ease;
            box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2);
            text-decoration: none;
            display: inline-block;
        }

        .btn-moqy:hover {
            background-color: #0056b3;
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 86, 179, 0.3);
        }

        /* أقسام المحتوى */
        .section-wrapper { padding: 100px 0; }

        .section-header { text-align: center; margin-bottom: 60px; }

        .section-header h2 {
            font-weight: 800;
            font-size: 2.5rem;
            color: #0d1b2a;
            position: relative;
            padding-bottom: 15px;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 5px;
            background: #ff6b00;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 10px;
        }

        /* الكروت والمميزات */
        .moqy-card {
            background: #ffffff;
            padding: 40px 25px;
            border-radius: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.4s ease;
            height: 100%;
            text-align: center;
        }

        .moqy-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 86, 179, 0.1);
        }

        .card-icon {
            width: 80px;
            height: 80px;
            background: #f0f7ff;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: #0056b3;
        }

        .identity-point { display: flex; align-items: flex-start; margin-bottom: 25px; }

        .point-circle {
            min-width: 45px;
            height: 45px;
            background: #0056b3;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            margin-left: 15px;
        }

        .service-list { list-style: none; padding: 0; }
        .service-list li { padding: 10px 0; border-bottom: 1px dashed #ddd; display: flex; align-items: center; }
        .service-list li i { color: #ff6b00; margin-left: 12px; }

        /* قسم رحلة العمل */
        .journey-section { padding: 100px 0; background-color: #f8fbff; }
        .step-wrapper { position: relative; z-index: 1; }
        
        .step-card {
            background: #ffffff;
            padding: 40px 25px;
            border-radius: 24px;
            border: 1px solid rgba(0, 86, 179, 0.05);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
            height: 100%;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .step-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 86, 179, 0.08);
            border-color: #0056b3;
        }

        .step-number {
            position: absolute;
            top: -10px; left: -10px;
            font-size: 6rem;
            font-weight: 900;
            color: #0056b3;
            opacity: 0.04;
            z-index: 0;
        }

        .step-badge {
            width: 45px; height: 45px;
            background: #0056b3;
            color: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin-bottom: 20px;
            box-shadow: 0 10px 15px rgba(0, 86, 179, 0.2);
        }

        @media (min-width: 992px) {
            .step-wrapper:not(:last-child)::after {
                content: '';
                position: absolute;
                top: 20%; left: -20%;
                width: 40%; height: 2px;
                border-top: 2px dashed #0056b3;
                opacity: 0.2;
                z-index: -1;
            }
        }

        /* Responsive */
        @media (max-width: 991.98px) {
            .hero { text-align: center; padding-top: 120px; }
            .img-floating { margin-bottom: 40px; max-width: 300px; }
            .hero-title { font-size: 1.8rem; }
            .section-wrapper { padding: 60px 0; }
        }