/**
 * Swiper Styles
 * Custom styles for Swiper sliders (products, projects, etc.)
 */

/* Products Swiper */
.products-swiper {
  position: relative;
  padding: 0 40px;
}

.products-swiper .swiper-slide {
  width: auto;
  padding: 0 10px;
}

.products-swiper .swiper-button-prev,
.products-swiper .swiper-button-next {
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  color: white;
  top: 50%;
  transform: translateY(-50%);
}

.products-swiper .swiper-button-prev {
  left: 0;
}

.products-swiper .swiper-button-next {
  right: 0;
}

.products-swiper .swiper-button-prev::after,
.products-swiper .swiper-button-next::after {
  font-size: 20px;
}

.products-swiper .swiper-pagination {
  position: relative;
  margin-top: 20px;
}

.products-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.products-swiper .swiper-pagination-bullet-active {
  background: var(--bs-primary);
}

@media (max-width: 768px) {
  .products-swiper .swiper-slide {
    width: 50%;
  }
}

@media (max-width: 480px) {
  .products-swiper .swiper-slide {
    width: 80%;
  }
}

/* Projects Swiper */
.projects-swiper {
  position: relative;
  padding: 0 40px;
}

.projects-swiper .swiper-slide {
  width: auto;
  padding: 0 10px;
}

.projects-swiper .swiper-button-prev,
.projects-swiper .swiper-button-next {
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  color: white;
  top: 50%;
  transform: translateY(-50%);
}

.projects-swiper .swiper-button-prev {
  left: 0;
}

.projects-swiper .swiper-button-next {
  right: 0;
}

.projects-swiper .swiper-button-prev::after,
.projects-swiper .swiper-button-next::after {
  font-size: 20px;
}

.projects-swiper .swiper-pagination {
  position: relative;
  margin-top: 20px;
}

.projects-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.projects-swiper .swiper-pagination-bullet-active {
  background: var(--bs-primary);
}

@media (max-width: 768px) {
  .projects-swiper .swiper-slide {
    width: 50%;
  }
}

@media (max-width: 480px) {
  .projects-swiper .swiper-slide {
    width: 80%;
  }
}



