.about-section {
  padding: 80px 20px;
  background: #000;
  color: #fff;
  text-align: center;
}

.page-title {
  font-size: 36px;
  margin-bottom: 40px;
}

.about-box {
  max-width: 700px;
  margin: 20px auto;
  padding: 20px;
  border: 1px solid #333;
  border-radius: 12px;
}

.about-box h3 {
  margin-bottom: 10px;
  color: #9b5cff;
}

.about-box p {
  font-size: 15px;
  color: #ccc;
}

.team-title {
  margin-top: 60px;
  font-size: 28px;
}

/* TEAM CARD */
.team-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.team-card {
  position: relative;
  width: 780px;
  height: 450px;
  border-radius: 16px;
  overflow: hidden;
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* HOVER OVERLAY */
.team-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.3s ease;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-overlay h3 {
  margin-bottom: 10px;
  color: #9b5cff;
}

.team-overlay p {
  font-size: 14px;
  color: #ddd;
  margin: 2px 0;
}

.team-links {
  margin-top: 12px;
}

.team-links a {
  margin: 0 8px;
  color: #9b5cff;
  text-decoration: none;
  font-weight: 500;
}

.team-links a:hover {
  text-decoration: underline;
}
