.team-member {
  transition: transform 0.3s ease-in-out;
}

.team-member:hover {
  transform: translateY(-10px);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #f8f9fa;
  color: #0d6efd;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #0d6efd;
  color: white;
  transform: translateY(-3px);
}

.team-member img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #f8f9fa;
  transition: transform 0.3s ease;
}

.team-member:hover img {
  transform: scale(1.05);
}

.section-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #0d6efd;
  margin: 20px auto;
}
