/* الأساسيات */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            padding-top: 80px; /* لمنع المحتوى من الاختفاء تحت النافبار الثابت */
        }
        /* أنماط شاشة التحميل */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #910292, #890289);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.loading-logo-icon {
    width: 60px;
    height: 60px;
    background: white;
    color: #910292;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    font-weight: bold;
    margin-left: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.loading-logo-text {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
}

.loading-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.progress-bar {
    width: 300px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    margin: 0 auto 20px;
    overflow: hidden;
}

.progress {
    width: 0%;
    height: 100%;
    background: white;
    border-radius: 3px;
    animation: progressAnimation 3s ease-in-out forwards;
}

.loading-message {
    font-size: 1.1rem;
    opacity: 0.9;
    animation: fadeInOut 1.5s ease-in-out infinite;
}

@keyframes progressAnimation {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* إخفاء المحتوى الرئيسي أثناء التحميل */
body.loading .navbar,
body.loading .about-section,
body.loading .services-section,
body.loading .about-company-section,
body.loading .footer {
    opacity: 0;
    visibility: hidden;
}

body.loaded .navbar,
body.loaded .about-section,
body.loaded .services-section,
body.loaded .about-company-section,
body.loaded .footer {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease;
}
        /* شريط التنقل */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            background-color: white;
            box-shadow: 0 2px 20px rgba(138, 43, 226, 0.15);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        /* الشعار */
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            z-index: 1001;
        }
        
        .logo-icon {
            width: 42px;
            height: 42px;
            background: linear-gradient(135deg, #910292, #850285);
            color: white;
            border-radius: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 22px;
            font-weight: bold;
            margin-left: 10px;
            transition: transform 0.3s ease;
            box-shadow: 0 4px 8px #910292;
        }
        
        .logo:hover .logo-icon {
            transform: rotate(15deg);
        }
        
        .logo-text {
            font-size: 1.6rem;
            font-weight: 800;
            background: linear-gradient(135deg, #910292, #840284);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* قائمة التنقل */
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            padding: 0 12px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: #555;
            font-weight: 600;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 8px 5px;
        }
        
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: 0;
            right: 0;
            background: linear-gradient(90deg, #910292, #870287);
            border-radius: 2px;
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover {
            color: #910292;
        }
        
        .nav-links a:hover:after {
            width: 100%;
        }
        
        /* أزرار التنقل */
        .nav-buttons {
            
            display: flex;
            align-items: center;
        }
        
        .btn {
            text-decoration: none; 
            padding: 0.7rem 1.4rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-left: 12px;
            font-size: 0.95rem;
        }
        
        .btn-login {
            background-color: transparent;
            border: 2px solid #910292;
            color: #910292;
        }
        
        .btn-login:hover {
            background-color: #910292;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(138, 43, 226, 0.25);
        }
        
        .btn-register {
            background: linear-gradient(135deg, #910292, #880288);
            border: none;
            color: white;
            box-shadow: 0 4px 10px #910292;
        }
        
        .btn-register:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px #910292;
        }
        
        /* قائمة الهاتف */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            width: 30px;
            height: 24px;
            position: relative;
            z-index: 1001;
        }
        
        .hamburger span {
            width: 100%;
            height: 3px;
            background: linear-gradient(135deg, #910292, #880288);
            margin: 3px 0;
            border-radius: 3px;
            transition: all 0.3s ease;
            transform-origin: center;
        }
        
        /* القائمة الجانبية للجوال */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: linear-gradient(to bottom, #ffffff, #f8f5ff);
            box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
            z-index: 999;
            padding: 90px 25px 30px;
            transition: right 0.4s ease;
            overflow-y: auto;
        }
        
        .mobile-menu.active {
            right: 0;
        }
        
        .mobile-nav-links {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .mobile-nav-links li {
            margin-bottom: 15px;
        }
        
        .mobile-nav-links a {
            display: block;
            text-decoration: none;
            color: #555;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 12px 15px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .mobile-nav-links a:hover {
            background-color: rgba(138, 43, 226, 0.1);
            color: #910292;
            transform: translateX(-5px);
        }
        
        .mobile-buttons {
            display: flex;
            flex-direction: column;
        }
        
        .mobile-buttons .btn {
            margin: 8px 0;
            text-align: center;
            width: 100%;
        }
        
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* قسم من نحن */
        .about-section {
            padding: 80px 5%;
            background: linear-gradient(to bottom, #ffffff, #f8f5ff);
        }
        
        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        
        .about-content {
            flex: 1;
            min-width: 300px;
            padding: 20px;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            padding: 20px;
            position: relative;
        }
        
       
        
        .about-text {
            color: #555;
            line-height: 1.8;
            font-size: 1.1rem;
            margin-bottom: 25px;
        }
        
        .features {
            display: flex;
            flex-wrap: wrap;
            margin: 30px 0;
        }
        
        .feature {
            display: flex;
            align-items: center;
            width: 50%;
            margin-bottom: 20px;
        }
        
        .feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #910292, #8a028a);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            margin-left: 15px;
            box-shadow: 0 4px 10px rgba(138, 43, 226, 0.3);
        }
        
        .feature-text {
            font-weight: 600;
            color: #555;
        }
        
        
        
        /* صورة متحركة */
        .animated-image {
            position: relative;
            width: 100%;
            height: 400px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            background: linear-gradient(135deg, #910292, #810281);
        }
        
        .shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
        }
        
        .shape-1 {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation: float 8s ease-in-out infinite;
        }
        
        .shape-2 {
            width: 120px;
            height: 120px;
            bottom: 15%;
            right: 10%;
            animation: float 10s ease-in-out infinite;
        }
        
        .shape-3 {
            width: 60px;
            height: 60px;
            top: 50%;
            right: 20%;
            animation: float 7s ease-in-out infinite;
        }
        
        .main-object {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 200px;
            height: 200px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: pulse 4s ease-in-out infinite;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        
        .main-object:before {
            content: 'E';
            font-size: 80px;
            font-weight: 800;
            background: linear-gradient(135deg, #910292, #860286);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        /* قسم الخدمات */
        .services-section {
            padding: 100px 5%;
            background: linear-gradient(to bottom, #ffffff, #f8f5ff);
        }
        
        .services-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        
        .services-content {
            flex: 1;
            min-width: 300px;
            padding: 20px;
        }
        
        .services-image {
            flex: 1;
            min-width: 300px;
            padding: 20px;
            position: relative;
        }
        

        .section-text {
            color: #555;
            line-height: 1.8;
            font-size: 1.1rem;
            margin-bottom: 40px;
            max-width: 500px;
        }
        
        /* صورة كرتونية متحركة */
        .cartoon-image {
            position: relative;
            width: 100%;
            height: 400px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            background: linear-gradient(135deg, #f8f5ff, #e6d6ff);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .cartoon-element {
            position: absolute;
            transition: all 0.5s ease;
        }
        
        .cartoon-server {
            width: 120px;
            height: 160px;
            background: linear-gradient(135deg, #910292, #8a028a);
            border-radius: 10px;
            bottom: 50px;
            left: 50px;
            animation: float 6s ease-in-out infinite;
            box-shadow: 0 10px 20px #910292;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 40px;
        }
        
        .cartoon-laptop {
            width: 140px;
            height: 100px;
            background: white;
            border-radius: 10px;
            top: 60px;
            right: 60px;
            animation: float 7s ease-in-out infinite;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #910292;
            font-size: 30px;
        }
        
        .cartoon-chart {
            width: 100px;
            height: 100px;
            background: white;
            border-radius: 50%;
            top: 180px;
            left: 80px;
            animation: pulse 4s ease-in-out infinite;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #910292;
            font-size: 30px;
        }
        
        .cartoon-phone {
            width: 60px;
            height: 100px;
            background: linear-gradient(135deg, #910292, #870287);
            border-radius: 10px;
            bottom: 80px;
            right: 100px;
            animation: float 5s ease-in-out infinite;
            box-shadow: 0 10px 20px #910292;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
        }
        
        .cartoon-cloud {
            width: 80px;
            height: 50px;
            background: white;
            border-radius: 40px;
            top: 50px;
            left: 100px;
            animation: float 8s ease-in-out infinite;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #910292;
            font-size: 20px;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }
        
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }
        
        /* شبكة التطبيقات */
        .apps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 60px;
        }
        
        .app-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            text-align: center;
            padding: 20px 15px;
            position: relative;
            z-index: 1;
        }
        
        .app-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px #910292;
        }
        
        .app-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(135deg, #910292, #850285);
            opacity: 0.05;
            transition: all 0.5s ease;
            z-index: -1;
        }
        
        .app-card:hover:before {
            height: 100%;
        }
        
        .app-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #910292, #860286);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            margin: 0 auto 15px;
            box-shadow: 0 5px 15px rgba(138, 43, 226, 0.2);
        }
        
        .app-title {
            font-size: 1rem;
            color: #910292;
            font-weight: 600;
        }
        
        /* زر الانتقال */
        .cta-container {
            text-align: center;
            margin-top: 60px;
        }
        
        
        /* قسم عن الشركة */
        .about-company-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f9f7ff 0%, #f1ebff 100%);
            position: relative;
            overflow: hidden;
        }
        
        .about-company-section::before {
            content: '';
            position: absolute;
            top: -100px;
            left: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(138, 43, 226, 0.1) 0%, rgba(106, 13, 173, 0.05) 100%);
        }
        
        .about-company-section::after {
            content: '';
            position: absolute;
            bottom: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(138, 43, 226, 0.1) 0%, rgba(106, 13, 173, 0.05) 100%);
            z-index: 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 2;
        }
        
    
        
        .section-subtitle {
            color: #6c757d;
            line-height: 1.8;
            font-size: 1.3rem;
            max-width: 800px;
            margin: 30px auto 0;
            font-weight: 500;
        }
        
        /* محتوى عن الشركة */
        .about-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            position: relative;
            z-index: 2;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
        }
        
        .about-text p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            color: #555;
            line-height: 1.8;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            position: relative;
        }
        
        .company-image {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: transform 0.5s ease;
        }
        
        .company-image:hover {
            transform: scale(1.02);
        }
        
        /* البطاقات الإحصائية */
        .stats-cards {
            
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            margin: 60px 0;
        }
        
        .stat-card {
            background: white;
            border-radius: 15px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(135deg, #910292, #8a028a);
            opacity: 0.05;
            transition: all 0.5s ease;
            z-index: 0;
        }
        
        .stat-card:hover::before {
            height: 100%;
        }
        
        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(138, 43, 226, 0.1);
        }
        
        .stat-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #910292, #830183);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 28px;
            box-shadow: 0 5px 15px #910292;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #910292;
            margin-bottom: 10px;
        }
        
        .stat-text {
            color: #777;
            font-weight: 600;
        }
        
        /* قيم الشركة */
        .values-section {
            margin-left: 30px;
            margin-right: 30px;
            background: white;
            padding: 80px 0;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            margin-top: 40px;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .value-card {            
            text-align: center;
            padding: 40px 30px;
            border-radius: 15px;
            background: linear-gradient(135deg, #f8f5ff, #e6d6ff);
            transition: all 0.3s ease;
        }
        
        .value-card:hover {
            color: white;
            transform: translateY(-5px);
        }
        
        .value-card:hover .value-icon {
            background: #910292;
            color: white;
        }
        
        .value-card:hover h3,
        .value-card:hover p {
            color: black;
        }
        
        .value-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #910292, #820282);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 32px;
            transition: all 0.3s ease;
        }
        
        .value-card h3 {
            font-size: 1.5rem;
            color: #910292;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }
        
        .value-card p {
            color: #777;
            transition: all 0.3s ease;
        }
        
        /* فريق العمل */
        .team-section {
            padding: 80px 0;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .team-member {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px #910292;
        }
        
        .member-image {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, #910292, #860286);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 80px;
        }
        
        .member-info {
            padding: 25px;
        }
        
        .member-name {
            font-size: 1.4rem;
            color: #910292;
            margin-bottom: 5px;
        }
        
        .member-role {
            color: #910292;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .member-desc {
            color: #777;
            line-height: 1.6;
        }
               
        .section-title {
            font-size: 2.5rem;
            color: #910292;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            font-weight: 800;
            text-shadow: 0 2px 10px #92029297;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 50%;
            transform: translateX(50%);
            width: 80px;
            height: 4px;
            border-radius: 2px;
        }
        
        /* قسم تواصل معنا الجديد */
.contact-section2 {
    padding: 80px 0;
    margin: 40px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-container2 {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-title2 {
    font-size: 2rem;
    font-weight: bold;
    color: #910292;
    margin-bottom: 10px;
}

.contact-sub2 {
    color: #777;
    margin-bottom: 40px;
}

.contact-form2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group2 input,
.form-group2 textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e4d4fb;
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    background: #faf8ff;
    transition: 0.3s;
}

.form-group2 input:focus,
.form-group2 textarea:focus {
    border-color: #910292;
    background: #fff;
}

.send-btn2 {
    padding: 15px;
    background: #910292;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s;
}

.send-btn2:hover {
    background: #750075;
    transform: translateY(-3px);
}

/* التجاوب */
@media (max-width: 576px) {
    .contact-section2 {
        margin: 20px;
        padding: 60px 20px;
    }

    .contact-title2 {
        font-size: 1.7rem;
    }
}

        /* زر استطلاع الآراء في الفوتر */
.feedback-button-container {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feedback-btn {
    display: inline-flex;
    align-items: center;
    background: #910292;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.feedback-btn i {
    margin-left: 10px;
}

.feedback-btn:hover {
    background: #910292;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px #910292;
}
/* زر واتساب */
.whatsapp-btn {
    text-decoration: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
}

.whatsapp-btn.show {
    opacity: 1;
    visibility: visible;
}

.whatsapp-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: #128C7E;
}

/* تعديل موقع زر الانتقال إلى الأعلى ليتناسب مع وجود زر واتساب */
.scroll-to-top {
    left: 90px; /* تعديل الموقع ليكون بجانب زر واتساب */
}
/* أنيميشنات إضافية */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes wave {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(14deg); }
    20% { transform: rotate(-8deg); }
    30% { transform: rotate(14deg); }
    40% { transform: rotate(-4deg); }
    50% { transform: rotate(10deg); }
    60% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}

/* تأثيرات الظهور التدريجي */
.fade-in-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/* تأثيرات التموج للأزرار */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* تأثيرات التتبع للماوس */
.mouse-follow {
    position: relative;
    overflow: hidden;
}

.mouse-follow-effect {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.2) 0%, rgba(138, 43, 226, 0) 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.mouse-follow:hover .mouse-follow-effect {
    opacity: 1;
}

/* تحسينات للأنيميشنات الحالية */
.animated-image .shape {
    animation: float 8s ease-in-out infinite;
}

.animated-image .shape-1 {
    animation-delay: 0s;
}

.animated-image .shape-2 {
    animation-delay: 1.5s;
}

.animated-image .shape-3 {
    animation-delay: 3s;
}

.cartoon-element {
    animation: float 6s ease-in-out infinite;
}

.cartoon-server {
    animation-delay: 0s;
}

.cartoon-laptop {
    animation-delay: 1s;
}

.cartoon-chart {
    animation-delay: 2s;
}

.cartoon-phone {
    animation-delay: 3s;
}

.cartoon-cloud {
    animation-delay: 4s;
}

/* تأثيرات للخلفية */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.background-particle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1) 0%, rgba(106, 13, 173, 0.05) 100%);
    animation: float-particle 15s infinite linear;
}

