

/* إعداد الخط الافتراضي */
body {
    font-family: 'Roboto', sans-serif;
  }
  /*-------------------------------------------------------------------------------------------*/
  /* تخصيص الناف بار */
  .navbar-brand img {
    width: 130px; /* حجم أكبر للشعار */
    height: auto; /* الحفاظ على نسبة العرض إلى الارتفاع */
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem 1rem; /* إضافة مسافات لعناصر الناف بار */
  }
  
  .form-control.bd {
    border: 2px solid #dc3545; /* لون أحمر للإطار */
    border-radius: 20px; /* زوايا دائرية */
  }
  
  .btn-outline-danger {
    border-radius: 20px; /* زوايا دائرية للزر */
  }
  /*--------------------------------------------------------------------------------------------*/


 /* تنسيق خاص بكروت مواعيد العمل ورقم التليفون والعنوان   */



/* ✅ تنسيق الكروت الموحدة */
/* ✅ تنسيق الكروت */
/* ✅ تنسيق الكروت بتنسيق موحد */
.contact-card {
  min-height: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ✅ أيقونات محسّنة */
.icon-style {
  color: #d32f2f;
  transition: transform 0.3s ease;
}

.contact-card:hover .icon-style {
  transform: scale(1.2);
}

/* ✅ عناوين الكروت */
.contact-card h6 {
  font-size: 16px;
  color: #222;
}

/* ✅ نص داخل الكرت */
.contact-card p {
  font-size: 14px;
  color: #555;
}

/* ✅ تأكيد على تنسيق الرابط داخل رقم الهاتف */
.contact-card a:hover {
  color: #d32f2f;
}





  
  /*---------------------------------------------------------------------------------------------*/
  
  /*-------------------------------------------------------------------------------------------*/
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  /*-------------------------------------------------------------------------------------------*/
  
  /* تخصيص الفوتر */
  .footer {
    background-color: #212529; /* لون داكن للخلفية */
    color: #ffffff; /* لون النص أبيض */
    padding: 60px 0;
    width: 100%; /* ضمان تغطية العرض الكامل */
  }
  
  .footer h2 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #f8f9fa; /* لون العناوين */
  }
  
  .footer p, .footer a {
    color: #adb5bd; /* لون النص */
    font-size: 14px;
  }
  
  .footer a:hover {
    color: #f8f9fa;
    text-decoration: none; /* إزالة الخط السفلي */
  }
  
  .footer ul {
    list-style: none;
    padding: 0;
  }
  
  .footer ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .footer-social span {
    margin-right: 10px;
  }
  
  .footer-social span a {
    color: #adb5bd;
    font-size: 18px;
  }
  
  .footer-bottom {
    background-color: #181a1d; /* لون أغمق للجزء السفلي */
    color: #adb5bd;
    text-align: center;
    padding: 20px 0;
  }
  
  .footer .icon {
    color: rgb(236, 61, 61); /* لون مميز للأيقونات */
  }
  
  .footer-widget-item img {
    width: 150px; /* حجم شعار الفوتر */
  }
  
  
  /*------------------------------------------------------------------------------------------------------*/