.team-section {
  padding: 80px 10%;
  background: radial-gradient(circle at top, #001f2f, #000);
  text-align: center;
}

.team-section h2 {
  font-size: 2.8em;
  margin-bottom: 50px;
  color: #00bcd4;
  text-shadow: 0 0 10px #00bcd4;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.team-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  box-shadow: 0 0 10px rgba(0, 188, 212, 0.4);
}

.team-card h3 {
  font-size: 1.4em;
  margin-bottom: 5px;
  color: #00796b;
}

.team-card .role {
  font-size: 1em;
  font-weight: bold;
  color: #00bcd4;
  margin-bottom: 10px;
}

.team-card .bio {
  font-size: 0.95em;
  color: #555;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .team-section {
    padding: 60px 20px;
  }

  .team-section h2 {
    font-size: 2.2em;
  }

  .team-card img {
    width: 100px;
    height: 100px;
  }
}