/* ==========================================================================
   SECTION: TEAM - LIGHT & GREEN INDUSTRIAL THEME
   ========================================================================== */

.team-section {
  background-color: #fcfcfc; /* سفید متمایل به خاکستری بسیار روشن برای تفکیک */
  padding: 100px 0;
}

.team-card {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
}

/* افکت هوور روی کارت */
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  border-color: var(--primary-color);
}

/* بخش تصویر (Placeholder حرفه‌ای) */
.team-img-box {
  width: 100%;
  height: 280px;
  background: #f0f0f0; /* رنگ پیش‌فرض برای تصویر */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.team-img-box i {
  font-size: 5rem;
  color: #ddd;
}

/* نوار سبز تزیینی پایین تصویر */
.team-img-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-color);
  transform: scaleX(0);
  transition: 0.3s;
}

.team-card:hover .team-img-box::after {
  transform: scaleX(1);
}

.team-info {
  padding: 25px 20px;
}

.team-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 5px;
}

.team-role {
  font-size: 0.9rem;
  color: var(--primary-color); /* سبز برند */
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
}

.team-bio {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.6;
}

/* آیکون‌های ارتباطی */
.team-social {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #f5f5f5;
}

.team-social a {
  color: #bbb;
  margin: 0 8px;
  font-size: 1.1rem;
  transition: 0.3s;
}

.team-social a:hover {
  color: var(--primary-color);
}
