/* حالت اولیه */
.banner_slider .swiper-slide .animation_img img {
  position: relative;
  width: 100%;
  display: block;
  transition: all 1s ease;
}

/* حالت animate → زمانی اجرا می‌شود که اسلاید بعدی وارد شود */
.banner_slider .swiper-slide.animate .animation_img img {
  transform: translateX(-50%) scaleX(2);
  filter: blur(10px);
}

/* حالت active → دقیقا وقتی اسلاید نمایش داده می‌شود */
.banner_slider .swiper-slide-active .animation_img img {
  transform: translateX(0) scaleX(1);
  filter: blur(0);
}

.banner_slider .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal{
      -webkit-mask-image: url("../../Images/design/curve.svg");
    mask-image: url("../../Images/design/curve.svg");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: #ffffff;
        position: absolute;
    bottom: -1px;
    inset-inline-start: 1rem;
    padding: 0 2.25rem 0 2.25rem;
    z-index: 100;
    transform: scale(-1);
    width: max-content;
}

.btn-prev.disabled,
.btn-next.disabled {
  opacity: 0.4;
  pointer-events: none; /* غیر فعال کردن کلیک */
}