/* Team Section */
.team-section {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}
.team-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
}
.team-section h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #6f42c1;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}
.team-card {
  background: #fdfdfd;
  border-radius: 16px;
  padding: 25px 20px;
  margin-bottom: 30px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}
.team-card img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid #0d6efd;
}
.team-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.team-card .designation {
  font-size: 0.95rem;
  font-weight: 600;
  color: #6f42c1;
  margin-bottom: 15px;
}
.team-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}
