/* ==============================
   ABOUT BANNER (CLEAN)
================================ */
.about-banner {
  padding: clamp(80px, 10vw, 140px) 0 clamp(90px, 12vw, 160px);
  background: linear-gradient(180deg, #f3f6f7 0%, #eef2f4 100%);
  text-align: center;
}

/* Title */
.about-banner h1 {
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

/* Soft underline accent */
.about-banner h1::after {
  content: "";
  width: 48px;
  height: 4px;
  background: var(--primary-color);
  display: block;
  margin: 16px auto 0;
  border-radius: 2px;
}

/* Breadcrumb */
.about-banner p {
  font-size: 15px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.about-banner p a {
  color: var(--text-dark);
  font-weight: 500;
}

.about-banner p a:hover {
  color: var(--primary-color);
}

/* Mobile refinement */
@media (max-width: 576px) {
  .about-banner p {
    font-size: 14px;
  }

  .about-banner h1::after {
    width: 36px;
    height: 3px;
  }
}

/* ==============================
   ABOUT PAGE – HERO SECTION
================================ */
.about-hero {
  background: linear-gradient(135deg, #f9f4fc 0%, #ffffff 60%);
  position: relative;
}

/* Badge */
.about-badge {
  display: inline-block;
  background: rgba(138, 74, 161, 0.1);
  color: var(--primary-color);
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 20px;
}

/* Bullet points */
.about-points {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.about-points li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--text-dark);
}

.about-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary-color);
  font-size: 14px;
}

/* Buttons */
.about-actions .btn {
  padding: 12px 26px;
  font-weight: 500;
}

/* Wrapper */
.about-image-wrapper {
  position: relative;
  width: 360px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

/* Decorative circle */
.about-circle {
  position: absolute;
  width: 320px;
  height: 320px;
  background: rgba(255, 114, 44, 0.15);
  border-radius: 50%;
  z-index: 1;
}

/* Image */
.about-image {
  position: relative;
  z-index: 2;

  /* REMOVE any card look */
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;

  /* PERFECT CENTERING */
  max-width: 500px;
  height: auto;
  display: block;
}

@media (max-width: 991px) {
  .about-image-wrapper {
    margin: 40px auto 0;
    width: 280px;
    height: 280px;
  }

  .about-circle {
    width: 260px;
    height: 260px;
  }

  .about-image {
    max-height: 300px;
  }

  .about-actions {
    text-align: center;
  }
}

/* ==============================
   TEACHING PHILOSOPHY
================================ */
.teaching-philosophy {
  background: #f9f9f9;
}

/* Card */
.philosophy-card {
  background: #ffffff;
  padding: 32px 26px;
  border-radius: 20px;
  text-align: center;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.philosophy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* Icon */
.philosophy-card .icon {
  width: 56px;
  height: 56px;
  background: rgba(138, 74, 161, 0.12);
  color: var(--primary-color);
  font-size: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

/* Title */
.philosophy-card h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* Text */
.philosophy-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ==============================
   MISSION / VISION / VALUES
================================ */
.mission-vision {
  background: linear-gradient(135deg, #ffffff 0%, #f6f1fa 100%);
}

/* Card */
.mv-card {
  background: #fff;
  padding: 36px 30px;
  border-radius: 22px;
  text-align: center;
  height: 100%;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  position: relative;
}

/* Highlight center card */
.mv-card.featured {
  background: linear-gradient(
    135deg,
    rgba(138, 74, 161, 0.08),
    rgba(255, 114, 44, 0.08)
  );
  border: 2px solid rgba(138, 74, 161, 0.25);
}

/* Hover */
.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* Icon */
.mv-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(138, 74, 161, 0.12);
  color: var(--primary-color);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

/* Title */
.mv-card h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}

/* Text */
.mv-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
}

/* Responsive */
@media (max-width: 576px) {
  .mv-card {
    padding: 28px 22px;
  }
}

/* ==============================
   WHO THIS IS FOR
================================ */
.who-for {
  background: #ffffff;
}

.who-card {
  background: #f6f1fa;
  padding: 32px 26px;
  border-radius: 22px;
  text-align: center;
  height: 100%;
  transition: all 0.35s ease;
}

.who-card:hover {
  transform: translateY(-6px);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.who-card i {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 18px;
}

.who-card h5 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 12px;
}

.who-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ==============================
   TEACHING JOURNEY
================================ */
.journey-section {
  background: #f3ecf6;
}

.journey-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.journey-timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary-color);
  opacity: 0.25;
}

/* ITEM */
.journey-item {
  position: relative;
  padding-left: 70px;
  margin-bottom: 40px;
}

.journey-item:last-child {
  margin-bottom: 0;
}

/* DOT */
.journey-item::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 6px;
  width: 18px;
  height: 18px;
  background: var(--primary-color);
  border-radius: 50%;
}

/* YEAR */
.journey-item .year {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  margin-bottom: 6px;
}

/* TEXT */
.journey-item p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 576px) {
  .journey-item {
    padding-left: 60px;
  }

  .journey-item .year {
    font-size: 18px;
  }
}
