* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* PAGE HERO */

.page-hero {
  background: #111;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.page-hero h1 {
  font-size: 38px;
  font-weight: 600;
}

/* ABOUT SECTION */

.about-section {
  padding: 80px 0;
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
}

.about-content h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 15px;
  color: #555;
  line-height: 1.7;
}

/* MISSION VISION */

.mission-vision {
  background: #f8f8f8;
  padding: 80px 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mission-box,
.vision-box {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.mission-icon {
  font-size: 40px;
  color: #d4a24c;
  margin-bottom: 20px;
}

.mission-box h3,
.vision-box h3 {
  margin-bottom: 15px;
  font-size: 24px;
}

.stats-section {
  padding: 80px 0;
  background: #111;
  color: white;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-box h2 {
  font-size: 42px;
  color: #d4a24c;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 16px;
}

/* TESTIMONIAL */

.testimonial-section {
  padding: 90px 20px;
  background: linear-gradient(to bottom, #f8f8f8, #ffffff);
}

.testimonial-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.section-subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #d4a24c;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.testimonial-heading h2 {
  font-size: 40px;
  color: #111;
  margin-bottom: 15px;
  line-height: 1.2;
}

.testimonial-heading p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.testimonial-card {
  background: #fff;
  border-radius: 22px;
  padding: 34px 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: 0.35s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.testimonial-card.featured {
  border: 1px solid rgba(212, 162, 76, 0.35);
}

.quote-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(212, 162, 76, 0.12);
  color: #d4a24c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 26px;
}

.student-info {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.student-photo {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.student-info h4 {
  font-size: 20px;
  color: #111;
  margin: 0 0 4px;
}

.student-info span {
  font-size: 14px;
  color: #777;
}

.stars {
  color: #f5b301;
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.testimonial-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.9;
  margin: 0;
}

@media (max-width: 991px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .testimonial-heading h2 {
    font-size: 34px;
  }

  .testimonial-card {
    padding: 28px 24px;
  }

  .student-photo {
    width: 72px;
    height: 72px;
  }
}

@media (max-width: 768px) {
  .testimonial-section {
    padding: 70px 15px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-heading {
    margin-bottom: 35px;
  }

  .testimonial-heading h2 {
    font-size: 28px;
  }

  .testimonial-heading p {
    font-size: 15px;
  }

  .testimonial-card {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .quote-icon {
    width: 56px;
    height: 56px;
    font-size: 18px;
    margin-bottom: 20px;
  }

  .student-info {
    gap: 14px;
    margin-bottom: 18px;
  }

  .student-photo {
    width: 64px;
    height: 64px;
  }

  .student-info h4 {
    font-size: 18px;
  }

  .student-info span {
    font-size: 13px;
  }

  .stars {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .testimonial-card p {
    font-size: 15px;
    line-height: 1.8;
  }
}

@media (max-width: 480px) {
  .testimonial-heading h2 {
    font-size: 24px;
  }

  .testimonial-heading p {
    font-size: 14px;
  }

  .testimonial-card {
    padding: 22px 18px;
  }

  .student-photo {
    width: 58px;
    height: 58px;
  }

  .student-info h4 {
    font-size: 17px;
  }

  .testimonial-card p {
    font-size: 14px;
  }
}

/* @media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 90%;
    margin: 0 5%;
  }

  .nav {
    display: none;
  }
} */

/* CTA section wrapper */
.programs-cta {
  background: #d4a24c; /* premium gold tone */
  color: #fff;
  padding: 70px 20px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* inner content width control */
.programs-cta .cta-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* first line with program list */
.programs-line {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 14px;
}

.programs-line strong {
  display: block;
  font-size: 18px;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

/* second benefits line */
.benefits-line {
  font-size: 15px;
  opacity: 0.95;
  margin-bottom: 25px;
}

/* main heading */
.cta-heading {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.2;
}

/* call button */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #111;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.23);
}

/* tiny decorative accent if desired, optional */
.programs-cta::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.1), transparent);
  pointer-events: none;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .founder-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .mission-grid {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .cta-heading {
    font-size: 28px;
  }

  .programs-line strong {
    font-size: 16px;
  }

  .programs-line span,
  .benefits-line {
    font-size: 14px;
  }

  .cta-btn {
    padding: 12px 24px;
    font-size: 15px;
  }
}
