
/* =========================
   TEAM SECTION
========================= */


/* =========================
   TEAM CARD
========================= */
.team-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
  height: 100%;
  position: relative;
}

/* HOVER */
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* =========================
   IMAGE
========================= */
.team-img {
  background: linear-gradient(135deg, var(--primary-blue), #1c2670);
  padding: 20px;
}

.team-img img {
  width: 100%;
  max-width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  border: 3px solid #fff;
}

/* =========================
   CONTENT
========================= */
.team-content {
  padding: 18px;
}

.team-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 6px;
}

/* DEGREE */
.team-content .degree {
  font-size: 13px;
  color: var(--accent-red);
  font-weight: 600;
  margin-bottom: 6px;
}

/* DESIGNATION */
.team-content .designation {
  font-size: 13px;
  color: #444;
  margin-bottom: 8px;
}

/* EXPERIENCE BADGE */
.team-content .experience {
  display: inline-block;
  font-size: 12px;
  background: rgba(38,52,137,0.1);
  color: var(--primary-blue);
  padding: 5px 12px;
  border-radius: 20px;
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 992px) {
  .team-img img {
    max-width: 100px;
    height: 100px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .team-content h4 {
    font-size: 14px;
  }

  .team-content .degree,
  .team-content .designation {
    font-size: 12px;
  }
}