/* ==========================================================================
           1. CSS VARIABLES & ROOT SETTINGS
           ========================================================================== */
        :root {
            --main-color: #0056b3;       /* الأزرق العميق */
            --accent-color: #ff6b00;     /* البرتقالي الحيوي */
            --dark-color: #0d1b2a;
            --light-bg: #f8fbff;         /* خلفية فاتحة للانترو */
            --white: #ffffff;
            --text-main: #333333;
            --text-muted: #666666;
            --section-padding: 100px 0;
            --card-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
            --transition-smooth: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
            --border-radius-lg: 30px;
            --border-radius-md: 20px;
        }

        /* ==========================================================================
           2. GLOBAL RESET & BASE STYLES
           ========================================================================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Cairo', sans-serif;
            background-color: var(--white);
            color: var(--text-main);
            line-height: 1.8;
            overflow-x: hidden;
            text-align: right;
        }

        a {
            text-decoration: none;
            transition: var(--transition-smooth);
        }

        ul {
            list-style: none;
        }

       svg {
            max-width: 100%;
            height: auto;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--dark-color);
        }

        .section-title {
            margin-bottom: 60px;
            text-align: center;
        }

        .section-title h2 {
            font-size: 2.8rem;
            position: relative;
            padding-bottom: 20px;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 2px;
        }

        /* ==========================================================================
           3. HERO SECTION (MODIFIED: LIGHT & IMAGE FIRST ON MOBILE)
           ========================================================================== */
        .hero-section {
            background-color: var(--light-bg);
            min-height: 60vh;
            display: flex;
            align-items: center;
            padding:20px 0;
            position: relative;
            overflow: hidden;
        }

        /* Background Shapes for Intro */
        .hero-section::before {
            content: '';
            position: absolute;
            top: -10%;
            right: -5%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0, 86, 179, 0.05) 0%, transparent 70%);
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-content h1 {
            font-size: clamp(2.5rem, 5vw, 4.2rem);
            font-weight: 900;
            margin-bottom: 25px;
            color: var(--dark-color);
            line-height: 1.2;
        }

        .hero-content h1 span {
            color: var(--main-color);
            position: relative;
        }

        .hero-content p {
            font-size: 1.3rem;
            color: var(--text-muted);
            margin-bottom: 40px;
            max-width: 600px;
        }

        .btn-custom {
            padding: 16px 45px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: var(--transition-smooth);
            display: inline-block;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .btn-main {
            background-color: var(--main-color);
            color: var(--white);
        }

        .btn-accent {
            background-color: var(--accent-color);
            color: var(--white);
            border: none;
        }

        .btn-accent:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(255, 107, 0, 0.3);
            background-color: #e66000;
            color: white;
        }

        .hero-image-container {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .hero-image-container .img-fluid {
            filter: drop-shadow(0 20px 50px rgba(0,0,0,0.1));
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        /* ==========================================================================
           4. WHY US SECTION (CARDS)
           ========================================================================== */
        .features-section {
            padding: var(--section-padding);
            background-color: var(--white);
        }

        .feature-card {
            background: var(--white);
            border-radius: var(--border-radius-md);
            padding: 50px 40px;
            text-align: center;
            transition: var(--transition-smooth);
            border: 1px solid rgba(0,0,0,0.03);
            height: 100%;
            position: relative;
            z-index: 1;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: var(--main-color);
            border-radius: var(--border-radius-md);
            z-index: -1;
            transition: var(--transition-smooth);
        }

        .feature-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 60px rgba(0, 86, 179, 0.1);
        }

        .feature-card:hover::before {
            height: 100%;
        }

    
        .feature-card:hover .icon-box i {
            
            color: var(--accent-color);
        }
             .feature-card:hover h3, 
        .feature-card:hover p{
                color: var(--white);
        }
      .feature-card p {
            color: var(--text-muted);
            transition: var(--transition-smooth);
            margin-bottom: 0;
        }

        .icon-box {
            width: 90px;
            height: 90px;
            background: var(--light-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 2.5rem;
            color: var(--main-color);
            transition: var(--transition-smooth);
        }

        .feature-card h3 {
            margin-bottom: 20px;
            font-size: 1.6rem;
            transition: var(--transition-smooth);
        }

  
        /* ==========================================================================
           5. ABOUT COMPANY SECTION (WHAT WE DO)
           ========================================================================== */
        .about-section {
            padding: var(--section-padding);
            background-color: var(--light-bg);
        }

        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 25px;
            color: var(--dark-color);
        }

        .about-text p {
            font-size: 1.1rem;
            margin-bottom: 30px;
        }

        .service-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            padding: 20px;
            background: var(--white);
            border-radius: 15px;
            box-shadow: var(--card-shadow);
        }

        .service-icon {
            min-width: 50px;
            height: 50px;
            background: var(--accent-color);
            color: var(--white);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 20px;
            font-size: 1.2rem;
        }

        /* ==========================================================================
           6. PROCESS SECTION (STEPS)
           ========================================================================== */
        .process-section {
            padding: var(--section-padding);
            background-color: var(--white);
        }

        .step-wrapper {
            position: relative;
        }

        /* Connecting line for steps */
        .step-wrapper::before {
            content: '';
            position: absolute;
            top: 50px;
            right: 45px;
            width: 2px;
            height: 80%;
            border-right: 3px dashed #ddd;
            z-index: 0;
        }

        .process-step {
            position: relative;
            z-index: 1;
            padding-right: 80px;
            margin-bottom: 50px;
        }

        .step-number {
            position: absolute;
            right: 0;
            top: 0;
            width: 60px;
            height: 60px;
            background: var(--main-color);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 1.5rem;
            box-shadow: 0 0 0 10px var(--white);
        }

        /* ==========================================================================
           7. STATISTICS SECTION
           ========================================================================== */
        .stats-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--dark-color) 0%, var(--main-color) 100%);
            color: var(--white);
        }

        .stat-box {
            text-align: center;
        }

        .stat-box h3 {
            font-size: 3.5rem;
            color: var(--accent-color);
            font-weight: 900;
            margin-bottom: 10px;
        }

        .stat-box p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        /* ==========================================================================
           8. CALL TO ACTION (CTA)
           ========================================================================== */
        .cta-section {
            padding: var(--section-padding);
        }

        .cta-container {
            background: linear-gradient(to right, #0056b3, #003d82);
            border-radius: var(--border-radius-lg);
            padding: 80px 50px;
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-container h2 {
            color: var(--white);
            font-size: 3rem;
            margin-bottom: 20px;
        }

        /* ==========================================================================
           9. RESPONSIVE MEDIA QUERIES
           ========================================================================== */
        @media (max-width: 991px) {
            .hero-section {
                text-align: center;
                padding: 60px 0;
            }
            
            .hero-content p {
                margin: 0 auto 40px;
            }

            /* This ensures image shows first on mobile */
            .mobile-reverse {
                display: flex;
                flex-direction: column-reverse;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 767px) {
            .cta-container {
                padding: 50px 20px;
            }
            .cta-container h2 {
                font-size: 2rem;
            }
            .step-wrapper::before {
                display: none;
            }
            .process-step {
                padding-right: 0;
                text-align: center;
            }
            .step-number {
                position: relative;
                margin: 0 auto 20px;
            }
        }

        /* ==========================================================================
           10. ADDITIONAL UTILITIES FOR LENGTH
           ========================================================================== */
        .spacer-sm { height: 20px; }
        .spacer-md { height: 50px; }
        .spacer-lg { height: 100px; }
        
        .text-accent { color: var(--accent-color) !important; }
        .bg-light-blue { background-color: var(--light-bg); }
svg {
  width: 100%;       /* هياخد عرض الحاوية اللي هو فيها */
  max-width: 600px;  /* عشان ميكبرش بزيادة عن اللزوم على الشاشات الكبيرة */
  height: auto;      /* هيحافظ على النسبة والتناسب تلقائياً */
}