/* ABOUT PAGE GLOBAL */
#about-page {
  font-family: "Poppins", "Roboto", sans-serif;
  background-color: #f7f7fb;
}

/* HERO */
.about-hero {
  background: linear-gradient(rgba(17, 15, 58, 0.9), rgba(17, 15, 58, 0.85)),
              url("img/about-hero.jpg") center/cover no-repeat;
  padding: 110px 0 80px;
}

.about-eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b5b9ff;
}

.about-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.3;
  margin-top: 10px;
}

.about-subtitle {
  font-size: 1rem;
  color: #e0e2ff;
  margin-top: 15px;
  max-width: 550px;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.8rem;
}

/* Hero Right Card */
.about-hero-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  font-size: 0.9rem;
}

.about-hero-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.about-hero-card p {
  color: #e5e5ff;
}

.about-hero-card li {
  color: #f3f3ff;
  margin-bottom: 4px;
}

/* GENERIC SECTION */
.about-section {
  background: #f7f7fb;
}

.about-section:nth-of-type(odd) {
  background: #ffffff;
}

.section-tag {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #2d286b;
}

.section-title {
  font-weight: 700;
  font-size: 1.7rem;
  margin-top: 8px;
  margin-bottom: 12px;
  color: #212121;
}

.section-text {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* STATS */
.about-stat {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px 10px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.about-stat h3 {
  margin: 0;
  font-size: 1.4rem;
  color: #2d286b;
  font-weight: 700;
}

.about-stat p {
  margin: 4px 0 0;
  font-size: 0.8rem;
  color: #666;
}

/* IMAGE WRAPPER */
.about-image-wrapper {
  position: relative;
  display: inline-block;
}

.about-image-tag {
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  background: #2d286b;
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* VALUES */
.about-values {
  background: #f0f2ff;
}

.value-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 16px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.value-card h5 {
  font-size: 0.98rem;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 6px;
  color: #212121;
}

.value-card p {
  font-size: 0.85rem;
  color: #555;
}

.value-icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f3ff;
  margin: 0 auto;
  font-size: 1.2rem;
  color: #2d286b;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
}

/* LIST */
.about-list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.about-list li {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 8px;
}

/* HIGHLIGHT BOX */
.about-highlight-box {
  background: #fff;
  border-radius: 14px;
  padding: 20px 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #2d286b;
}

.about-highlight-box h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #2d286b;
}

.about-highlight-box p {
  font-size: 0.9rem;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-hero {
    padding: 90px 0 60px;
    text-align: center;
  }

  .about-hero-card {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .about-title {
    font-size: 1.7rem;
  }
}
