/* Team Carousel Styling */
.team-section {
  padding: 80px 0;
}

.team-carousel {
  margin-top: 50px;
  position: relative;
}

.team-carousel .item {
  padding: 10px;
}

.team-carousel .team-col {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  min-height: 400px;
  display: block;
  background: #fff;
}

.team-carousel .team-col:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.team-carousel .team-col img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.team-carousel .team-col:hover img {
  transform: scale(1.05);
}

.team-carousel .text-column {
  padding: 25px 20px;
  background: #fff;
  position: relative;
  z-index: 2;
}

.team-carousel .text-column .heading {
  font-size: 22px;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(to right, #fc294b 0%, #913596 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.team-carousel .text-column .subheading {
  font-size: 16px;
  color: #666;
  margin-bottom: 12px;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}

.team-carousel .text-column .text {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
  font-family: 'Source Sans Pro', sans-serif;
}

.team-carousel .social-icons {
  margin-top: 15px;
}

.team-carousel .social-icons ul {
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.team-carousel .social-icons ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #f5f5f5;
  color: #333;
  transition: all 0.3s ease;
}

.team-carousel .social-icons ul li a:hover {
  background: linear-gradient(to right, #fc294b, #913596);
  color: #fff;
  transform: translateY(-3px);
}

/* Carousel Navigation Buttons */
.team-carousel .owl-nav {
  display: block !important;
}

.team-carousel .owl-nav button {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.95) !important;
  color: #000 !important;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15) !important;
  border: none !important;
  opacity: 1 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.team-carousel .owl-nav button:hover {
  background: linear-gradient(to right, #fc294b, #913596) !important;
  color: #fff !important;
  box-shadow: 0 5px 15px rgba(145,53,150,0.4) !important;
  transform: translateY(-50%) scale(1.1);
}

.team-carousel .owl-nav .owl-prev {
  left: -22px;
}

.team-carousel .owl-nav .owl-next {
  right: -22px;
}

.team-carousel .owl-nav button.disabled {
  opacity: 0.5 !important;
}

/* Carousel Dots */
.team-carousel .owl-dots {
  margin-top: 30px;
  text-align: center;
}

.team-carousel .owl-dot {
  display: inline-block;
  margin: 0 5px;
}

.team-carousel .owl-dot span {
  width: 12px;
  height: 12px;
  background: #ddd;
  border-radius: 50%;
  display: block;
  transition: all 0.3s ease;
}

.team-carousel .owl-dot.active span,
.team-carousel .owl-dot:hover span {
  background: linear-gradient(to right, #fc294b, #913596);
  width: 30px;
  border-radius: 10px;
}
