
        /* Hero Section الجديد */
        .hero-section {
            position: relative;
            height: 600px;
            overflow: hidden;
        }
        
        /* تأثير رقائق الثلج في الخلفية */
        .snow-background {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            margin-top: -50px;
            opacity: 0.9;
        }
        
        .snowflake-bg {
            position: absolute;
            color: #B6B6B6;
            font-size: 50px;
            animation: fall-slow linear infinite;
        }
        
        @keyframes fall-slow {
            0% {
                transform: translateY(-100px) rotate(0deg);
                opacity: 0.5;
            }
            100% {
                transform: translateY(700px) rotate(360deg);
                opacity: 0.1;
            }
        }
        
        /* Container الرئيسي */
        .hero-container {
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
            height: 100%;
            display: flex;
            align-items: center;
            padding: 0 50px;
            z-index: 2;
        }
        
        /* النصوص على اليسار */
        .hero-content {
            flex: 1;
            padding-left: 50px;
        }
        
        .hero-title {
            font-size: 56px;
            font-weight: 700;
            color: #39414B;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero-company-name {
            color: #152C73;
            display: inline-block;
            border-bottom: 4px solid #39414B;
        }
        
        .hero-subtitle {
            font-size: 28px;
            color: #39414B;
            margin-bottom: 15px;
            font-weight: 500;
            min-height: 40px;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.5s forwards;
        }
        
        .hero-description {
            font-size: 18px;
            color: #39414B;
            line-height: 1.8;
            margin-bottom: 40px;
            max-width: 600px;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.7s forwards;
        }
        
        /* الأزرار */
        .hero-buttons {
            display: flex;
            gap: 20px;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.9s forwards;
        }
        
        .btn {
            padding: 15px 40px;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-primary {
            background: #152C73;
            color: white;
            box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(14, 165, 233, 0.4);
        }
        
        .btn-secondary {
            background: white;
            color: #152C73;
            border: 2px solid #152C73;
        }
        
        .btn-secondary:hover {
            background: #152C73;
            color: white;
            transform: translateY(-3px);
        }
        
        /* الصورة/المنتج على اليمين */
        .hero-image {
            flex: 1;
            position: relative;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .product-showcase {
            position: absolute;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .product-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        
        .product-slide.active {
            opacity: 1;
            transform: scale(1);
            z-index: 2;
        }
        
        .product-image-container {
            width: 450px;
            height: 400px;
            background: white;
            border-radius: 30px;
            box-shadow: 
                0 20px 60px rgba(0,0,0,0.15),
                0 0 0 1px rgba(14, 165, 233, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
            position: relative;
            overflow: hidden;
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        .product-image-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(14, 165, 233, 0.05), transparent);
            animation: shine 3s infinite;
        }
        
        @keyframes shine {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .product-image-container img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            position: relative;
            z-index: 1;
            filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
        }
        
        .product-label {
            margin-top: 30px;
            background: #152C73;
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 600;
            box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
            animation: pulse-label 2s ease-in-out infinite;
        }
        
        @keyframes pulse-label {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        /* مؤشرات التنقل */
        .hero-indicators {
            position: absolute;
            bottom: 40px;
            right: 50%;
            transform: translateX(50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }
        
        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #39414B;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .indicator.active {
            background: #152C73;
            width: 40px;
            border-radius: 10px;
            border-color: #152C73;
        }
        
        .indicator:hover {
            background: #152C73;
        }
        
        /* أزرار التنقل */
        .nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            z-index: 10;
            font-size: 24px;
            color: #152C73;
            user-select: none;
        }
        
        .nav-arrow:hover {
            background: #152C73;
            color: white;
            transform: translateY(-50%) scale(1.1);
        }
        
        .nav-arrow.prev {
            right: 30px;
        }
        
        .nav-arrow.next {
            left: 30px;
        }
        
        /* Typing Effect */
        .typing-text {
            border-left: 3px solid #152C73;
            padding-right: 5px;
            animation: blink 0.7s infinite;
        }
        
        @keyframes blink {
            0%, 100% { border-color: transparent; }
            50% { border-color: #152C73; }
        }
        
        /* Features Section */
        .features-strip {
            background: #1e3a8a;
            padding: 20px 0;
            margin-top: -2px;
        }
        
        .features-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 0 50px;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            gap: 15px;
            color: white;
        }
        
        .feature-icon {
            font-size: 40px;
            color: #0ea5e9;
        }
        
        .feature-text h3 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .feature-text p {
            font-size: 14px;
            opacity: 0.9;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .hero-container {
                flex-direction: column;
                padding: 50px 30px;
                text-align: center;
            }
            
            .hero-content {
                padding-left: 0;
                margin-bottom: 50px;
            }
            
            .hero-title {
                font-size: 42px;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .product-image-container {
                width: 350px;
                height: 300px;
            }
            
            .nav-arrow {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .hero-section {
                height: auto;
                min-height: 400px;
                padding: 40px 20px;
            }
            
            .hero-container {
                justify-content: center;
                align-items: center;
            }
            
            .hero-content {
                text-align: center;
                padding-left: 0;
                margin-bottom: 0;
                width: 100%;
            }
            
            .hero-title {
                font-size: 32px;
            }
            
            .hero-subtitle {
                font-size: 22px;
            }
            
            .hero-description {
                font-size: 18px;
                margin-bottom: 0;
            }
            
            .hero-buttons {
                display: none !important;
            }
            
            .hero-image {
                display: none !important;
            }
            
            .hero-indicators {
                display: none !important;
            }
            
            .features-container {
                flex-direction: column;
                gap: 30px;
            }
        }
