.team-carousel-section {
  padding: 80px 0;
  background: #f4f4f4;
  text-align: center;
}
.team-carousel-section h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--primary-color);
  margin-bottom: 10px;
}
.team-carousel-section p {
  font-size: 1rem;
  color: var(--text-color);
  max-width: 800px;
  margin: 0 auto 50px;
}
.team-swiper {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}
.swiper-wrapper {
  margin: 0;
}
.swiper-slide.team-member {
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  transform: perspective(1000px) scale(1);
  transition: transform 0.6s ease-in-out;
}
.swiper-slide.team-member.active-zoom {
  transform: perspective(1000px) scale(1.08);
  z-index: 2;
}
.team-member img {
  width: 200px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(1, 0, 1, 0.1);
  transition: transform 0.3s ease;
}
.team-member img:hover {
  transform: scale(1.05);
}
.team-member h3 {
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin: 10px 0 5px;
}
.team-member p {
  font-size: 0.95rem;
  color: var(--text-color);
}