@keyframes float-particle {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* تحسين شاشة التحميل */
.loading-screen {
    animation: fadeOut 0.5s ease forwards;
    animation-delay: 3s;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

.progress {
    animation: progressAnimation 3s ease-in-out forwards;
}

/* تأثيرات النص */
.text-gradient {
    background: linear-gradient(135deg, #910292, #910292, #910292);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .scroll-to-top {
        left: 70px;
        bottom: 20px;
    }
}
/* زر الانتقال إلى الأعلى */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #910292, #810281);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 15px #92029272;
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px #92029278;
}
        /* وسائل التواصل الاجتماعي */
        
         .social-mediaa {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }
        .social-iconn {
            text-decoration: none; 
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #910292, #910292);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(138, 43, 226, 0.2);
        }
        
        .social-iconn:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(138, 43, 226, 0.3);
        }
        .social-media {
    display: flex;
    justify-content: flex-start; /* أقصى اليسار */
    align-items: center;
    gap: 15px;
    width: 100%;
}


        .social-icon {
            text-decoration: none; 
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #910292, #850285);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6A0DAD;
            font-size: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(138, 43, 226, 0.2);
        }
        
        .social-icon:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(138, 43, 226, 0.3);
        }
        
        /* معلومات الاتصال */
        .contact-info {
            text-align: center;
            margin-top: 30px;
            color: #292525;
        }
        
        .info-item {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .info-icon {
            color: #910292;
        }
                /* التذييل (Footer) */
        .footer {
            background: linear-gradient(135deg, #910292, #860286);
            color: white;
            padding: 60px 0 20px;
            margin-top: auto;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .footer-logo-icon {
            width: 42px;
            height: 42px;
            background: white;
            color: #910292;
            border-radius: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 22px;
            font-weight: bold;
            margin-left: 10px;
        }
        
        .footer-logo-text {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
        }
        
        .footer-description {
            margin-bottom: 25px;
            line-height: 1.8;
            opacity: 0.9;
        }
        
        .footer-title {
            font-size: 1.4rem;
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 0;
            width: 40px;
            height: 3px;
            background: white;
            border-radius: 2px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 15px;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
            opacity: 0.9;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }
        
        .footer-links a:hover {
            opacity: 1;
            transform: translateX(-5px);
        }
        
        .footer-links i {
            margin-left: 10px;
            font-size: 14px;
        }
        
        .contact-info {
            list-style: none;
        }
        
        .contact-info li {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-info i {
            margin-left: 15px;
            margin-top: 5px;
            font-size: 18px;
        }
        
        .contact-info span {
            opacity: 0.9;
            line-height: 1.6;
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background: white;
            color: #910292;
            transform: translateY(-5px);
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }
        
        .newsletter-input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
        }
        
        .newsletter-btn {
            padding: 0 20px;
            background: white;
            color: #910292;
            border: none;
            border-radius: 0 5px 5px 0;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .newsletter-btn:hover {
            background: #f1f1f1;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            text-align: center;
        }
        
        .copyright {
            opacity: 0.8;
            margin-bottom: 10px;
        }
        
        .footer-bottom-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }
        
        .footer-bottom-links a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }
        
        .footer-bottom-links a:hover {
            opacity: 1;
        }
   .nav-buttonss {
  display: flex;
  gap: 12px; /* مسافة بين الرقمين */
  padding: 6px 12px;
  background: #910292; /* لون خلفية */
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: #fff;
  box-shadow: 0 2px 6px #910292;
  font-family: 'Arial', sans-serif;
}

.nav-buttonss p {
  margin: 0;
}

/* الروابط */
.nav-buttonss a {
  color: #fff;
  text-decoration: none; /* بدون خط */
  transition: transform 0.2s, color 0.2s;
  display: inline-block;
}

.nav-buttonss a:hover {
  transform: scale(1.05);
}
.cta-button-container {
    display: flex;
    justify-content: center;
    margin: 40px 0;
    padding: 0 15px;
}

.cta-button {
    background: linear-gradient(135deg, #910292 0%, #880388 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(139, 95, 191, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    border: 2px solid white;
    width: 100%;
    max-width: 700px;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 95, 191, 0.4);
    background: linear-gradient(135deg, #910292 0%, #7b027b 100%);
}

.cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 95, 191, 0.4);
}

/* تحسينات للجوال */
@media (max-width: 768px) {
    .cta-button-container {
        margin: 30px 0;
        padding: 0 10px;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 16px;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .cta-button-container {
        margin: 25px 0;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 15px;
        max-width: 260px;
        border-width: 1px;
    }
}

/* تحسينات للشاشات الكبيرة */
@media (min-width: 1200px) {
    .cta-button {
        padding: 18px 36px;
        font-size: 20px;
        max-width: 350px;
    }
}
  @media (max-width: 768px) {
    .section-title {
        display: block;         
        text-align: center;     
        margin-left: auto;      
        margin-right: auto;
    }

    .section-title:after {
        left: 50%;              
        transform: translateX(-50%); 
        bottom: -6px;              
        right: auto; /* مهم لتعطيل الـ right */
    }
}


        /* التجاوب مع الشاشات الصغيرة */
        @media (max-width: 992px) {
            .footer-content {
                gap: 30px;
            }
            
            .footer-column {
                flex: 100%;
            }
        }
        
        @media (max-width: 768px) {
            .footer {
                padding: 40px 0 20px;
            }
            
            .footer-title {
                font-size: 1.2rem;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-input {
                border-radius: 5px;
                margin-bottom: 10px;
            }
            
            .newsletter-btn {
                border-radius: 5px;
                padding: 12px;
            }
        }
        
        @media (max-width: 576px) {
            .footer-logo-text {
                font-size: 1.5rem;
            }
            
            .footer-bottom-links {
                flex-direction: column;
                gap: 10px;
            }
            .social-media{
                margin-left: 300px;
            }
        }
        /* التجاوب مع الشاشات الصغيرة */
        @media (max-width: 768px) {
           
            
            .section-subtitle {
                font-size: 1rem;
            }
            
            .contact-form {
                padding: 30px 20px;
            }
            
            .form-title {
                font-size: 1.4rem;
            }
        }
        
        @media (max-width: 576px) {
            .contact-section {
                padding: 40px 0;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .section-header {
                margin-bottom: 30px;
            }
            
            .social-icon {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
            .social-media{
                margin-left: 300px;
            }
        }
        /* التجاوب مع الشاشات الصغيرة */
        @media (max-width: 992px) {
            .stats-cards {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .values-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .social-media{
                margin-left: 580px;
            }
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 2.2rem;
            }
            
            .section-subtitle {
                font-size: 1.1rem;
            }
            
            .stats-cards {
                grid-template-columns: 1fr;
            }
            
            .values-grid {
                grid-template-columns: 1fr;
            }
            
            .team-grid {
                grid-template-columns: 1fr;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .stat-number {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .about-company-section {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .section-header {
                margin-bottom: 50px;
            }
        }
       /* التجاوب مع الشاشات الصغيرة */
@media (max-width: 1200px) {
    .apps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .services-container {
        flex-direction: column;
    }
    
    .services-header {
        order: 1;
        width: 100%;
        margin-bottom: 30px;
    }
    
    .services-content {
        order: 2;
        width: 100%;
        margin-bottom: 30px;
    }
    
    .services-image {
        order: 3;
        width: 100%;
        margin-bottom: 40px;
    }
    
    .section-text {
        max-width: 100%;
    }
    
    .cartoon-image {
        height: 300px;
    }
    
    .nav-links, .nav-buttons {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .about-container {
        flex-direction: column;
    }
    
    .about-content {
        order: 2;
    }
    
    .about-image {
        order: 1;
        margin-bottom: 40px;
    }
    
    .feature {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .apps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cartoon-server {
        width: 100px;
        height: 140px;
        left: 30px;
        font-size: 30px;
    }
    
    .cartoon-laptop {
        width: 120px;
        height: 80px;
        right: 40px;
        font-size: 25px;
    }
    
    .cartoon-chart {
        width: 80px;
        height: 80px;
        left: 60px;
        font-size: 25px;
    }
    
    .cartoon-phone {
        width: 50px;
        height: 80px;
        right: 70px;
        font-size: 18px;
    }
    
    .cartoon-cloud {
        width: 60px;
        height: 40px;
        left: 70px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 80px 4%;
    }
    
    .apps-grid {
        grid-template-columns: 1fr;
    }
    
    .cartoon-image {
        height: 250px;
    }
    
    .cartoon-server {
        width: 80px;
        height: 120px;
        left: 20px;
        bottom: 40px;
        font-size: 25px;
    }
    
    .cartoon-laptop {
        width: 100px;
        height: 70px;
        right: 30px;
        top: 40px;
        font-size: 20px;
    }
    
    .cartoon-chart {
        width: 70px;
        height: 70px;
        left: 40px;
        top: 150px;
        font-size: 20px;
    }
    
    .cartoon-phone {
        width: 40px;
        height: 70px;
        right: 50px;
        bottom: 60px;
        font-size: 16px;
    }
    
    .cartoon-cloud {
        width: 50px;
        height: 30px;
        left: 50px;
        top: 30px;
        font-size: 14px;
    }
    
    .navbar {
        padding: 1rem 4%;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .logo-icon {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }
    
    .animated-image {
        height: 300px;
    }
    
    .main-object {
        width: 150px;
        height: 150px;
    }
    
    .main-object:before {
        font-size: 60px;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}
        
        /* التجاوب مع الشاشات الصغيرة */
        @media (max-width: 992px) {
            .nav-links, .nav-buttons {
                display: none;
            }
            
            .hamburger {
                display: flex;
            }
            
            .about-container {
                flex-direction: column;
            }
            
            .about-content {
                order: 2;
            }
            
            .about-image {
                order: 1;
                margin-bottom: 40px;
            }
            
            .feature {
                width: 100%;
            }
        }
        
        @media (max-width: 576px) {
            .navbar {
                padding: 1rem 4%;
            }
            
            .logo-text {
                font-size: 1.4rem;
            }
            
            .logo-icon {
                width: 38px;
                height: 38px;
                font-size: 20px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .animated-image {
                height: 300px;
            }
            
            .main-object {
                width: 150px;
                height: 150px;
            }
            
            .main-object:before {
                font-size: 60px;
            }
        }
