/* بخش درباره ما */
.about-wrapper {
  padding-top: 80px;
  border-radius: 16px;
  font-family: 'IranSans', sans-serif;
  color: white;
  padding-bottom: 0;
}

.about-banner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-banner img {
  width: 30%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 40px;
}

.about-content {
  background-color: rgba(0, 47, 95, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 24px;
  box-sizing: border-box;
}

.about-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
}

.about-content p {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 12px;
  max-width: 900px;
  text-align: justify;
  padding: 0 24px;
}

/* بخش مدیران */
.managers-section {
  margin-top: 80px;
}

.managers-section h3 {
  font-size: 36px;
  font-weight: bold;
  font-family: 'IranSansBold', 'IranSans', sans-serif;
  color: white;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 0.5px;
  line-height: 1.4;
  position: relative;
}

.managers-section h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: white;
  margin: 16px auto 0;
  border-radius: 2px;
  opacity: 0.6;
}

.manager-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

/* کارت مدیران */
.manager-card {
  width: calc(33.333% - 40px);
  background-color: rgba(0, 47, 95, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
  color: white;
  padding: 20px;
  border-radius: 12px;
  font-family: 'IranSans', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 440px;
  box-sizing: border-box;
}

/* تصویر مدیر */
.manager-photo {
  position: relative;
  width: 160px;
  height: 160px;
  margin-bottom: 16px;
}

.manager-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 4px solid white;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.manager-photo:hover img {
  transform: scale(1.05);
}

/* آیکون‌های شبکه اجتماعی */
.social-icons {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.manager-photo:hover .social-icons {
  opacity: 1;
}

.social-icons img {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 0 2px white);
  transition: transform 0.2s ease;
}

.social-icons img:hover {
  transform: scale(1.2);
}

/* متن کارت */
.manager-card h4 {
  font-size: 18px;
  margin-top: 8px;
  margin-bottom: 6px;
}

.manager-card .role {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 8px;
}

.manager-card .bio {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 0;
  padding: 0 10px;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ریسپانسیو موبایل */
@media (max-width: 768px) {
  .about-content {
    padding: 32px 16px;
  }

  .about-content p {
    padding: 0 12px;
    font-size: 15px;
    text-align: center;
  }

  .manager-grid {
    flex-direction: column;
    align-items: center;
  }

  .manager-card {
    width: 90%;
    height: auto;
    margin-bottom: 40px;
  }
}

footer {
  margin-bottom: 0;
  padding-top: 40px;
  margin-top: 80px;
}

.about-paragraph p {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 16px;
  color: #fff;
  text-align: justify;
  white-space: pre-line;
}

