/* Add custom CSS styles below */


.s-block--content-with-image>div>div>div>div>a{
display:none !important;
}
.main-home-slider{
   border-radius: 10px !important;
}
.swiper-slide,.s-slider-swiper-wrapper{
 border-radius: 10px !important;
}
#main-slider-1-0 img{
 border-radius: 10px !important;
 height:582px !important;
  overflow: hidden !important;
  object-fit:cover;
}
#main-slider-1-0{
 height: 590px !important;
    width: 96% !important;
    margin: 18px auto -10px auto !important;
      overflow: hidden !important;
      background:transparent !important;
}
/* 📱 موبايل صغير */
@media (max-width: 576px) {
  #main-slider-1-0 {
    height: 490px !important;
  }
  #main-slider-1-0 img {
    height: 480px !important;
  }
}

/* 📱 موبايل متوسط أو تابلت صغير */
@media (min-width: 577px) and (max-width: 768px) {
  #main-slider-1-0 {
    height: 510px !important;
  }
  #main-slider-1-0 img {
    height: 500px !important;
  }
}

/* 💻 تابلت كبير أو لابتوب صغير */
@media (min-width: 769px) and (max-width: 1024px) {
  #main-slider-1-0 {
    height: 540px !important;
  }
  #main-slider-1-0 img {
    height: 530px !important;
  }
}
.banner-entry {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.banner-entry:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

/* تغميقة خفيفة على الصورة */
.banner-entry::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.6));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.banner-entry:hover::before {
  opacity: 1;
}

/* الصورة */
.banner-entry img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.banner-entry:hover img {
  transform: scale(1.08);
}

/* الدائرة */
.banner-entry::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 2;
  box-shadow: 0 0 12px rgba(241, 90, 41, 0.25);
}

/* السهم بلون غرسًا */
.banner-entry:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23F15A29" height="28" viewBox="0 0 24 24" width="28" xmlns="http://www.w3.org/2000/svg"><path d="M12 4l1.41 1.41L7.83 11H20v2H7.83l5.58 5.59L12 20l-8-8z"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px;
  border-color: rgba(241, 90, 41, 0.85);
  box-shadow: 0 0 20px rgba(241, 90, 41, 0.45);
}

/* 🔽 تعديلات الشاشات الصغيرة */
@media (max-width: 768px) {
  .banner-entry::after {
    width: 45px;
    height: 45px;
    border-width: 1.5px;
    box-shadow: 0 0 10px rgba(241, 90, 41, 0.35);
  }
  .banner-entry:hover::after {
    background-size: 22px;
  }
}

/* 🔽 موبايلات أصغر */
@media (max-width: 480px) {
  .banner-entry::after {
    width: 36px;
    height: 36px;
    border-width: 1.2px;
    box-shadow: 0 0 8px rgba(241, 90, 41, 0.25);
  }
  .banner-entry:hover::after {
    background-size: 18px;
  }
}