/* =====================================
   ABOUT PAGE
   ===================================== */

/* =========================
   ABOUT HERO
========================= */
.about-hero-banner {
  background: url("../images/about-hero-bg.png") center/cover no-repeat;
  border-radius: 32px;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

.about-hero-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(31, 95, 174, 0.15);
  border-radius: 24px;
  max-width: 840px;
  width: 100%;
  text-align: center;
  padding: 42px 48px;
}

.about-hero-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
  font-weight: 700;
}

.about-hero-text {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--heading);
  max-width: 760px;
  margin-inline: auto;
}

@media (max-width: 991.98px) {

  .about-hero-banner {
    min-height: 430px;
    border-radius: 26px;
    padding: 32px 18px;
  }

  .about-hero-card {
    max-width: 100%;
    padding: 34px 28px;
    border-radius: 22px;
  }

  .about-hero-text {
    font-size: 1.02rem;
  }
}

@media (max-width: 767.98px) {

  .about-hero-banner {
    min-height: 360px;
    border-radius: 22px;
    padding: 20px 14px;
  }

  .about-hero-card {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .about-hero-title {
    font-size: 2.2rem;
    line-height: 1.1;
  }

  .about-hero-text {
    font-size: 0.96rem;
    line-height: 1.65;
  }
}

@media (max-width: 575.98px) {
  .about-hero-banner {
    min-height: 320px;
    border-radius: 18px;
  }

  .about-hero-card {
    padding: 24px 16px;
    border-radius: 18px;
  }

  .about-hero-title {
    font-size: 1.9rem;
  }

  .about-hero-text {
    font-size: 0.92rem;
  }
}

/* =====================================
   ABOUT BELIEF / MISSION / VISION
===================================== */
.about-belief-section {
  background: var(--white);
}

.belief-card {
  background: #edf3fa;
  border: 1px solid rgba(31, 95, 174, 0.18);
  border-radius: 32px;
  padding: 46px 36px;
}

.belief-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
}

.belief-highlight {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--heading);
}

.belief-text {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--heading);
  max-width: 860px;
  margin-inline: auto;
}

@media (max-width: 991.98px) {
  .belief-card {
    border-radius: 26px;
    padding: 38px 26px;
  }

  .belief-highlight {
    font-size: 1.2rem;
  }

  .belief-text {
    font-size: 1.02rem;
  }
}

@media (max-width: 767.98px) {
  .belief-card {
    border-radius: 22px;
    padding: 30px 20px;
  }

  .belief-title {
    font-size: 2.1rem;
  }

  .belief-highlight {
    font-size: 1.08rem;
  }

  .belief-text {
    font-size: 0.96rem;
    line-height: 1.7;
  }
}

@media (max-width: 575.98px) {
  .belief-card {
    border-radius: 18px;
    padding: 24px 16px;
  }

  .belief-title {
    font-size: 1.85rem;
  }

  .belief-highlight {
    font-size: 1rem;
  }

  .belief-text {
    font-size: 0.92rem;
  }
}

/* =====================================
   FOUNDER SECTION
===================================== */
.founder-section {
  background: var(--white);
}

.founder-image-card {
  max-width: 280px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #f8f8f8;
  box-shadow: var(--shadow-sm);
}

.founder-image-card img {
  width: 100%;
  height: auto;
  display: block;
}

.founder-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  font-weight: 700;
}

.founder-name {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading);
}

.founder-role {
  font-size: 1.05rem;
  color: var(--primary);
  font-weight: 500;
}

.founder-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--heading);
  max-width: 820px;
}

@media (max-width: 991.98px) {
  .founder-image-card {
    max-width: 250px;
  }

  .founder-title {
    font-size: clamp(1.9rem, 6vw, 3rem);
  }

  .founder-name {
    font-size: 1.7rem;
  }

  .founder-text {
    font-size: 1.02rem;
  }
}

@media (max-width: 767.98px) {
  .founder-image-card {
    max-width: 220px;
    border-radius: 20px;
  }

  .founder-title {
    font-size: 2rem;
    line-height: 1.15;
  }

  .founder-name {
    font-size: 1.5rem;
  }

  .founder-role {
    font-size: 1rem;
  }

  .founder-text {
    font-size: 0.96rem;
    line-height: 1.75;
  }
}

@media (max-width: 575.98px) {
  .founder-image-card {
    max-width: 200px;
    border-radius: 18px;
  }

  .founder-title {
    font-size: 1.8rem;
  }

  .founder-name {
    font-size: 1.35rem;
  }

  .founder-text {
    font-size: 0.92rem;
  }
}

/* =====================================
   MILESTONES & RECOGNITIONS
===================================== */
.milestones-section {
  background: var(--white);
}

.milestones-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
}

.milestones-content {
  max-width: 1120px;
}

.milestones-list {
  padding-left: 1.4rem;
  margin: 0;
}

.milestones-list li {
  font-size: 1.2rem;
  line-height: 1.85;
  color: var(--heading);
  margin-bottom: 14px;
}

.milestones-list li strong {
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .milestones-title {
    font-size: clamp(2rem, 6vw, 3.2rem);
  }

  .milestones-list li {
    font-size: 1.05rem;
    line-height: 1.8;
  }
}

@media (max-width: 767.98px) {
  .milestones-title {
    font-size: 2rem;
  }

  .milestones-list {
    padding-left: 1.2rem;
  }

  .milestones-list li {
    font-size: 0.98rem;
    line-height: 1.75;
    margin-bottom: 12px;
  }
}

@media (max-width: 575.98px) {
  .milestones-title {
    font-size: 1.8rem;
  }

  .milestones-list li {
    font-size: 0.94rem;
    line-height: 1.7;
  }
}
