/* Custom Swiper Pagination Styles */
.swiper-pagination-custom .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(33, 61, 52, 0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
  margin: 0 4px;
  cursor: pointer;
}

.swiper-pagination-custom .swiper-pagination-bullet-active {
  background: #213d34;
  transform: scale(1.25);
}

.swiper-pagination-custom .swiper-pagination-bullet:hover {
  background: rgba(33, 61, 52, 0.5);
}

@media (min-width: 640px) {
  .swiper-pagination-custom .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}

@media (min-width: 1024px) {
  .swiper-pagination-custom .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
}