        /* =========================================
           1. ROOT VARIABLES & THEME DEFINITION
           =========================================
        */
        :root {
            --main-color:  #0056b3; /* الأزرق العميق */
            --accent-color: #ff6b00;
            --dark-color: #0d1b2a;
            --light-bg: #f8fbff;
            --white: #ffffff;
            --border-color: #e1e8ef;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            
            /* Extended UI Variables */
            --main-soft: rgba(0, 123, 255, 0.1);
            --accent-soft: rgba(255, 107, 0, 0.1);
            --shadow-light: 0 10px 30px rgba(0, 0, 0, 0.05);
            --shadow-medium: 0 15px 45px rgba(0, 123, 255, 0.1);
            --heading-font: 'Cairo', sans-serif;
            --body-font: 'Cairo', sans-serif;
        }

        /* =========================================
           2. GLOBAL RESET & BASE STYLES
           =========================================
        */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            outline: none !important;
        }

        body {
            font-family: var(--body-font);
            background-color: var(--light-bg);
            color: var(--dark-color);
            line-height: 1.8;
            overflow-x: hidden;
            font-size: 16px;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        ul { list-style: none; margin: 0; padding: 0; }

      
        .container-custom {
            max-width: 1250px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* =========================================
           3. ANIMATIONS & KEYFRAMES
           =========================================
        */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }

        @keyframes drawLine {
            from { stroke-dashoffset: 1000; }
            to { stroke-dashoffset: 0; }
        }

        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.05); opacity: 0.8; }
            100% { transform: scale(1); opacity: 1; }
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* =========================================
           4. HERO SECTION STYLING
           =========================================
        */
        .hero-section {
            position: relative;
            padding: 60px 0 60px;
            background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
            overflow: hidden;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            align-items: center;
            gap: 40px;
        }

        .hero-content h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 25px;
            color: var(--dark-color);
        }

        .hero-content h1 span {
            color: var(--main-color);
            position: relative;
        }

        .hero-content h1 span::after {
            content: '';
            position: absolute;
            bottom: 10px; left: 0; width: 100%; height: 8px;
            background: var(--accent-color);
            opacity: 0.15;
            z-index: -1;
        }

        .hero-content p {
            font-size: 1.2rem;
            color: #5a6a7a;
            max-width: 600px;
            margin-bottom: 40px;
        }

        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .main-svg-wrapper {
            width: 100%;
            max-width: 500px;
            animation: float 6s ease-in-out infinite;
        }

        .btn-main {
            display: inline-block;
            padding: 18px 45px;
            background-color: var(--accent-color);
            color: var(--white);
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            box-shadow: 0 10px 25px rgba(255, 107, 0, 0.3);
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .btn-main:hover {
            background-color: var(--main-color);
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 123, 255, 0.3);
            color: var(--white);
        }

        /* =========================================
           5. STATS COUNTER SECTION
           =========================================
        */
        .stats-section {
            padding: 50px 0;
            background: var(--white);
            border-bottom: 1px solid var(--border-color);
        }

        .stats-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            text-align: center;
        }

        .stat-card {
            padding: 20px;
            transition: var(--transition);
        }

        .stat-card:hover { transform: translateY(-10px); }

        .stat-number {
            display: block;
            font-size: 3rem;
            font-weight: 800;
            color: var(--main-color);
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 1rem;
            color: #7a8a9a;
            font-weight: 600;
        }

        /* =========================================
           6. SERVICES SECTION (CARDS)
           =========================================
        */
        .services-section {
            padding: 100px 0;
            background-color: var(--light-bg);
        }

        .section-title {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .section-title .divider {
            width: 80px;
            height: 4px;
            background: var(--accent-color);
            margin: 0 auto;
            border-radius: 2px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .service-box {
            background: var(--white);
            padding: 45px;
            border-radius: 24px;
            border: 1px solid var(--border-color);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .service-box::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 0;
            background: var(--main-color);
            transition: var(--transition);
            z-index: -1;
            opacity: 0.02;
        }

        .service-box:hover {
            transform: translateY(-15px);
            border-color: var(--main-color);
            box-shadow: var(--shadow-medium);
        }

        .service-box:hover::before { height: 100%; }

        .icon-circle {
            width: 70px; height: 70px;
            background: var(--main-soft);
            color: var(--main-color);
            border-radius: 20px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 25px;
            transition: var(--transition);
        }

        .service-box:hover .icon-circle {
            background: var(--accent-color);
            color: var(--white);
            transform: rotateY(180deg);
        }

        .service-box h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .service-box p {
            color: #6a7a8a;
            font-size: 1rem;
            margin: 0;
        }

        /* =========================================
           7. SMART ACCORDION (TECHNICAL DETAILS)
           =========================================
        */
        .faq-section {
            padding: 100px 0;
            background: var(--white);
        }

        .accordion-container {
            max-width: 850px;
            margin: 0 auto;
        }

        .acc-item {
            border: 1px solid var(--border-color);
            border-radius: 16px;
            margin-bottom: 20px;
            overflow: hidden;
            background: var(--white);
            transition: var(--transition);
        }

        .acc-trigger {
            width: 100%;
            padding: 25px 30px;
            background: none;
            border: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            text-align: right;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--dark-color);
            transition: var(--transition);
        }

        .acc-trigger:hover {
            background-color: var(--light-bg);
        }

        .acc-trigger.active {
            background-color: var(--main-color);
            color: var(--white);
        }

        .acc-icon {
            font-size: 1rem;
            transition: var(--transition);
        }

        .acc-trigger.active .acc-icon {
            transform: rotate(180deg);
        }

        .acc-panel {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: #fff;
        }

        .acc-content {
            padding: 30px;
            color: #5a6a7a;
            font-size: 1.1rem;
            line-height: 1.8;
            border-top: 1px solid var(--border-color);
        }

        /* =========================================
           8. SEO ANALYSIS TOOL SIMULATION
           =========================================
        */
        .tool-section {
            padding: 100px 0;
            background: var(--dark-color);
            color: var(--white);
            text-align: center;
        }

        .tool-section h2 { color: var(--white); margin-bottom: 40px; }

        .analysis-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 60px;
            border-radius: 30px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            max-width: 900px;
            margin: 0 auto;
        }

        .search-mock {
            display: flex;
            background: var(--white);
            border-radius: 50px;
            padding: 5px;
            margin-bottom: 30px;
        }

        .search-mock input {
            flex: 1;
            border: none;
            padding: 15px 25px;
            border-radius: 50px;
            font-family: inherit;
        }

        .search-mock button {
            background: var(--accent-color);
            border: none;
            color: white;
            padding: 10px 35px;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
        }

        /* =========================================
           9. RESPONSIVE DESIGN MEDIA QUERIES
           =========================================
        */
        @media (max-width: 991px) {
            .hero-grid { grid-template-columns: 1fr; text-align: center; }
            .hero-content p { margin: 0 auto 40px; }
            .hero-visual { order: -1; }
            .services-grid { grid-template-columns: 1fr; }
            .analysis-card { padding: 30px; }
        }

        @media (max-width: 576px) {
            .hero-content h1 { font-size: 2.2rem; }
            .stat-number { font-size: 2.2rem; }
            .btn-main { width: 100%; text-align: center; }
        }
        .process-section {
    background: var(--white);
    padding: 100px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-card {
    background: var(--light-bg);
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.step-number {
    font-size: 50px;
    font-weight: bold;
    color: var(--main-soft);
    position: absolute;
    top: 15px;
    left: 20px;
}

.process-card h4 {
    color: var(--main-color);
    margin-bottom: 15px;
}

.process-card p {
    color: #6c757d;
    font-size: 15px;
}
