/* الأساسيات */
        * {
            margin: 0 , 0 , 0 , 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 {
    background: linear-gradient(to bottom, #ffffff, #f8f5ff);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .about-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.about-content {
    flex: 1;
    width: 100%;
    padding: 20px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .about-content {
        min-width: 300px;
        margin-bottom: 0;
    }
}

.about-image {
    flex: 1;
    width: 100%;
    padding: 20px;
    position: relative;
}

@media (min-width: 768px) {
    .about-image {
        min-width: 300px;
    }
}

.about-text {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 25px;
}

@media (min-width: 768px) {
    .about-text {
        line-height: 1.8;
        font-size: 1.1rem;
    }
}

.features {
    display: flex;
    flex-wrap: wrap;
    margin: 30px 0;
    justify-content: space-between;
}

.feature {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

@media (min-width: 480px) {
    .feature {
        width: 48%;
    }
}

@media (min-width: 992px) {
    .feature {
        width: 50%;
    }
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #910292, #8a028a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    margin-left: 15px;
    box-shadow: 0 4px 10px rgba(138, 43, 226, 0.3);
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

.feature-text {
    font-weight: 600;
    color: #555;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .feature-text {
        font-size: 1rem;
    }
}

/* صورة متحركة */
.animated-image {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #910292, #810281);
    margin: 0 auto;
}

@media (min-width: 768px) {
    .animated-image {
        height: 350px;
    }
}

@media (min-width: 992px) {
    .animated-image {
        height: 400px;
    }
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.shape-1 {
    width: 50px;
    height: 50px;
    top: 15%;
    left: 10%;
    animation: float 8s ease-in-out infinite;
}

@media (min-width: 768px) {
    .shape-1 {
        width: 80px;
        height: 80px;
    }
}

.shape-2 {
    width: 80px;
    height: 80px;
    bottom: 10%;
    right: 10%;
    animation: float 10s ease-in-out infinite;
}

@media (min-width: 768px) {
    .shape-2 {
        width: 120px;
        height: 120px;
    }
}

.shape-3 {
    width: 40px;
    height: 40px;
    top: 50%;
    right: 15%;
    animation: float 7s ease-in-out infinite;
}

@media (min-width: 768px) {
    .shape-3 {
        width: 60px;
        height: 60px;
    }
}

.main-object {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    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);
}

@media (min-width: 768px) {
    .main-object {
        width: 180px;
        height: 180px;
    }
}

@media (min-width: 992px) {
    .main-object {
        width: 200px;
        height: 200px;
    }
}

.main-object:before {
    content: 'E';
    font-size: 60px;
    font-weight: 800;
    background: linear-gradient(135deg, #910292, #860286);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 768px) {
    .main-object:before {
        font-size: 70px;
    }
}

@media (min-width: 992px) {
    .main-object:before {
        font-size: 80px;
    }
}

/* قسم الخدمات */
.services-section {
    padding: 60px 5%;
    background: linear-gradient(to bottom, #ffffff, #f8f5ff);
}

@media (min-width: 768px) {
    .services-section {
        padding: 100px 5%;
    }
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 992px) {
    .services-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.services-header {
    width: 100%;
    margin-bottom: 40px;
}

@media (min-width: 992px) {
    .services-header {
        margin-bottom: 0;
    }
}

.services-content {
    flex: 1;
    width: 100%;
    padding: 20px;
}

@media (min-width: 992px) {
    .services-content {
        min-width: 300px;
        order: 2;
    }
}

.services-image {
    flex: 1;
    width: 100%;
    padding: 20px;
    position: relative;
    margin-bottom: 40px;
}

@media (min-width: 992px) {
    .services-image {
        min-width: 300px;
        order: 1;
        margin-bottom: 0;
    }
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.2rem;
        text-align: left;
    }
}

.section-text {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 40px;
    max-width: 100%;
    text-align: center;
}

@media (min-width: 768px) {
    .section-text {
        line-height: 1.8;
        font-size: 1.1rem;
        max-width: 500px;
        text-align: left;
    }
}

/* صورة كرتونية متحركة */
.cartoon-image {
    position: relative;
    width: 100%;
    height: 300px;
    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;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .cartoon-image {
        height: 350px;
    }
}

@media (min-width: 992px) {
    .cartoon-image {
        height: 400px;
    }
}

.cartoon-element {
    position: absolute;
    transition: all 0.5s ease;
}

.cartoon-server {
    width: 80px;
    height: 120px;
    background: linear-gradient(135deg, #910292, #8a028a);
    border-radius: 8px;
    bottom: 30px;
    left: 20px;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 10px 20px rgba(145, 2, 146, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
}

@media (min-width: 768px) {
    .cartoon-server {
        width: 100px;
        height: 140px;
        bottom: 40px;
        left: 40px;
        font-size: 35px;
    }
}

@media (min-width: 992px) {
    .cartoon-server {
        width: 120px;
        height: 160px;
        bottom: 50px;
        left: 50px;
        font-size: 40px;
    }
}

.cartoon-laptop {
    width: 100px;
    height: 70px;
    background: white;
    border-radius: 8px;
    top: 40px;
    right: 40px;
    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: 25px;
}

@media (min-width: 768px) {
    .cartoon-laptop {
        width: 120px;
        height: 85px;
        top: 50px;
        right: 50px;
        font-size: 28px;
    }
}

@media (min-width: 992px) {
    .cartoon-laptop {
        width: 140px;
        height: 100px;
        top: 60px;
        right: 60px;
        font-size: 30px;
    }
}

.cartoon-chart {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    top: 120px;
    left: 40px;
    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: 25px;
}

@media (min-width: 768px) {
    .cartoon-chart {
        width: 85px;
        height: 85px;
        top: 150px;
        left: 60px;
        font-size: 28px;
    }
}

@media (min-width: 992px) {
    .cartoon-chart {
        width: 100px;
        height: 100px;
        top: 180px;
        left: 80px;
        font-size: 30px;
    }
}

.cartoon-phone {
    width: 40px;
    height: 70px;
    background: linear-gradient(135deg, #910292, #870287);
    border-radius: 8px;
    bottom: 50px;
    right: 60px;
    animation: float 5s ease-in-out infinite;
    box-shadow: 0 10px 20px rgba(145, 2, 146, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

@media (min-width: 768px) {
    .cartoon-phone {
        width: 50px;
        height: 85px;
        bottom: 60px;
        right: 80px;
        font-size: 20px;
    }
}

@media (min-width: 992px) {
    .cartoon-phone {
        width: 60px;
        height: 100px;
        bottom: 80px;
        right: 100px;
        font-size: 20px;
    }
}

.cartoon-cloud {
    width: 60px;
    height: 40px;
    background: white;
    border-radius: 30px;
    top: 30px;
    left: 60px;
    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: 18px;
}

@media (min-width: 768px) {
    .cartoon-cloud {
        width: 70px;
        height: 45px;
        top: 40px;
        left: 80px;
        font-size: 20px;
    }
}

@media (min-width: 992px) {
    .cartoon-cloud {
        width: 80px;
        height: 50px;
        top: 50px;
        left: 100px;
        font-size: 20px;
    }
}

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

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

/* شبكة التطبيقات */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 40px;
}

@media (min-width: 576px) {
    .apps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (min-width: 768px) {
    .apps-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-top: 60px;
    }
}

.app-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    padding: 15px 10px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .app-card {
        padding: 20px 15px;
        border-radius: 12px;
    }
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(145, 2, 146, 0.2);
}

.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: 50px;
    height: 50px;
    background: linear-gradient(135deg, #910292, #860286);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin: 0 auto 12px;
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.2);
}

@media (min-width: 768px) {
    .app-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        border-radius: 15px;
        margin-bottom: 15px;
    }
}

.app-title {
    font-size: 0.85rem;
    color: #910292;
    font-weight: 600;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .app-title {
        font-size: 1rem;
    }
}

/* زر الانتقال */
.cta-button-container {
    text-align: center;
    margin-top: 40px;
    width: 100%;
}

@media (min-width: 768px) {
    .cta-button-container {
        margin-top: 60px;
    }
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #910292, #860286);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(145, 2, 146, 0.3);
    border: none;
    cursor: pointer;
    text-align: center;
}

@media (min-width: 768px) {
    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(145, 2, 146, 0.4);
}

     
        /* قسم عن الشركة */
        .about-company-section {
            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;
    padding: 0 20px; /* إضافة حواف من الجانبين */
    margin: 0 auto; /* توسيط المحتوى */
    max-width: 1200px; /* تحديد عرض أقصى */
    width: 100%; /* ملء العرض المتاح */
}

@media (max-width: 768px) {
    .about-content {
        padding: 0 15px; /* حواف أصغر على الجوال */
        gap: 30px; /* تقليل المسافة بين العناصر */
    }
}

@media (max-width: 576px) {
    .about-content {
        padding: 0 10px; /* حواف أصغر على الجوال الصغير */
        gap: 20px; /* تقليل المسافة بين العناصر أكثر */
    }
}

/* إذا كنت تريد حواف من الداخل للعناصر الفرعية أيضاً */
.about-text,
.about-image {
    padding: 15px; /* إضافة حواف داخلية للعناصر */
}

@media (max-width: 768px) {
    .about-text,
    .about-image {
        padding: 10px; /* حواف داخلية أصغر على الجوال */
    }
}

/* أو إذا كنت تريد حواف خارجية (margin) بدلاً من padding */
.about-content.alternative-style {
    margin: 0 20px; /* حواف خارجية من الجانبين */
}

/* أو إذا كنت تريد حواف من جميع الجوانب */
.about-content.full-padding {
    padding: 20px; /* حواف من جميع الجهات */
}

@media (max-width: 768px) {
    .about-content.full-padding {
        padding: 15px; /* حواف أصغر على الجوال */
    }
}

@media (max-width: 576px) {
    .about-content.full-padding {
        padding: 10px; /* حواف أصغر على الجوال الصغير */
    }
}

/* أو إذا كنت تريد حواف فقط عند الحاجة (على الشاشات الكبيرة) */
.about-content.responsive-margins {
    margin: 0 auto;
    max-width: 1200px;
}

@media (max-width: 1200px) {
    .about-content.responsive-margins {
        padding: 0 40px; /* حواف على الشاشات المتوسطة */
    }
}

@media (max-width: 992px) {
    .about-content.responsive-margins {
        padding: 0 30px; /* حواف على الأجهزة اللوحية */
    }
}

@media (max-width: 768px) {
    .about-content.responsive-margins {
        padding: 0 20px; /* حواف على الجوال */
    }
}

@media (max-width: 576px) {
    .about-content.responsive-margins {
        padding: 0 15px; /* حواف على الجوال الصغير */
    }
}

/* أو إذا كنت تريد تصميم مع حواف متدرجة */
.about-content.gradient-borders {
    position: relative;
    padding: 20px;
}

.about-content.gradient-borders::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid transparent;
    border-image: linear-gradient(135deg, #910292, #810281) 1;
    border-radius: 15px;
    pointer-events: none;
    z-index: -1;
}

/* أو إذا كنت تريد ظل مع حواف */
.about-content.shadow-borders {
    padding: 20px;
    box-shadow: 0 0 0 1px rgba(145, 2, 146, 0.1),
                0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    background: white;
}

@media (max-width: 768px) {
    .about-content.shadow-borders {
        padding: 15px;
        border-radius: 10px;
    }
}
        .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:hover {
            transform: scale(1.02);
        }
        
       /* البطاقات الإحصائية */
.stats-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 40px 0;
    padding: 0 10px;
}

@media (min-width: 400px) {
    .stats-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (min-width: 576px) {
    .stats-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin: 50px 0;
        padding: 0 15px;
    }
}

@media (min-width: 768px) {
    .stats-cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        margin: 60px 0;
        padding: 0;
    }
}

@media (min-width: 992px) {
    .stats-cards {
        gap: 20px;
    }
}

@media (min-width: 1200px) {
    .stats-cards {
        gap: 25px;
    }
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (min-width: 576px) {
    .stat-card {
        border-radius: 15px;
        padding: 25px 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }
}

@media (min-width: 768px) {
    .stat-card {
        padding: 25px 20px;
    }
}

@media (min-width: 992px) {
    .stat-card {
        padding: 30px 20px;
    }
}

.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(-8px);
    box-shadow: 0 15px 35px rgba(138, 43, 226, 0.15);
}

@media (min-width: 768px) {
    .stat-card:hover {
        transform: translateY(-10px);
    }
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #910292, #830183);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(145, 2, 146, 0.5);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(145, 2, 146, 0.6);
}

@media (min-width: 576px) {
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 18px;
        box-shadow: 0 5px 15px rgba(145, 2, 146, 0.5);
    }
}

@media (min-width: 768px) {
    .stat-icon {
        width: 65px;
        height: 65px;
        font-size: 26px;
        margin-bottom: 20px;
    }
}

@media (min-width: 992px) {
    .stat-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #910292;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
    line-height: 1;
}

@media (min-width: 576px) {
    .stat-number {
        font-size: 2rem;
        margin-bottom: 10px;
    }
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 2.2rem;
    }
}

@media (min-width: 992px) {
    .stat-number {
        font-size: 2.5rem;
    }
}

.stat-text {
    color: #777;
    font-weight: 600;
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
    margin: 0;
    line-height: 1.4;
}

@media (min-width: 576px) {
    .stat-text {
        font-size: 0.9rem;
    }
}

@media (min-width: 768px) {
    .stat-text {
        font-size: 0.95rem;
    }
}

@media (min-width: 992px) {
    .stat-text {
        font-size: 1rem;
    }
}

/* تحسينات إضافية للتجاوب */

/* للأجهزة الصغيرة جداً (أقل من 400px) */
@media (max-width: 399px) {
    .stats-cards {
        gap: 12px;
        margin: 30px 0;
    }
    
    .stat-card {
        padding: 18px 12px;
        border-radius: 10px;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-bottom: 12px;
        box-shadow: 0 3px 10px rgba(145, 2, 146, 0.5);
    }
    
    .stat-number {
        font-size: 1.6rem;
        margin-bottom: 6px;
    }
    
    .stat-text {
        font-size: 0.8rem;
    }
}

/* للأجهزة اللوحية الصغيرة (بين 400px و 575px) */
@media (min-width: 400px) and (max-width: 575px) {
    .stats-cards {
        gap: 12px;
    }
    
    .stat-card {
        padding: 18px 10px;
    }
    
    .stat-icon {
        width: 48px;
        height: 48px;
        font-size: 19px;
        margin-bottom: 14px;
    }
    
    .stat-number {
        font-size: 1.7rem;
    }
}

/* للأجهزة اللوحية المتوسطة (بين 576px و 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .stats-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .stat-card {
        padding: 22px 15px;
    }
    
    .stat-card:hover {
        transform: translateY(-6px);
    }
}

/* للأجهزة اللوحية الكبيرة (بين 768px و 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .stats-cards {
        gap: 15px;
    }
    
    .stat-card {
        padding: 22px 15px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-text {
        font-size: 0.9rem;
    }
}

/* للشاشات الكبيرة جداً (أكثر من 1200px) */
@media (min-width: 1200px) {
    .stats-cards {
        gap: 30px;
        margin: 70px 0;
    }
    
    .stat-card {
        padding: 35px 25px;
        border-radius: 18px;
    }
    
    .stat-icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
        margin-bottom: 25px;
        box-shadow: 0 6px 20px rgba(145, 2, 146, 0.6);
    }
    
    .stat-card:hover .stat-icon {
        box-shadow: 0 8px 25px rgba(145, 2, 146, 0.7);
    }
    
    .stat-number {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }
    
    .stat-text {
        font-size: 1.1rem;
    }
}

/* للشاشات الكبيرة جداً جداً (أكثر من 1400px) */
@media (min-width: 1400px) {
    .stats-cards {
        gap: 35px;
        margin: 80px 0;
    }
    
    .stat-card {
        padding: 40px 30px;
        border-radius: 20px;
    }
    
    .stat-icon {
        width: 85px;
        height: 85px;
        font-size: 34px;
        margin-bottom: 30px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-text {
        font-size: 1.2rem;
    }
}

/* لضمان تجاوبية النصوص الطويلة */
.stat-text {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    text-align: center;
}

/* تأثيرات إضافية للتفاعل */
.stat-card:active {
    transform: translateY(-4px);
}

@media (min-width: 768px) {
    .stat-card:active {
        transform: translateY(-6px);
    }
}

/* تحسين الوصولية للأجهزة التي لا تدعم hover */
@media (hover: none) {
    .stat-card:hover {
        transform: none;
    }
    
    .stat-card:focus-within {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(138, 43, 226, 0.15);
    }
}
        
      /* قيم الشركة */
.values-section {
    margin: 40px 20px 0 20px;
    background: white;
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
    .values-section {
        margin: 40px 30px 0 30px;
        padding: 60px 40px;
    }
}

@media (min-width: 992px) {
    .values-section {
        padding: 80px 60px;
    }
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 576px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (min-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (min-width: 1200px) {
    .values-grid {
        gap: 40px;
    }
}

.value-card {
    text-align: center;
    padding: 25px 20px;
    border-radius: 15px;
    background: linear-gradient(135deg, #f8f5ff, #e6d6ff);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .value-card {
        padding: 35px 25px;
    }
}

@media (min-width: 992px) {
    .value-card {
        padding: 40px 30px;
    }
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(145, 2, 146, 0.1);
}

.value-card:hover .value-icon {
    background: #910292;
    color: white;
    transform: scale(1.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #910292, #820282);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .value-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 20px;
    }
}

@media (min-width: 992px) {
    .value-icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
        margin-bottom: 25px;
    }
}

.value-card h3 {
    font-size: 1.2rem;
    color: #910292;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    font-weight: 700;
}

@media (min-width: 768px) {
    .value-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
}

@media (min-width: 992px) {
    .value-card h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
}

.value-card p {
    color: #777;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

@media (min-width: 768px) {
    .value-card p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* فريق العمل */
.team-section {
    padding: 40px 20px;
}

@media (min-width: 768px) {
    .team-section {
        padding: 60px 40px;
    }
}

@media (min-width: 992px) {
    .team-section {
        padding: 80px 60px;
    }
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 576px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (min-width: 992px) {
    .team-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;
    height: 100%;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(145, 2, 146, 0.2);
}

.member-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #910292, #860286);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 50px;
}

@media (min-width: 576px) {
    .member-image {
        height: 200px;
        font-size: 60px;
    }
}

@media (min-width: 768px) {
    .member-image {
        height: 220px;
        font-size: 70px;
    }
}

@media (min-width: 992px) {
    .member-image {
        height: 250px;
        font-size: 80px;
    }
}

.member-info {
    padding: 20px;
}

@media (min-width: 768px) {
    .member-info {
        padding: 25px;
    }
}

.member-name {
    font-size: 1.2rem;
    color: #910292;
    margin-bottom: 5px;
    font-weight: 700;
}

@media (min-width: 768px) {
    .member-name {
        font-size: 1.3rem;
    }
}

@media (min-width: 992px) {
    .member-name {
        font-size: 1.4rem;
    }
}

.member-role {
    color: #910292;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .member-role {
        font-size: 1rem;
        margin-bottom: 12px;
    }
}

@media (min-width: 992px) {
    .member-role {
        margin-bottom: 15px;
    }
}

.member-desc {
    color: #777;
    line-height: 1.5;
    font-size: 0.85rem;
}

@media (min-width: 768px) {
    .member-desc {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

@media (min-width: 992px) {
    .member-desc {
        font-size: 1rem;
    }
}

/* العنوان العام */
.section-title {
    font-size: 1.8rem;
    color: #910292;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-weight: 800;
    text-align: center;
    width: 100%;
    text-shadow: 0 2px 10px rgba(146, 2, 146, 0.6);
}

@media (min-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
}

@media (min-width: 992px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(135deg, #910292, #860286);
}

@media (min-width: 768px) {
    .section-title::after {
        width: 80px;
    }
}

/* الحاوية الرئيسية للقسم */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* تحسينات إضافية للتجاوب */
@media (max-width: 480px) {
    .values-section {
        margin: 30px 15px 0 15px;
        padding: 30px 15px;
        border-radius: 15px;
    }
    
    .value-card {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .value-card h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .value-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .team-section {
        padding: 30px 15px;
    }
    
    .member-image {
        height: 160px;
        font-size: 40px;
    }
    
    .member-info {
        padding: 15px;
    }
    
    .member-name {
        font-size: 1.1rem;
    }
    
    .member-role {
        font-size: 0.85rem;
    }
    
    .member-desc {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
}

/* تحسينات للأجهزة اللوحية الصغيرة (بين 481px و 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .values-grid {
        gap: 20px;
    }
    
    .value-card {
        padding: 25px 15px;
    }
    
    .value-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .team-grid {
        gap: 20px;
    }
    
    .member-image {
        height: 180px;
    }
}

/* تحسينات للشاشات الكبيرة جداً */
@media (min-width: 1400px) {
    .values-grid {
        gap: 50px;
    }
    
    .value-card {
        padding: 50px 40px;
    }
    
    .value-icon {
        width: 90px;
        height: 90px;
        font-size: 36px;
    }
    
    .team-grid {
        gap: 40px;
    }
    
    .member-image {
        height: 280px;
        font-size: 90px;
    }
    
    .section-container {
        max-width: 1400px;
    }
}

/* ضمان أن الصور تتجاوب */
img {
    max-width: 100%;
    height: auto;
}

/* تحسين النصوص الطويلة */
.value-card p,
.member-desc {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}
        /* قسم تواصل معنا الجديد */
.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;
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
}

.whatsapp-btn.show {
    opacity: 1;
    visibility: visible;
    box-shadow: 
        0 4px 25px rgba(37, 211, 102, 0.4),
        0 0 18px rgba(37, 211, 102, 0.2);
}

/* تأثير hover فقط */
.whatsapp-btn:hover {
    transform: translateY(-5px);
    background: #25D366;
    box-shadow: 
        0 6px 20px rgba(48, 231, 115, 0.6),
        0 0 15px rgba(49, 224, 113, 0.3);
}

/* تعديل موقع زر الانتقال إلى الأعلى ليتناسب مع وجود زر واتساب */
.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: 30px;
        right: 20px;
        width: 50px;
        height: 50px;
        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: 40px 20px 20px;
    margin-top: auto;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .footer {
        padding: 50px 30px 20px;
    }
}

@media (min-width: 992px) {
    .footer {
        padding: 60px 40px 20px;
    }
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .footer-content {
        gap: 35px;
        margin-bottom: 35px;
    }
}

@media (min-width: 992px) {
    .footer-content {
        gap: 40px;
        margin-bottom: 40px;
    }
}

.footer-column {
    flex: 1 1 100%;
    min-width: 0;
    box-sizing: border-box;
}

@media (min-width: 576px) {
    .footer-column {
        flex: 1 1 calc(50% - 15px);
        min-width: 250px;
    }
}

@media (min-width: 768px) {
    .footer-column {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (min-width: 992px) {
    .footer-column {
        flex: 1 1 calc(25% - 30px);
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: white;
    color: #910292;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    margin-left: 10px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .footer-logo-icon {
        width: 42px;
        height: 42px;
        font-size: 22px;
    }
}

.footer-logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .footer-logo-text {
        font-size: 1.8rem;
    }
}

.footer-description {
    margin-bottom: 20px;
    line-height: 1.6;
    opacity: 0.9;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .footer-description {
        margin-bottom: 25px;
        line-height: 1.8;
        font-size: 1rem;
    }
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    font-weight: 600;
}

@media (min-width: 768px) {
    .footer-title {
        font-size: 1.3rem;
        margin-bottom: 22px;
    }
}

@media (min-width: 992px) {
    .footer-title {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 35px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

@media (min-width: 768px) {
    .footer-title::after {
        bottom: -10px;
        width: 40px;
    }
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .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;
    font-size: 0.9rem;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .footer-links a {
        font-size: 0.95rem;
    }
}

.footer-links a:hover {
    opacity: 1;
    transform: translateX(-5px);
}

.footer-links i {
    margin-left: 8px;
    font-size: 12px;
}

@media (min-width: 768px) {
    .footer-links i {
        margin-left: 10px;
        font-size: 14px;
    }
}

.contact-info {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .contact-info li {
        margin-bottom: 20px;
    }
}

.contact-info i {
    margin-left: 10px;
    margin-top: 3px;
    font-size: 16px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .contact-info i {
        margin-left: 15px;
        margin-top: 5px;
        font-size: 18px;
    }
}

.contact-info span {
    opacity: 0.9;
    line-height: 1.5;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .contact-info span {
        line-height: 1.6;
        font-size: 1rem;
    }
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .footer-social {
        gap: 15px;
    }
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

.social-icon:hover {
    background: white;
    color: #910292;
    transform: translateY(-5px);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    gap: 10px;
}

@media (min-width: 576px) {
    .newsletter-form {
        flex-direction: row;
    }
}

.newsletter-input {
    flex: 1;
    padding: 10px 12px;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    min-width: 0;
}

@media (min-width: 576px) {
    .newsletter-input {
        border-radius: 5px 0 0 5px;
        padding: 12px 15px;
        font-size: 1rem;
    }
}

.newsletter-btn {
    padding: 10px 15px;
    background: white;
    color: #910292;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
}

@media (min-width: 576px) {
    .newsletter-btn {
        border-radius: 0 5px 5px 0;
        padding: 0 20px;
        font-size: 1rem;
    }
}

.newsletter-btn:hover {
    background: #f1f1f1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.copyright {
    opacity: 0.8;
    margin-bottom: 10px;
    font-size: 0.85rem;
}

@media (min-width: 768px) {
    .copyright {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .footer-bottom-links {
        gap: 25px;
    }
}

.footer-bottom-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

@media (min-width: 768px) {
    .footer-bottom-links a {
        font-size: 0.9rem;
    }
}

.footer-bottom-links a:hover {
    opacity: 1;
}

/* .nav-buttonss - تصميم متجاوب */
.nav-buttonss {
    display: flex;
    gap: 8px;
    padding: 6px 10px;
    background: #910292;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #fff;
    box-shadow: 0 2px 6px rgba(145, 2, 146, 0.7);
    font-family: 'Arial', sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.nav-buttonss p {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* التحسين للأجهزة الصغيرة جداً */
@media (max-width: 399px) {
    .nav-buttonss {
        display: none; /* إخفاؤه على الشاشات الصغيرة جداً */
    }
}

/* للأجهزة الصغيرة (400px - 575px) */
@media (min-width: 400px) and (max-width: 575px) {
    .nav-buttonss {
        padding: 5px 8px;
        gap: 6px;
        border-radius: 6px;
    }
    
    .nav-buttonss p {
        font-size: 0.75rem;
        max-width: 120px;
    }
}

/* للأجهزة اللوحية الصغيرة (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .nav-buttonss {
        padding: 6px 10px;
        gap: 8px;
        border-radius: 8px;
    }
    
    .nav-buttonss p {
        font-size: 0.8rem;
        max-width: 140px;
    }
}

/* للأجهزة اللوحية (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .nav-buttonss {
        padding: 6px 12px;
        gap: 10px;
        border-radius: 8px;
    }
    
    .nav-buttonss p {
        font-size: 0.85rem;
        max-width: 160px;
    }
}

/* للأجهزة اللوحية الكبيرة (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .nav-buttonss {
        padding: 7px 14px;
        gap: 12px;
        border-radius: 10px;
    }
    
    .nav-buttonss p {
        font-size: 0.9rem;
        max-width: 180px;
    }
}

/* للشاشات الكبيرة (1200px فأكثر) */
@media (min-width: 1200px) {
    .nav-buttonss {
        padding: 8px 16px;
        gap: 12px;
        border-radius: 10px;
    }
    
    .nav-buttonss p {
        font-size: 1rem;
        max-width: 200px;
    }
}

/* للشاشات الكبيرة جداً (1400px فأكثر) */
@media (min-width: 1400px) {
    .nav-buttonss {
        padding: 10px 18px;
        gap: 15px;
        border-radius: 12px;
    }
    
    .nav-buttonss p {
        font-size: 1.1rem;
        max-width: 220px;
    }
}

/* تحسينات إضافية للوصولية */
.nav-buttonss:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(145, 2, 146, 0.8);
    background: #820282;
    transition: all 0.3s ease;
}

.nav-buttonss:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(145, 2, 146, 0.6);
}

/* دعم الأجهزة التي لا تدعم hover */
@media (hover: none) {
    .nav-buttonss:hover {
        transform: none;
    }
    
    .nav-buttonss:active {
        background: #750175;
        transform: scale(0.98);
    }
}

/* تحسين عرض النص الطويل */
.nav-buttonss p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

/* إضافة مؤشر اليد عند المرور */
.nav-buttonss {
    cursor: pointer;
}

/* تحسينات للطباعة */
@media print {
    .nav-buttonss {
        display: none;
    }
}

/* تحسينات إضافية للتجاوب */

/* للأجهزة الصغيرة جداً (أقل من 400px) */
@media (max-width: 399px) {
    .footer {
        padding: 30px 15px 15px;
    }
    
    .footer-content {
        gap: 25px;
        margin-bottom: 25px;
    }
    
    .footer-logo-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .footer-logo-text {
        font-size: 1.4rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .footer-title::after {
        bottom: -6px;
        width: 30px;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .contact-info i {
        font-size: 14px;
        margin-left: 8px;
    }
    
    .contact-info span {
        font-size: 0.85rem;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .newsletter-input {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
    
    .newsletter-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .copyright {
        font-size: 0.8rem;
    }
    
    .footer-bottom-links {
        gap: 10px;
    }
    
    .footer-bottom-links a {
        font-size: 0.75rem;
    }
}

/* للأجهزة اللوحية الصغيرة (بين 576px و 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .footer-column {
        flex: 1 1 calc(50% - 15px);
    }
    
    .footer-content {
        gap: 25px;
    }
}

/* للأجهزة اللوحية (بين 768px و 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .footer-column {
        flex: 1 1 calc(50% - 20px);
    }
    
    .footer-content {
        gap: 30px;
    }
}

/* للشاشات الكبيرة جداً (أكثر من 1200px) */
@media (min-width: 1200px) {
    .footer {
        padding: 70px 50px 25px;
    }
    
    .footer-content {
        max-width: 1300px;
        gap: 50px;
        margin-bottom: 50px;
    }
    
    .footer-column {
        flex: 1 1 calc(25% - 37.5px);
    }
    
    .footer-logo-text {
        font-size: 2rem;
    }
    
    .footer-description {
        font-size: 1.1rem;
    }
    
    .footer-title {
        font-size: 1.5rem;
    }
    
    .footer-links a {
        font-size: 1rem;
    }
    
    .contact-info span {
        font-size: 1.1rem;
    }
}

/* للشاشات الكبيرة جداً جداً (أكثر من 1400px) */
@media (min-width: 1400px) {
    .footer-content {
        max-width: 1400px;
    }
}

/* تحسينات للوصولية والتجربة على الأجهزة اللوحية */
@media (hover: none) {
    .footer-links a:hover {
        transform: none;
        opacity: 1;
    }
    
    .social-icon:hover {
        transform: none;
        background: rgba(255, 255, 255, 0.15);
    }
    
    .footer-links a:active,
    .social-icon:active {
        transform: scale(0.95);
    }
}

/* منع انهيار التصميم عند تكبير النص */
.footer * {
    max-width: 100%;
}

/* تحسين عرض النصوص الطويلة */
.footer-description,
.contact-info span,
.footer-links a {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}
/* الروابط */
.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;
            }
        }
