/* عنوان البنر: تدرّج سماوي ↔ أصفر (بدون أي أنيميشن) */
.bannar_6 .advanced-slider__caption__inner__content__heading{
  /* شكل النص */
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 .35rem;
  text-align: center;

  /* لون احتياطي لو ما يدعم قصّ الخلفية للنص */
  color: #ffffff;

  /* التدرّج */
  background: linear-gradient(90deg, #22d3ee 0%, #fde047 100%); /* Cyan → Yellow */
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  /* تحسين قراءة خفيف (اختياري) */
  text-shadow: 0 2px 10px rgba(0,0,0,.12);
}

/* دعم متصفحات لا تدعم background-clip:text — نرجع للون الأبيض */
@supports not ((-webkit-background-clip: text) or (background-clip: text)){
  .bannar_6 .advanced-slider__caption__inner__content__heading{
    color: #ffffff;
    background: none;
    text-shadow: none;
  }
}