 /* تعريف الخط */
 @font-face {
    font-family: 'Ahmed'; /* اسم الخط الذي ستستخدمه */
    src: url('https://hostgad.com/wp-content/uploads/useanyfont/1971ciro-ahmed.woff2') format('woff2'); /* مسار ملف الخط */
    font-weight: normal; /* وزن الخط */
    font-style: normal; /* نمط الخط */
  font-display: swap;

}
 /* تطبيق الخط على h1 */
 h1 {
    font-family: 'Ahmed', sans-serif; /* استخدام الخط المخصص مع خطوط احتياطية */
    color: #83bfff;
    font-size: 40px;
}

/* تطبيق خط مختلف على h2 */
h2 {
    font-family: 'Ahmed', serif; /* استخدام خط Georgia مع خطوط احتياطية */
    font-size: 28px;
    color: #020a81;
}

/* التنسيق العام */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: serif; /* استخدام خط Georgia مع خطوط احتياطية */
}

header {
    background-color: #05004e; /* خلفية زرقاء */
    padding: 10px 0;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    background-color: white;
    padding: 10px 10px 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 15px 20px 25px 30px;
    margin:  5px 140px 5px 5px;
    position: fixed; /* يجعل الهيدر ثابتًا */
    top: 0px; /* يبقي الهيدر في أعلى الصفحة */
    left: 0;
    right: 0;
    z-index: 1000; /* ضمان ظهور الهيدر فوق العناصر الأخرى */
    transition: all 0.3s ease; /* تحريك سلس عند التمرير */
}

.logo img {
    height: 50px;
}
.zf{
    font-family: 'Ahmed', serif; /* استخدام خط Georgia مع خطوط احتياطية */
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    color: #000000;
}
.zf li a.button {
    background-color: #004e92; /* زر أزرق */
    color: #fff;
    padding: 8px 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    white-space: nowrap;

}


.zf li a.button:hover {
    background-color: #680101; /* لون أزرق غامق عند التمرير */
}


.nav-links ul {
    list-style: none;
    display: flex;
    white-space: nowrap;

}

.nav-links ul li {
    margin-left: 15px;
    white-space: nowrap;

}

.nav-links ul li a {
    color: black; /* لون النص أسود */
    white-space: nowrap;
    text-decoration: none;
    font-size: 18px;
    padding: 8px 5px;
    border-radius: 5px; /* راديس بوردر */
    transition: background-color 0.3s;
}

.nav-links ul li a:hover {
    background-color: #f0f0f0; /* تغيير لون الخلفية عند التحويم */
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: black; /* لون الشرطات أسود */
    margin: 4px 0;
}

/* تنسيق كل عنصر في القائمة */
.nav-item {
    margin-left: 20px;
    position: relative;
}

/* تنسيق الروابط داخل العناصر */
.nav-link {
    color: white;
    text-decoration: none;
    padding: 5px;
}

/* تأثيرات المرور بالماوس */
.nav-link:hover {
    background-color: #cfcfcf;
}

/* تنسيق القائمة المنسدلة */
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 200px;
    padding: 10px;
    flex-direction: column;  /* ترتيب العناصر عموديًا */
    z-index: 1;
}
.dropdown a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    padding: 10px;
    display: block; /* يجعل كل رابط يظهر في سطر منفصل */
}

/* إظهار القائمة المنسدلة عند مرور الماوس */
.nav-item:hover .dropdown {
    display: block;
}

