/* Service Card Image Styles */
.services .service-card .service-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.services .service-card .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.services .service-card:hover .service-image img {
  transform: scale(1.05);
}

/* Services Slider Styles */
.services-slider-wrapper {
  padding: 20px 0;
}

.services-swiper {
  padding-bottom: 60px;
}

.services-swiper .swiper-button-next,
.services-swiper .swiper-button-prev {
  color: var(--accent-color);
  background: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.services-swiper .swiper-button-next:hover,
.services-swiper .swiper-button-prev:hover {
  background: var(--accent-color);
  color: white;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.services-swiper .swiper-button-next::after,
.services-swiper .swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}

.services-swiper .swiper-pagination {
  bottom: 0;
}

.services-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--accent-color);
  opacity: 0.3;
  transition: all 0.3s ease;
}

.services-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  width: 30px;
  border-radius: 6px;
}

/* Ensure service cards have consistent height */
.services .service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.services .service-card p {
  flex-grow: 1;
}
