.team-section {
  padding-top: 20px;
  padding-bottom: 100px;
  text-align: center;
}

.team-leader-row {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.team-leader-row .team-card {
  max-width: 350px;
}

.team-card {
  background-color: #f5f5f5;
  border-radius: 12px;
  padding: 40px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;

  width: 90%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
}

.team-card:hover {
  transform: translateY(-5px);
}

.profile-img-container {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 5px solid var(--primary-color);
  overflow: hidden;
  background: #fff;
}

.profile-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-dtls {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: inherit;
  gap: 5px;
}

.contact-links a {
  text-decoration: none;
  color: #666;
  transition: color 0.2s;
}

.contact-links a:hover {
  color: var(--primary-color);
}

@media (max-width: 992px) {
}

@media (max-width: 576px) {
  .team-card {
    margin: 0 auto;
  }
  .team-leader-row .team-card {
    max-width: 100%;
  }
}