/* القسم الأول */
.desktop-layout {
    display: flex;
    flex-direction: row;
    top: -50px;          /* رفع العنصر لأعلى */
    position: relative;  /* لضمان أن z-index يعمل داخل هذا السياق */
    z-index: 0;          /* التأكد أنه خلف القائمة */
    background: linear-gradient(to right, #00123a, #000000);

}

.left-section {
    flex: 1;
}

.left-section img {
    width: 100%;
    height: auto;
}

.right-section {
    flex: 2;
    padding: 150px 10px 0px 10px;
}
.right-section p {
    font-size: 25px;
    font-weight: 400;
    color: white;
    line-height: 1.5;
}
.rh2{
    background-color: #fff;
    color: #011792;
    padding: 10px 10px 10px 10px;

}

.pricing {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding: 30px 10px 0px 30px;

}

.plan {
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    flex: 1;
    margin: 0 10px;
    padding: 50px 20px 40px 20px;
    font-size: 1.5em;
    font-weight: bold;

}

.blue {
    background-color: #1E90FF;
}

.yellow {
    background-color: #FFD700;
}

.red {
    background-color: #FF4500;
}

.original-price {
    text-decoration: line-through;
    display: block;
    font-size: 1.2em;
}

.discounted-price {
    display: block;
    font-size: 1.5em;
    font-weight: bold;

}
.mobile-head{
    display: none;
}

/* Mobile Layout */

@media (max-width: 768px) {
    .mobile-head{
        display: block;
        padding: 50px 10px 10px 10px;
    }
    h1.er{
        display: none;
    }
    .rh2{
        background-color: #fff;
        color: #011792;
        padding: 5px 10px 10px 10px;
        font-size: 28px;
        font-weight: 600;
    
    }
    .desktop-layout {
        flex-direction: column;
        margin-top: 40px;
    }

    .left-section {
        order: 1; /* الصورة ان */
    }

    .right-section {
        order: 2; /* العنوان والفقرات تأتي أولاً */
        padding: 10px 10px 10px 10px;
    }

    .right-section h1 {
        order: 1; /* العنوان أولاً */
    }

    .right-section p {
        order: 3; /* الفقرات بعد الصورة */
    }

    .pricing {
        display: none;
    }

    .plan {
        margin: 10px 0;
    }
}
 /* نهاية القسم الأول */

/* التنسيق للشاشات الصغيرة (الجوال) */
@media (max-width: 768px) {
    .container {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        background-color: white;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: -250px; /* إخفاء القائمة خارج الشاشة */
        width: 250px; /* عرض القائمة */
        height: 100vh; /* ارتفاع كامل للشاشة */
        background-color: white; /* خلفية بيضاء للقائمة */
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1); /* إضافة ظل */
        transition: left 0.3s ease-in-out;
    }

    .nav-links.active {
        left: 0; /* إظهار القائمة */
    }

    .nav-links ul {
        flex-direction: column;
        padding: 20px;
    }

    .nav-links ul li {
        margin: 10px 0;
    }

    .nav-links ul li a {
        color: black; /* لون النص أسود */
        display: block;
        padding: 10px;
        border-bottom: 1px solid #ddd; /* خط بين العناصر */
    }

    .nav-links ul li a:hover {
        background-color: #b9b9b9; /* تأثير هوفر */
    }

    .menu-toggle {
        display: flex;
    }

}
    /* تنسيق اعمدة الأسعار */
    /* تنسيق عام */
    .star {
        color: #ff1100; /* لون النجمة (أصفر) */
        font-size: 20px; /* حجم النجمة */
        margin-left: 10px; /* المسافة بين النجمة والنص */
    }

    .pricing22-section {
        text-align: center;
        background-color: #dfe1f0;
    }
    .pricing22-section h2{
        color: #2103a8;
        font-size: 2.5em;

    }
    
    .pricing22-container {
        padding: 20px 10px 20px 10px;
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;

    }
    
    .pricing22-column {
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 10px;
        padding: 20px;
        width: calc(20% - 20px); /* 5 أعمدة في صف واحد */
        box-sizing: border-box;
    }

    .pricing22-column:hover {
        border: 3px solid #37009c;
    }
    
    h3 {
        color: #004e83;
        margin-bottom: 15px;
        font-size:1.5em;
    }
    
    .price22 {
        font-size: 24px;
        font-weight: bold;
        color: #004e92;
        margin-bottom: 10px;
    }
    
    .description22 {
        font-size: 1em;
        color: #000000;
        margin-bottom: 20px;
    }
    .subscribe22-btn {
        display: inline-block; /* لجعل الرابط يبدو كزر */
        color: #fff; /* لون النص */
        font-size: 18px; /* تكبير الخط */
        text-decoration: none; /* إزالة الخط السفلي */
        border-radius: 8px; /* جعل الحواف مستديرة */
        transition: background-color 0.3s ease; /* تأثير سلس عند التحويل */
        font-weight: bold; 
        text-align: center; /* توسيط النص */

    }
    .but20 {
        background-color: #004e92;
        border-radius: 10px;
        padding: 20px;
    }

    
    .but20:hover {
        background-color: #e65c00; /* تغيير اللون عند التحويم */
    }    
    .features22 {
        list-style-type: none;
        padding: 10px 0;
        text-align: right;
    }
    
    .features22 li {
        padding: 5px 0;
        border-bottom: 1px solid #eee;
        color: #000000;
        font-size: 1em;
    }
    
    .features22 li:last-child {
        border-bottom: none;
    }
    
    /* تنسيق الجوال */
    @media (max-width: 768px) {
        .pricing22-column {
            width: 100%; /* عمود واحد لكل صف */
            margin-bottom: 20px;
        }
        .features22 li {
            padding: 5px 0;
            border-bottom: 1px solid #eee;
            color: #000000;
            font-size: 1em;
        }
    }
   



