/* Add custom CSS styles below */ 
.footer, 
.footer-container, 
.footer-main, 
.footer-bottom, 
.site-footer, 
#footer, 
div[class*="footer"] {
    background: linear-gradient(to bottom, #003366, #002a4d, #001a33) !important; /* درجات متموجة من الكحلي */
    color: #ffffff !important; /* النصوص بلون أبيض */
    position: relative; /* ضروري لتحديد موقع النقاط */
    overflow: hidden; /* لضمان بقاء العناصر الإضافية داخل العنصر */
}

.footer::after {
    content: "";
    position: absolute;
    bottom: 0; /* النقاط في الأسفل */
    left: 0;
    width: 100%;
    height: 50px; /* ارتفاع المنطقة المخصصة للنقاط */
    background: radial-gradient(circle, #b57b2e 5px, transparent 10%) 10% 50%, 
                radial-gradient(circle, #b57b2e 5px, transparent 10%) 30% 60%, 
                radial-gradient(circle, #b57b2e 5px, transparent 10%) 50% 40%, 
                radial-gradient(circle, #b57b2e 5px, transparent 10%) 70% 70%, 
                radial-gradient(circle, #b57b2e 5px, transparent 10%) 90% 50%;
    background-size: 10px 10px;
    background-repeat: no-repeat;
    z-index: 1; /* لإظهار النقاط فوق التدرج */
} 
/* إضافة تأثير تباين عند المرور فوق الروابط */
.footer a:hover, 
.footer-container a:hover, 
.footer-main a:hover, 
.footer-bottom a:hover, 
.site-footer a:hover, 
#footer a:hover, 
div[class*="footer"] a:hover {
    color: #ffcc00 !important; /* تغيير لون الروابط عند التمرير إلى اللون الأصفر */
}
body {
    background: linear-gradient(to bottom, #ffffff, #f2f2f2); /* تدرج من الأبيض إلى الأبيض الغامق */
    background-repeat: no-repeat; /* منع تكرار الخلفية */
    background-attachment: fixed; /* تثبيت الخلفية عند التمرير */
    margin: 0;
    padding: 0;
}
/* استهداف البنرات وتنسيقها لتتناسب مع حجم الشاشة */
.banner {
    width: 100%; /* عرض البنر يمتد ليغطي كامل الشاشة */
    height: auto; /* يضبط الارتفاع تلقائيًا حسب نسبة العرض */
    max-height: 50vh; /* أقصى ارتفاع للبنر نصف الشاشة */
    object-fit: cover; /* يضمن أن الصورة تتكيف مع الإطار دون تشويه */
    margin: 0 auto; /* تمركز البنر في المنتصف */
}

/* إضافة تناسق للبنرات داخل الأقسام */
.section-banner img {
    width: 100%; /* عرض الصورة بالكامل */
    height: auto; /* الحفاظ على النسبة الأصلية للصورة */
    border-radius: 10px; /* زوايا مستديرة لزيادة الجمالية */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* إضافة ظل خفيف */
}

/* شاشة التحميل */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a1d37, #183d5d,#f8d36f); /* الكحلي الغامق، الكحلي الفاتح، والبرتقالي */
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fade-in 1s ease-in-out;
}

/* تأثير ظهور الشاشة */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* الشعار */
#loading-screen img {
  width: 150px; /* تعديل حجم الشعار حسب الحاجة */
  height: auto;
}