.card.swiper-slide:hover img {
  scale: 1.1;
}

.card.swiper-slide img {
  transition: var(--transition);
}

.card.swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%; /* Cards have consistent height */
  position: relative; /* Required for absolute positioning of children */
  overflow: hidden; /* Ensures content stays within the card */
  border: none;
  border-radius: 12px;
}

.card.swiper-slide img {
  position: absolute; /* Allows full control over placement */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image fills the card */
  z-index: 1; /* Places the image behind the content */
}

.card.swiper-slide .card-content {
  position: relative;
  z-index: 2; /* Places content above the image */
  bottom: 25px; /* Adjust spacing if necessary */
  background-color: white;
  width: calc(100% - 50px);
  visibility: hidden;
  opacity: 0;
  transform: translateX(100px);
  transition: all 300ms ease-in-out 0ms;
  padding: 20px 30px;
  box-shadow: 0 5px 83px rgba(0, 28, 65, 0.14);
  border-radius: 6px;
}

.card.swiper-slide .card-content h4 {
  color: var(--primary);
  text-decoration: none;
  font-size: 1.25rem;
  line-height: 1.1;
}

.card.swiper-slide:hover .card-content {
  visibility: visible;
  opacity: 1;
  transform: translateX(25px);
  transition: all 300ms ease-in-out 0ms;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: 58px;
  height: 58px;
  font-size: 25px;
  line-height: 62px;
  text-align: center;
  border-radius: 29px;
  background-color: blue;
  border-radius: 50%;
  color: white; /* Arrow color */
  transition: var(--transition);
}

.swiper-button-next:hover, .swiper-button-prev:hover {
  font-size: 35px;
  background-color: blue;
}

.swiper-button-next::after, .swiper-rtl .swiper-button-prev::after {
  content: "";
}

.swiper-button-prev::after, .swiper-rtl .swiper-button-next::after {
  content: "";
}

/* Mobile */
@media (max-width: 992px) {
  .card.swiper-slide {
    min-height: 320px;
  }
}
/* DESKTOP */
@media (min-width: 992px) {
  .card.swiper-slide {
    min-height: 350px;
  }
}
/* WIDE DESKTOP */
@media (min-width: 1200px) {
  .card.swiper-slide {
    min-height: 460px;
  }
  .swiper {
    margin-bottom: -130px;
    margin-top: 50px;
  }
  .testimonials {
    margin-top: 100px;
  }
}/*# sourceMappingURL=swiper.min.css.map */