  :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(--light-bg);
            color: var(--text-main);
            overflow-x: hidden;
            line-height: 1.8;
        }

      
        /* --- Shared Styles --- */
        .section-padding { padding: 100px 0; }
        .btn-custom {
            background-color: var(--accent-color);
            color: white;
            padding: 12px 35px;
            border-radius: 50px;
            border: none;
            transition: var(--transition);
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
        }
        .btn-custom:hover {
            background-color: var(--main-color);
            transform: translateY(-5px);
            color: white;
            box-shadow: 0 10px 20px rgba(0, 86, 179, 0.2);
        }
        .section-title {
            color: var(--main-color);
            font-weight: 900;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            width: 50%;
            height: 4px;
            background: var(--accent-color);
            position: absolute;
            bottom: -10px;
            right: 0;
            border-radius: 2px;
        }

        /* --- Intro Section --- */
        .intro-section {
            min-height: 60vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, var(--white) 0%, #eef5ff 100%);
            padding: 50px 0;
        }
        .intro-content h1 {
            font-size: 3.5rem;
            color: var(--dark-color);
            font-weight: 900;
            margin-bottom: 25px;
        }
        .intro-content span { color: var(--main-color); }
        .intro-image svg {
            width: 100%;
      
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

    /* Responsive Logic for Intro: Mobile Image TOP, Text BOTTOM */
@media (max-width: 991.98px) {
    .intro-section .row {
        display: flex;
        /* نستخدم column-reverse إذا كان الكلام في HTML مكتوب قبل الصورة */
        /* نستخدم column عادي إذا كانت الصورة في HTML مكتوبة قبل الكلام */
        flex-direction: column-reverse; 
    }

    .intro-image {
        order: 1; /* يضمن بقاء الصورة في الأعلى */
        margin-bottom: 30px;
        display: flex;
        justify-content: center;
    }

    .intro-content {
        order: 2; /* يضمن بقاء النص في الأسفل */
        text-align: center;
    }

    .intro-content h1 { 
        font-size: 2.2rem; 
    }
}
        /* --- Services Section --- */
        .service-card {
            background: var(--white);
            padding: 40px;
            border-radius: 20px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
            border-bottom: 5px solid transparent;
        }
        .service-card:hover {
            transform: translateY(-15px);
            border-bottom: 5px solid var(--accent-color);
        }
        .service-icon {
            font-size: 3rem;
            color: var(--main-color);
            margin-bottom: 20px;
        }

        /* --- Why Us Section --- */
        .why-us { background-color: var(--dark-color); color: var(--white); }
        .why-us .section-title { color: var(--white); }
        .feature-item { margin-bottom: 30px; }
        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--accent-color);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 15px;
            margin-left: 20px;
            font-size: 1.5rem;
        }

     
        /* --- CTA Section --- */
        .cta-section {
            background: linear-gradient(45deg, var(--main-color), var(--dark-color));
            color: var(--white);
            padding: 80px 0;
            border-radius: 40px;
            margin: 50px auto;
            max-width: 90%;
        }

        