.logistics-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.bg-shape {
  position: absolute;
  width: 60%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(180deg, #f6a22a, #f04e23);
  border-radius: 0 120px 120px 0;
  z-index: 0;
}

.swiper {
  width: 90%;
  margin: auto;
  position: relative;
  z-index: 2;
}

.swiper-slide {
  border-radius: 30px;
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 30px;
}

.swiper-pagination {
  position: absolute;
  right: 60px !important;
  bottom: 40px !important;
  text-align: right;
}

.swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #f04e23;
}

/* Large Laptop */
@media (max-width: 1200px) {
  .swiper-slide img {
    height: 320px;
  }

  .bg-shape {
    width: 70%;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .swiper-slide img {
    height: 280px;
  }

  .bg-shape {
    width: 80%;
    border-radius: 0 80px 80px 0;
  }

  .swiper-pagination {
    right: 40px !important;
    bottom: 30px !important;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .logistics-section {
    padding: 80px 0;
  }

  .bg-shape {
    width: 100%;
    height: 60%;
    border-radius: 0 0 80px 80px;
  }

  .swiper-slide img {
    height: 220px;
  }

  .swiper-pagination {
    right: 20px !important;
    bottom: 20px !important;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .swiper-slide img {
    height: 180px;
  }

  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}
