



/* تنسيقات عامة */
body {
    font-family: 'Roboto', sans-serif;  /* إضافة خط جديد */
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #e0edf0;  /* خلفية خفيفة */
    text-align: left;  /* محاذاة النصوص إلى اليسار */
    font-size: 16px;  /* تعيين حجم خط موحد */
    direction: ltr;  /* جعل النصوص تبدأ من اليسار */
}

header {
    width: 100vw;
    background-color:  #1ab7d3;
    color: rgb(16, 43, 53);
    padding: 15px 30px;

    font-weight: bold;
    line-height: 1.6;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); 
    text-align: left;  
    font-size: 16px;  
}



/* العنوان الرئيسي */
h2 {
    color: #3db4c4;
    margin: 25px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);  /* إضافة ظل خفيف للنص */
    text-align: left;  /* محاذاة العنوان إلى اليسار */
    font-size: 18px;  /* تعيين حجم خط موحد للعناوين */
}

/* الفقرات في المحتوى */
.content p   {
    padding-left: 20px; 
    margin: 25px;
    color: #2b331f;
    font-weight: bold;
    text-align: left;  /* محاذاة الفقرات إلى اليسار */
    font-size: 16px;  /* تعيين حجم خط موحد للفقرات */
}


.service-icons {
    list-style-type: disc;     /* إظهار النقاط */
    padding-left: 50px;        /* مسافة من اليسار */
    margin: 0;
  }
  
  .service-icons li {
    margin-bottom: 10px;       /* مسافة بين العناصر */
    font-size: 16px;           /* حجم الخط */
    color: #333;               /* لون الخط */
    line-height: 1.6;          /* تباعد الأسطر */
  }
  

p11 {
    color: #ff5733;
    font-weight: bold;
    margin-left: 55px; 
    text-align: left 10px;  /* محاذاة النصوص داخل الفقرات إلى اليسار */
    font-size: 16px;  /* تعيين حجم خط موحد للفقرات */
}


/* إزالة النقاط من القوائم */
ul {
    margin: 25px;
    color: #150816;
    text-align: left;  /* محاذاة القوائم إلى اليسار */
    font-size: 16px;  /* تعيين حجم خط موحد للقوائم */
    list-style-type: none;  /* إزالة النقاط */
    padding-left: 0;  /* إزالة المسافة المبدئية */
}

/* الأزرار */
.buttons {
    padding-left: 20px; 
    margin-top: 15px;
    margin-bottom: 15px;
    display: flex;  /* استخدم flex للتوزيع */
    justify-content: flex-start;  /* محاذاة الأزرار إلى اليسار */
}

.buttons button {
    background-color: #007b8a;
    color: rgb(238, 233, 233);
    border: none;
    padding: 20px 25px; 
    margin-left: 25px;  
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease; 
    font-size: 16px;  
}

.buttons button a {
    color: rgb(248, 248, 248);
    text-decoration: none;
}

.buttons button:hover {
    background-color: #005f6a;  /* تغيير اللون عند التمرير */
    transform: scale(1.05);  /* تكبير الأزرار قليلاً عند التمرير */
}

/* العناوين الفرعية */
h3 {
    margin-left: 35px; 
    color: #0d7684;
    margin-bottom: 10px;
    /* margin: 15px; */
    /* text-align: left;  */
    font-size: 16px;  /* تعيين حجم خط موحد للعناوين الفرعية */
}

/* الفوتر */
.footer {
    width: 100vw;
    background-color:  #1ab7d3;
    color: white;
    text-align: center;  /* محاذاة النص في الفوتر إلى اليسار */
    padding: 30px 20px;
    font-size: 16px;
    margin-top: 40px;
    box-shadow: 0px -4px 6px rgba(0, 0, 0, 0.1);  /* تأثير ظل خفيف للفوتر */
}

/* روابط الفوتر */
.footer-content a {
    color: #a8e6ff;
    text-decoration: none;
    transition: color 0.3s ease;  /* تأثير تغيير اللون عند التمرير */
    font-size: 16px;  /* تعيين حجم خط موحد للروابط */
}

.footer-content a:hover {
    color: #291612;  /* تغيير اللون عند التمرير */
}

/* تحسين التفاعل مع القوائم */
@media (min-width: 600px) {
    header .links {
        flex-direction: row;
        justify-content: flex-start;  /* محاذاة الروابط في الترويسة إلى اليسار */
    }
}
