/* about.css */

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.about-main-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: var(--radius-md);
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(232, 35, 42, .4);
}

.badge-num {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
}

.badge-label {
  font-size: .72rem;
  opacity: .85;
}

.about-content {
  padding-top: 8px;
}

.about-title {
  font-size: clamp(1.3rem, 3.5vw, 1.7rem);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
  margin: 12px 0 14px;
}

.about-text {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.about-stats-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.about-stat {
  text-align: center;
}

.as-num {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}

.as-label {
  font-size: .75rem;
  color: var(--text-muted);
}

.about-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* MV Cards */
.mv-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  height: 100%;
  transition: var(--transition);
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.featured-mv {
  background: linear-gradient(135deg, var(--secondary), #2d2d50);
  border-color: transparent;
}

.featured-mv .mv-title,
.featured-mv .mv-desc {
  color: rgba(255, 255, 255, .85) !important;
}

.mv-icon {
  width: 62px;
  height: 62px;
  background: rgba(0, 0, 0, .06);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--mc);
  font-size: 1.5rem;
  transition: var(--transition);
}

.featured-mv .mv-icon {
  background: rgba(255, 255, 255, .1);
}

.mv-card:hover .mv-icon {
  background: var(--mc);
  color: #fff;
  transform: rotate(-5deg);
}

.mv-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.mv-desc {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Team */
.team-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ta-color), color-mix(in srgb, var(--ta-color) 70%, #000));
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 6px 18px color-mix(in srgb, var(--ta-color) 40%, transparent);
}

.team-avatar-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 14px;
  overflow: hidden;
  border: 3px solid var(--border);
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .1);
}

.team-card:hover .team-avatar-wrap {
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(232, 35, 42, .25);
}

.team-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .4s ease;
}

.team-card:hover .team-avatar-img {
  transform: scale(1.06);
}

/* Image না থাকলে fallback — নামের প্রথম অক্ষর */
.team-avatar-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .team-avatar-wrap {
    width: 72px;
    height: 72px;
  }

  .team-avatar-fallback {
    font-size: 1.4rem;
  }
}

.team-name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.team-role {
  font-size: .75rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.ts-link {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: .78rem;
  transition: var(--transition);
}

.ts-link:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Promise */
.promise-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 20px 14px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition);
}

.promise-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232, 35, 42, .15);
}

.promise-icon {
  width: 50px;
  height: 50px;
  background: color-mix(in srgb, var(--pc) 12%, transparent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--pc);
  font-size: 1.2rem;
  transition: var(--transition);
}

.promise-card:hover .promise-icon {
  background: var(--pc);
  color: #fff;
}

.promise-title {
  font-size: .8rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.promise-desc {
  font-size: .72rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

@media(max-width:767px) {
  .about-badge {
    bottom: -12px;
    right: -8px;
    padding: 12px 16px;
  }

  .badge-num {
    font-size: 1.3rem;
  }

  .about-intro {
    padding-top: 30px;
  }

  .col-lg-5 {
    margin-bottom: 24px;
  }
}