/* تنسيق القسم 3 المميزات */

        /* استايل القسم الثالث */
        .main-container1 {
            width: 100%;
            max-width: 1200px;
            background: linear-gradient(to right, #020169, #000000); /* تدرج من الأسود إلى الأزرق */
            color: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            min-width: 100%;
        }

.top-section1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.right-section1 h2 {
    font-size: 40px;
    margin: 0;
    color: #00F0FF;
}
.right-section1 p {
    margin: 0;
    color: #ffffff;
    font-size: 24px;
}
.left-section1 img {
    width: 500px;
    height: auto;
    border-radius: 10px;
}

.boxes-container1 {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 20px 0px 20px 0px;
}

.box1 {
    background-color: rgb(255, 255, 255); /* خلفية شفافة */
    border-radius: 10px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}
.box-right1 {
    text-align: right;
    color: #000000;
}

.box-right1 h3 {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 10px 0;
    font-family: 'CiroAhmed', Arial, sans-serif;
    color: #00008b;
}

.box-right1 p {
    font-size: 16px;
    margin: 0;
    line-height: 1.8;
    font-weight: bold;
}

.box-left1 img {
    width: 100px;
    height: auto;
    border-radius: 10px;
}
@media (max-width: 768px) {
    
    .top-section1 {
        display: flex;
        flex-direction: column;
    }
    .main-container1 {
        width: 100%;
        max-width: auto;
        min-width: auto;
    }
    .boxes-container1 {
        display: flex;
        flex-direction: column;
    }

    .left-section1 img {
        width: 100%;
        border-radius: 10px;
    }
    .box-left1 img {
        width: 50px;
    }
    

}
/* نهاية قسم المميزات */

/* تنسيق مقارنة الخطط */
.table-container {
    width: 100%;
    max-width: 1200px;
    overflow-x: auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    min-width: 100%;
    white-space: nowrap;
}
.table-container h2 {
    text-align: center;
    padding: 15px 0px 50px 0px;
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    white-space: nowrap;

}

th, td {
    padding: 15px;
    border: 1px solid #ddd;
    white-space: nowrap;
}

th {
    background-color: #004e92;
    color: white;
    font-size: 1.1em;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

tr:hover {
    background-color: #f1f1f1;
}

.subscribe-btn {
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    text-decoration: none;
    font-weight: bold;
    margin: 20px;
}

.title-container1 h2 {
    padding: 20px;
    margin: 30px 0px;
    font-size: 40px;
    font-weight: bold;
    color: #000085;
    text-align: center;
}
/* نهاية تنسيق جدول مقارنة الأسعار */
/* تنسيق قسم الصورة و 3 مستطيلات */
.main-container4 {
    min-width: 100%;
    width: 100%;
    max-width: 1200px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 20px;
    margin: 30px 0px 40px 0px;
}

.right-section4 {
    flex: 1;
    text-align: center;
}

.right-section4 h2 {
    font-size: 2em;
    color: #004e92;
    margin-bottom: 20px;
}

.right-section4 img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
}

.left-section4 {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.box4 {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    gap: 20px;

}

.box4 img {
    width: 100px;
    height: 80px;
    border-radius: 10px;
}

.box-content4 {
    flex: 1;
}

.box-content4 h3 {
    font-size: 1.5em;
    color: #004e92;
    margin: 0 0 10px 0;
}

.box-content4 p {
    font-size: 1em;
    color: #333;
    margin: 0;
}
@media (max-width: 768px) {
    .main-container4 {
        min-width: none;
        width: 100%;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        display: flex;
        gap: 20px;
        margin: 0px 0px 0px 0px;
        flex-direction: column;
    }
    

    
    .right-section4 img {
        width: 100%;
        height: auto;
        margin-top: 20px;
    }
    .box4 img {
        width: 50px;
        height: auto;
        border-radius: 10px;
    }
}
/* قسم المميزات يمين والصورة يسار */
/*قسم صورة ومميزات */
/* قسم المميزات يمين والصورة يسار */
.feature-container5 {
    min-width: 100%;
    width: 100%;
    max-width: 1200px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 20px;
}

.feature-section5 {
    flex: 2;
}

.feature-section5 h2 {
    font-size: 2em;
    color: #004e92;
    margin-bottom: 20px;
}

.feature-list5 {
    list-style-type: none;
    padding: 0;
}

.feature-list5 li {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #f9f9f9;
    border-left: 5px solid #004e92;
    border-radius: 5px;
}

.image-section5 {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-section5 img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
}
/* Media Queries للجوال والأجهزة الصغيرة */
@media (max-width: 768px) {
    .feature-container5 {
        flex-direction: column; /* جعل العناصر تتراكم عموديًا */
        padding: 15px;
    }

    .feature-section5 h2 {
        font-size: 1.5em; /* تصغير حجم العنوان */
    }

    .feature-list5 li {
        font-size: 1em; /* تصغير حجم النص */
    }

    .image-section5 img {
        max-width: 100%; /* جعل الصورة تأخذ العرض الكامل */
    }
}

@media (max-width: 480px) {
    .feature-section5 h2 {
        font-size: 1.2em; /* تصغير حجم العنوان أكثر */
    }

    .feature-list5 li {
        font-size: 0.9em; /* تصغير حجم النص أكثر */
    }
}

/* تنسيق قسم أداء الاستضافة */
.ada2025 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin: 20px;
}
.right-section88 {
    flex: 1;
    padding: 20px;
    text-align: center;
}
.right-section88 h2 {
    color: #022994;
    font-size: 28px;
    margin-bottom: 15px;
}
.right-section88 img {
    width: 99%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.left-section88 {
    flex: 1;
    padding: 20px;
    text-align: right;
}
.left-section88 p {
    font-size: 18px;
    line-height: 1.8;
    color: #000000;
    font-weight: bold;
}
@media (max-width: 768px) {
    .ada2025 {
        flex-direction: column;
    }
    .right-section88, .left-section88 {
        width: 100%;
        text-align: center;
    }
    .left-section88 p {
        text-align: justify;
    }
}
/* تنسيق قسم مستطيلات تحت الأداء */
.container50 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 10px 10px;
}

/* تنسيق المستطيلات */
.box50 {
    background-color: white;
    border: 2px solid #007BFF;
    border-radius: 10px;
    padding: 20px;
    flex: 1 1 calc(33.333% - 40px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box50:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* تنسيق العنوان */
.box50 h3 {
    color: #007BFF;
    margin-bottom: 15px;
    font-size: 1.5em;
}

/* تنسيق النص */
.box50 p {
    color: #000000;
    line-height: 1.6;
    font-size: 1em;
    font-weight: bold;
}

/* تنسيق للأجهزة المحمولة */
@media (max-width: 768px) {
    .box50 {
        flex: 1 1 100%;
    }
}
/* تنسيق استضافة vps سرعة المواقع */
/* القسم الرئيسي */
.main-section41 {
    background: linear-gradient(to right, #000428, #004e92);
    color: white;
    padding: 50px 20px;
    text-align: right;
}
.main41{
    padding: 50px 10px 50px 10px;
}

.content41 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.text-section41 {
    flex: 1 1 60%;
}

.text-section41 h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #f8c806;
}

.text-section41 p {
    font-size: 1.3em;
    line-height: 1.8;
    font-weight: bold;
}

.image-section41 {
    flex: 1 1 35%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-section41 img {
    border-radius: 10px;
    width: 98%;
    height: auto;
}

/* المستطيلات التسعة */
.boxes-container41 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.box41 {
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    flex: 1 1 calc(33.333% - 40px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.box41 img {
    width: 50px;
    height: auto;
    margin-bottom: 15px;
}

.box41 h3 {
    color: #004e92;
    font-size: 1.3em;
    margin-bottom: 10px;
}

.box41 p {
    color: #000000;
    line-height: 1.6;
    font-size: 1em;
    font-weight: bold;
}

/* تنسيق للأجهزة المحمولة */
@media (max-width: 768px) {
    .content41 {
        flex-direction: column;
    }

    .box41 {
        flex: 1 1 100%;
    }
}
/* تنسيق استضافة vps سرعة المواقع نهاية*/
/* شرح خصائص السرعة */
        /* إعادة تعيين الهوامش والحشوات */

        /* تنسيق الأقسام العلوية */
        .top-section601 {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 40px;
        }

        .right-section601 {
            flex: 1;
            background-color: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .right-section601 h2 {
            color: #007bff;
            margin-bottom: 20px;
        }

        .right-section601 p {
            color: #000000;
            line-height: 1.8;
        }

        .left-section601 {
            flex: 1;
            max-width: 400px;
        }

        .left-section601 img {
            width: 100%;
            height: auto;
            border-radius: 10px;
        }

        /* تنسيق المستطيلات */
        .boxes601 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;

        }

        .box601 {
            background-color: #fff;
            padding: 20px;
            border: 2px solid #007BFF;
            border-radius: 10px;
            margin: 10px;

        }

        .box601 h3 {
            color: #007BFF;
            margin-bottom: 10px;
        }

        .box601 p {
            color: #000000;
            line-height: 1.6;
        }

        /* تصميم متجاوب للجوال */
        @media (max-width: 768px) {
            .top-section601 {
                flex-direction: column;
            }

            .boxes601 {
                grid-template-columns: 1fr;

            }
        }
/* قسم كيفية نقل الاستضافة */
.container88 {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


.img88 {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px;
    border-radius: 10px;
    padding: 20px 10px 10px 10px;
}

.steps88 {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.step88 {
    margin-bottom: 15px;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.step88 h3 {
    margin: 0 0 10px;
    color: #007BFF;
}

.step88 p {
    margin: 0;
    line-height: 1.6;
    font-size: 16px;
    font-weight: bold;
}

@media (max-width: 600px) {
    .container88 {
        padding: 10px;
    }
    .steps88 {
        padding: 10px;
    }
    .step88 {
        padding: 8px;
    }
}
/* فوائد استضافة Vps */
.container89 {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


.content89 {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
}

.benefit89 {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.benefit89 h3 {
    color: #007BFF;
    margin-top: 0;
}

.benefit89 p {
    line-height: 1.6;
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

@media (max-width: 600px) {
    .container89 {
        padding: 10px;
    }
    .content89 {
        padding: 10px;
    }
    .benefit89 {
        padding: 10px;
    }
}
/* تحسين الموقع لمحركات البحث */
.container109 {
    width: 100%;
    margin: 10px 0px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.container109 h2 {
    margin-bottom: 20px;
}
.header-image109 {
    margin-top: 20px;
    padding: 20px 10px 10px 10px;
}
.grid-container109 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.box109 {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.box109 img {

    margin-left: 15px;
    border-radius: 10px;
}

.content109 h3 {
    color: #007BFF;
    margin: 0 0 10px;

}

.content109 p {
    margin: 0;
    line-height: 1.6;
    font-size: 16px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .grid-container109 {
        grid-template-columns: repeat(2, 1fr);
    }
    .header-image109 {
        margin-bottom: 0px;
        width: 100%;
        height: auto;

    }
}
.container109 h2 {
    margin-bottom: 10px;
}

@media (max-width: 480px) {
    .grid-container109 {
        grid-template-columns: 1fr;
    }
    .box109 {
        flex-direction: column;
        text-align: center;
    }
    .box109 img {
        margin: 0 0 10px 0;
    }
    .header-image109 {
        height: auto;
        border-radius: 10px;
        margin-bottom: 0px;
    }
    .container109 h2 {
        margin-bottom: 10px;
    }
}

/* المساعدة والدعم */
.container110 {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.content110 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.5); /* خلفية شبه شفافة */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, #00123a, #000000);

}

.text110 {
    flex: 1;
    padding: 20px;
}

.text110 h2 {
    color: #f8c806;
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 800;
}

.text110 p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #f0f0f0;
    font-weight: bold;
}

.contact110 {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
}

.contact110 p {
    margin: 10px 0;
    font-size: 16px;
}

.contact110 strong {
    color: #f8c806; /* لون مميز للنص */
}

.image110 img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .content110 {
        flex-direction: column;
        text-align: center;
    }

    .text110 {
        padding: 10px;
    }

    .image110 {
        margin-top: 20px;
    }
}
/* توزيع السيرفرات */
.container111 {
    width: auto;
    margin: 20px 20px 20px 20px;
    padding: 20px;
    background-color: #000428;
}

.content111 {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.image111 img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-left: 20px;
}

.text111 {
    flex: 1;
}

.text111 h2 {
    color: #007BFF;
    font-size: 28px;
    margin-bottom: 15px;
}

.text111 p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.stats111 {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.stats111 p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

.locations111 {
    display: flex;
    gap: 10px;
}

.location-box111 {
    flex: 1;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.location-box111 h3 {
    color: #007BFF;
    margin: 0 0 10px;
}

.location-box111 p {
    margin: 5px 0;
    font-size: 14px;
    color: #000000;
}

@media (max-width: 768px) {
    .content111 {
        flex-direction: column;
        text-align: center;
    }

    .image111 img {
        margin: 0 0 20px 0;
    }

    .locations111 {
        flex-direction: column;
    }

    .location-box111 {
        margin-bottom: 15px;
    }

}
/* قسم الفرق بين الاستضافات */
.container112 {
    margin: 0 auto;
    padding: 20px;
    background: linear-gradient(to bottom, #1e3c72, #2a5298); /* تدرج أزرق-أسود */
    color: #fff;
    text-align: right;


}

.content112 {
    display: flex;
    align-items: flex-start;
    background-color: rgba(255, 255, 255, 0.1); /* خلفية شبه شفافة */
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.text112 {
    flex: 1;
    padding: 20px;
}

.text112 h2 {
    color: #ffcc00; /* لون العنوان */
    font-size: 28px;
    margin-bottom: 20px;
}

.text112 ul {
    list-style-type: none;
    padding: 10px 0px;
}

.text112 ul li {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.8;
    font-weight: bold;

}

.text112 ul li strong {
    color: #ffcc00; /* لون النص البارز */
    font-weight: bold;
}

.text112 p {
    font-size: 16px;
    line-height: 1.8;
    margin-top: 20px;
    font-weight: bold;

}
.image112 {
    text-align: center;
}
.image112 img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);

    display: inline-block;

}

@media (max-width: 768px) {
    .content112 {
        flex-direction: column;
        text-align: center;
    }

    .image112 img {
        margin-top: 20px;
    }
}
/* قسم الفيدو */
.container113 {
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: row; /* العرض الأفقي الافتراضي */
    gap: 20px; /* مسافة بين العناصر */

}

.content113 {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.text113 {
    flex: 1;
    padding: 20px;
}

.text113 h2 {
    color: #007BFF;
    font-size: 28px;
    margin-bottom: 20px;
}

.text113 p {
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

        /* تنسيق قسم الفيديو */
        .video-container {
            position: relative;
            width: 640px;
            height: 360px;
        }
        .video-cover {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://hostgad.com/wp-content/uploads/2025/02/صورة-فيديو-استضافة-VPS.jpg') center center / cover no-repeat;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2;
        }
        .video-cover button {
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            border: none;
            padding: 10px 20px;
            font-size: 18px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .video-cover button:hover {
            background-color: rgba(0, 0, 0, 0.9);
        }
        video {
            width: 100%;
            height: 100%;
            display: block;
        }
        @media (max-width: 480px) {
            .content113 {
                display: flex;
                flex-direction: column; /* ترتيب العناصر عموديًا */
                align-items: center;    /* محاذاة العناصر إلى المنتصف أفقيًا */
                justify-content: center; /* محاذاة العناصر إلى المنتصف عموديًا (اختياري) */
            }
            
            .video-container {
                width: 100%;
                max-width: none; /* إزالة الحد الأقصى للعرض على الشاشات الصغيرة */
            }
            .video-cover button {
                padding: 8px 12px;
                font-size: 14px;
            }
            video {
                width: 100%;
                height: auto; /* لضمان التناسب على الشاشات الصغيرة */
            }
        }

        @media (max-width: 768px) {
            .content113 {
                display: flex;
                flex-direction: column; /* ترتيب العناصر عموديًا */
                align-items: center;    /* محاذاة العناصر إلى المنتصف أفقيًا */
                justify-content: center; /* محاذاة العناصر إلى المنتصف عموديًا (اختياري) */
            }
            
            .video-container {
                width: 100%;
                max-width: none; /* إزالة الحد الأقصى للعرض على الشاشات الصغيرة */
            }
            .video-cover button {
                padding: 8px 12px;
                font-size: 14px;
            }
            video {
                width: 100%;
                height: auto; /* لضمان التناسب على الشاشات الصغيرة */
            }
        }
        
/* قسم التقييمات */
.testimonials-section {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(to bottom, #f9f9f9, #eaeaea);
  }
  
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
  }
  
  .testimonial-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .testimonial-card:hover {
    transform: translateY(-10px);
  }
  
  .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
  }
  
  .quote {
    font-size: 16px;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.5;
  }
  
  .author-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .author-name {
    font-weight: bold;
    color: #555;
  }
  
  .stars {
    color: gold;
    font-size: 20px;
  }
  
  @media (max-width: 768px) {
    .testimonials-grid {
      grid-template-columns: 1fr;
    }
  }
  /* قسم السؤوال والجواب */
  /* التنسيق العام */
.faq-section-516 {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(to bottom, #f9f9f9, #eaeaea);
}

.faq-section-516 h2 {
    font-size: 32px;
    color: #000000;
    margin-bottom: 10px;
}

.subtext-516 {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.faq-container-516 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 auto;
    max-width: 1200px;
}

/* الأسئلة في اليسار */
.faq-content-516 {
    flex: 1;
    margin-right: 20px;
}

.faq-item-516 {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question-516 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    color: #03009e;
}

.icon-516 {
    font-size: 24px;
    color: #333;
    transition: transform 0.3s ease;
}

.faq-answer-516 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: 16px;
    color: #000000;
    text-align: right;
    line-height: 1.5;
}

/* تأثير الهوفر */
.faq-item-516:hover .faq-answer-516 {
    max-height: 200px; /* يمكن تعديله حسب طول الإجابة */
    padding-top: 10px;
}

.faq-item-516:hover .icon-516 {
    transform: rotate(45deg);
}

/* الصورة في اليمين */
.faq-image-516 {
    flex: 1;
    text-align: center;
}

.faq-image-516 img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* تنسيق الجوال */
@media (max-width: 768px) {
    .faq-container-516 {
        flex-direction: column;
    }

    .faq-content-516 {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .faq-image-516 img {
        width: 100%;
    }
}
footer {
    background: linear-gradient(to right, #000000, #000066);
    color: white;
    padding: 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #a7fcff;
}

.footer-column p {
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-icons a {
    color: white;
    text-decoration: none;
    font-size: 20px;
}

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

.footer-list li {
    margin-bottom: 8px;
}

.footer-list a {
    color: white;
    text-decoration: none;
}

.footer-list a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }
}
