/* Card Swiper Styles */
.swiper {
  width: 100%;
  padding: 50px 0;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  background: #fff;
  width: 300px;
  border-radius: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  margin: 0 10px;
}

.card__image {
  width: 140px;
  height: 140px;
  margin: 20px auto;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #0693e3;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__content {
  padding: 20px;
  text-align: center;
}

.card__name {
  display: block;
  margin: 5px 0;
  font-size: 18px;
  color: #333;
  font-weight: 500;
}

.card__name strong {
  font-size: 20px;
  font-weight: 600;
}

.card__btn {
  display: inline-block;
  padding: 10px 24px;
  margin-top: 15px;
  border: none;
  border-radius: 5px;
  background: transparent;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 16px;
  font-weight: 500;
}

.card__btn:hover {
  background-color: #f0f0f0;
}

/* Updated Responsive Styles */
@media screen and (min-width: 769px) {
  .swiper {
    padding: 50px 0;
    overflow: hidden;
  }

  .swiper-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }

  .swiper-slide {
    width: 300px !important;
    margin-right: 20px !important;
    flex-shrink: 0;
  }

  .card {
    width: 100%;
    margin: 0;
  }
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
  .swiper {
    padding: 30px 0;
  }

  .card {
    width: 280px;
    margin: 0 auto;
  }

  .card__image {
    width: 120px;
    height: 120px;
  }

  .swiper-slide {
    display: flex;
    justify-content: center;
  }

  .card__name {
    font-size: 16px;
  }
  
  .card__name strong {
    font-size: 18px;
  }
  
  .card__btn {
    font-size: 14px;
    padding: 8px 20px;
  }
}

/* Swiper Navigation Styles */
.swiper-button-next,
.swiper-button-prev {
  color: #0693e3;
}

.swiper-pagination-bullet-active {
  background: #0693e3;
} 