/* ===== تحسين مظهر البنر الرئيسي ===== */
.hero-section h1 {
  font-size: 65px !important;      /* تكبير العنوان */
  font-weight: 800 !important;     /* جعله أكثر سماكة */
  text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.6); /* ظل أنيق للنص */
  color: #ff6600 !important;       /* اللون البرتقالي الحيوي */
}

.hero-section p {
  font-size: 20px !important;
  color: #f5f5f5 !important;       /* لون النص الفاتح */
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-section .btn-primary {
  background-color: #ff7a00 !important;
  border-radius: 10px !important;  /* حواف ناعمة */
  font-size: 20px !important;
  font-weight: 600 !important;
  padding: 12px 28px !important;
  transition: 0.3s ease-in-out;
}

.hero-section .btn-primary:hover {
  background-color: #ff9b2f !important;
  transform: scale(1.05);
}