
        /* ========================= */
        /* HERO SECTION احترافي */
        /* ========================= */
        .hero-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
            padding: 2rem;
        }

        /* خلفية متحركة (جسيمات) */
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .hero-bg .gradient-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.4;
            animation: float 20s infinite ease-in-out;
        }

        .orb-1 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, #3b82f6, #8b5cf6);
            top: -100px;
            right: -100px;
            animation-delay: 0s;
        }

        .orb-2 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, #8b5cf6, #ec4899);
            bottom: -150px;
            left: -150px;
            animation-delay: -5s;
        }

        .orb-3 {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, #06b6d4, #3b82f6);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: -10s;
            opacity: 0.2;
        }

        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(30px, -30px) scale(1.05);
            }
            66% {
                transform: translate(-20px, 20px) scale(0.95);
            }
        }

        /* حاوية المحتوى */
        .hero-container {
            position: relative;
            z-index: 10;
            max-width: 1300px;
            width: 100%;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        /* شارة صغيرة */
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 100px;
            padding: 0.6rem 1.5rem;
            margin-bottom: 2rem;
            font-size: 0.85rem;
            font-weight: 500;
            color: #94a3b8;
            animation: fadeInUp 0.8s ease;
        }

        .hero-badge i {
            color: #3b82f6;
            font-size: 1rem;
        }

        .hero-badge span {
            color: #60a5fa;
            font-weight: 700;
        }

        /* العنوان الرئيسي */
        .hero-title {
            font-size: clamp(2.2rem, 6vw, 4.8rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease 0.1s both;
        }

        .hero-title .gradient-text {
            background: linear-gradient(135deg, #60a5fa, #a78bfa, #f472b6);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            display: inline-block;
        }

        .hero-title .block {
            display: block;
            color: var(--woow1);
        }

        /* الوصف */
        .hero-description {
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            color: #cbd5e1;
            max-width: 700px;
            margin: 0 auto 2rem auto;
            line-height: 1.7;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        /* أزرار */
        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 3rem;
            animation: fadeInUp 0.8s ease 0.3s both;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.9rem 2rem;
            border-radius: 60px;
            font-weight: 600;
            font-size: 1rem;
            font-family: 'Cairo', sans-serif;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            text-decoration: none;
            border: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            color: white;
            box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.2);
            color: #e2e8f0;
        }

        .btn-outline:hover {
            border-color: #3b82f6;
            background: rgba(59, 130, 246, 0.1);
            transform: translateY(-3px);
        }

        /* إحصائيات */
        .hero-stats {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2.5rem;
            margin-top: 1rem;
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: clamp(1.5rem, 4vw, 2.2rem);
            font-weight: 800;
            background: linear-gradient(135deg, #fff, #94a3b8);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .stat-label {
            font-size: 0.85rem;
            color: #64748b;
            margin-top: 0.3rem;
        }

        /* شريط التمرير للأسفل */
        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
            z-index: 10;
            animation: bounce 2s infinite;
        }

        .scroll-indicator span {
            font-size: 0.7rem;
            color: #64748b;
            letter-spacing: 2px;
        }

        .scroll-indicator i {
            color: #3b82f6;
            font-size: 1.2rem;
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            50% {
                transform: translateX(-50%) translateY(8px);
            }
        }

        /* تأثيرات الظهور */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

      

        /* استجابة للأجهزة المختلفة */
        @media (max-width: 768px) {
            .hero-section {
                padding: 4rem 1.5rem;
                min-height: 90vh;
            }
            
            .hero-buttons {
                flex-direction: column;
                width: 100%;
                max-width: 280px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .btn {
                justify-content: center;
                width: 100%;
            }
            
            .hero-stats {
                gap: 1.5rem;
            }
            
            .orb-1 {
                width: 250px;
                height: 250px;
            }
            
            .orb-2 {
                width: 300px;
                height: 300px;
            }
        }

        @media (max-width: 480px) {
            .hero-stats {
                gap: 1rem;
                flex-wrap: wrap;
            }
            
            .stat-item {
                flex: 1;
                min-width: 80px;
            }
            
            .hero-badge {
                font-size: 0.7rem;
                padding: 0.4rem 1rem;
            }
        }

        /* دعم الشاشات الكبيرة */
        @media (min-width: 1400px) {
            .hero-title {
                font-size: 5rem;
            }
            
            .hero-description {
                font-size: 1.3rem;
            }
        }