.features-swiper-container {
  position: relative;
  padding-bottom: 70px;
}

.features-swiper {
  width: 100%;
}

.swiper-controls-wrapper {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.play-pause-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: none;
  background-color: #333;
  border-radius: 50%;
  /*order: 1;*/
}

.play-pause-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.play-pause-btn i {
  font-size: 14px;
  color: var(--bs-light);
}

.swiper-pagination {
  position: relative;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #333;
  padding: 10px 20px;
  border-radius: 30px;
  width: auto;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: rgba(0,84,173,0.75);
  border-radius: 50%;
  cursor: pointer;
  transition: width 0.4s ease, background-color 0.4s ease, transform 0.3s ease;
}

.swiper-pagination-bullet:hover {
  transform: scale(1.2);
}

.swiper-pagination-bullet-active {
  width: 20px;
  background-color: var(--bs-primary);
  border-radius: 8px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom,0px);
  top: var(--swiper-pagination-top,auto);
  left: 0;
  width: 100%;
}

