/*** Team Section Start ***/
.team-item {
  background: #f2f2f2;
  /* Light background */
  text-align: center;
  border-radius: 8px;
  /* overflow: hidden;  Removed to allow shadow to look nice if needed, but clip-path handles header. */
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  transition: 0.5s;
}

.team-item .team-header {
  height: 140px;
  background: #26d48c;
  /* Match the green */
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
  width: 100%;
}

.team-item .team-img-container {
  margin-top: -70px;
  position: relative;
  z-index: 2;
}

.team-item .team-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 4px solid #26d48c;
  object-fit: cover;
  background: #fff;
  transition: transform 0.5s ease;
  /* The hover effect */
}

/* Hover effect: Only scale the image */
.team-item:hover .team-img {
  transform: scale(1.1);
}

.team-item h4 {
  margin-top: 15px;
  font-weight: 700;
  color: #000;
}

.team-item .team-designation {
  color: #888;
  margin-bottom: 15px;
  display: block;
  font-size: 14px;
}

.team-social-icon {
  width: 32px;
  height: 32px;
  background: #26d48c;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 5px;
  text-decoration: none;
  transition: 0.3s;
}

.team-social-icon:hover {
  background: #1ea86d;
  color: #fff;
}

/*** Team Section End ***/

/* Mobile Responsive Fixes - Showing 3 smaller cards */
@media (max-width: 768px) {
  .team-item {
    max-width: 100%;
    margin: 0 auto 15px;
  }

  .team-item .team-header {
    height: 80px;
  }

  .team-item .team-img {
    width: 80px;
    height: 80px;
    border: 3px solid #26d48c;
  }

  .team-item .team-img-container {
    margin-top: -40px;
  }

  .team-item h4 {
    font-size: 14px;
    margin-top: 10px;
  }

  .team-item .team-designation {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .team-social-icon {
    width: 24px;
    height: 24px;
    margin: 0 3px;
    font-size: 11px;
  }

  .team-content {
    padding-bottom: 10px !important;
  }

  .slick-slide {
    padding: 0 5px;
  }

  .slick-list {
    margin: 0 -5px;
  }
}

@media (max-width: 576px) {
  .team-item .team-header {
    height: 60px;
  }

  .team-item .team-img {
    width: 60px;
    height: 60px;
  }

  .team-item .team-img-container {
    margin-top: -30px;
  }

  .team-item h4 {
    font-size: 11px;
    margin-top: 8px;
  }

  .team-item .team-designation {
    font-size: 9px;
  }

  .team-social-icon {
    width: 20px;
    height: 20px;
    margin: 0 2px;
    font-size: 9px;
  }

  .slick-slide {
    padding: 0 3px;
  }

  .slick-list {
    margin: 0 -3px;
  }
}