  :root {
            --main-color: #0056b3; /* الأزرق العميق */
            --accent-color: #ff6b00; /* البرتقالي الحيوي */
            --dark-color: #0d1b2a;
            --light-bg: #f8fbff;
            --white: #ffffff;
            --text-main: #333333;
            --text-muted: #666666;
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            --shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        body {
            font-family: 'Cairo', sans-serif;
            background-color: var(--white);
            color: var(--text-main);
            overflow-x: hidden;
        }

        /* Hero Section Styling */
        .hero-section {
            padding: 30px 0;
            background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
            min-height: 50vh;
            display: flex;
            align-items: center;
        }

        .hero-title {
            font-weight: 900;
            color: var(--dark-color);
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 25px;
        }

        .hero-title span {
            color: var(--main-color);
        }

        .hero-desc {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 35px;
            line-height: 1.8;
        }

        .btn-custom-primary {
            background-color: var(--main-color);
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
        }

        .btn-custom-primary:hover {
            transform: translateY(-5px);
            background-color: var(--dark-color);
            color: white;
        }

 /* تعديل حركة الصورة في الانترو */
.hero-image svg{
    width: 100%;
 
    /* إضافة الأنيميشن هنا */
    animation: floatImage 4s ease-in-out infinite;
}

/* تعريف حركة الصعود والهبوط */
@keyframes floatImage {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px); /* المسافة التي تصعدها الصورة */
    }
    100% {
        transform: translateY(0px);
    }
}
        /* Sections Styling */
        .section-padding {
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-header h2 {
            font-weight: 800;
            font-size: 2.5rem;
            color: var(--main-color);
            position: relative;
            padding-bottom: 20px;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--accent-color);
        }

        /* Features Cards */
        .feature-card {
            background: var(--white);
            padding: 40px;
            border-radius: 20px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
            border: 1px solid rgba(0,0,0,0.02);
            text-align: center;
        }

        .feature-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            border-color: var(--main-color);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--light-bg);
            color: var(--main-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            border-radius: 50%;
            margin: 0 auto 25px;
            transition: var(--transition);
        }

        .feature-card:hover .feature-icon {
            background: var(--accent-color);
            color: white;
        }

        /* Why MOQYSITE Section */
        .why-moqysite {
            background-color: var(--dark-color);
            color: white;
        }

        .why-moqysite .section-header h2 {
            color: white;
        }

        .moqy-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }

        .moqy-check {
            color: var(--accent-color);
            font-size: 1.5rem;
            margin-left: 20px;
        }

        /* Stats Section */
        .stat-box {
            text-align: center;
            padding: 30px;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--accent-color);
            display: block;
        }

        /* Process Section */
        .step-box {
            position: relative;
            padding: 30px;
        }

        .step-number {
            font-size: 5rem;
            font-weight: 900;
            color: rgba(0, 86, 179, 0.05);
            position: absolute;
            top: 0;
            right: 10px;
            z-index: 0;
        }

        .step-content {
            position: relative;
            z-index: 1;
        }

        /* Responsive Fixes */
        @media (max-width: 991px) {
            .hero-title { font-size: 2.5rem; }
            /* Force image above text on mobile as requested */
            .hero-row {
                display: flex;
                flex-direction: column-reverse;
            }
            .hero-image {
                margin-bottom: 40px;
            }
        }

        /* Animated Shapes */
        .shape-blob {
            position: absolute;
            z-index: -1;
            filter: blur(70px);
            opacity: 0.4;
            border-radius: 50%;
        }

        .blob-1 {
            width: 300px;
            height: 300px;
            background: var(--main-color);
            top: -100px;
            left: -100px;
        }

        .blob-2 {
            width: 250px;
            height: 250px;
            background: var(--accent-color);
            bottom: 200px;
            right: -50px;
        }