@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
.body {
  margin: 0;
  /* ======== RESPONSIVE BREAKPOINTS ======== */
  /* Large tablets and small desktops */
  /* Tablets */
  /* Mobile */
  /* Small mobile */
  /* Extra small mobile */
}
.body .hero {
  background-color: #000435;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8rem;
  padding: 6rem 10rem 8rem;
}
@media (max-width: 1200px) {
  .body .hero {
    padding: 4rem 6rem 6rem;
    gap: 4rem;
  }
}
@media (max-width: 900px) {
  .body .hero {
    flex-direction: column;
  }
}
.body .hero .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
}
.body .hero .text h1 {
  font-family: "Inter", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #e8eeff;
  margin: 0;
}
.body .hero .text h6 {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  color: #c9daff;
  margin: 0;
}
.body .hero img {
  width: 32rem;
  border-radius: 24px;
}
@media (max-width: 1300px) {
  .body .hero img {
    width: 20rem;
  }
}
@media (max-width: 900px) {
  .body .hero img {
    width: 30rem;
  }
}
@media (max-width: 550px) {
  .body .hero img {
    width: 15rem;
  }
}
.body .why-choose-us {
  background-color: #fff9d7;
  padding: 6rem 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
}
.body .why-choose-us .top-content {
  max-width: 750px;
  margin: 0 auto 3rem;
}
.body .why-choose-us .top-content h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000435;
  margin-bottom: 1rem;
}
.body .why-choose-us .top-content p {
  font-size: 1rem;
  font-weight: 300;
  color: #242320;
  line-height: 1.6;
}
.body .why-choose-us .data {
  background-color: #ffe9b7;
  border-radius: 36px;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1100px;
}
@media (max-width: 900px) {
  .body .why-choose-us .data {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .body .why-choose-us .data {
    grid-template-columns: 1fr;
  }
}
.body .why-choose-us .data .data-set {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-left: 3rem;
}
.body .why-choose-us .data .data-set .figure {
  font-size: 2.5rem;
  font-weight: 500;
  color: #000435;
  margin-top: 0;
  margin-bottom: 1rem;
}
.body .why-choose-us .data .data-set p {
  font-size: 14px;
  font-weight: 300;
  color: #242320;
  text-align: left;
  line-height: 1.4;
  max-width: 180px;
  margin: 0;
}
@media (max-width: 600px) {
  .body .why-choose-us {
    padding: 3rem 1.25rem;
  }
  .body .why-choose-us .data {
    padding: 1.5rem 1rem;
    border-radius: 20px;
  }
  .body .why-choose-us .data .data-set {
    padding-left: 0;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    align-items: flex-start;
  }
  .body .why-choose-us .data .data-set p {
    text-align: left;
    max-width: none;
  }
}
.body .programs {
  width: 100%;
  margin: 0;
  padding: 0;
}
.body .programs .program-block {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.body .programs .program-block.program-science {
  background-image: url("../assets/science-pattern.png");
}
.body .programs .program-block.program-iq {
  background-image: url("../assets/iq-pattern.png");
}
.body .programs .program-block.program-math {
  background-image: url("../assets/math-pattern.png");
}
.body .programs .program-block.program-ielts {
  background-image: url("../assets/ielts-pattern.png");
}
.body .programs .program-block.program-english {
  background-image: url("../assets/english-pattern.png");
}
.body .programs .program-block.program-personality {
  background-image: url("../assets/personality-pattern.png");
}
.body .programs .program-block.program-study {
  background-image: url("../assets/study-abroad-pattern.png");
}
.body .programs .program-block .program-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 5rem 4rem;
  display: flex;
  box-sizing: border-box;
  /* CONTENT BOX */
}
.body .programs .program-block .program-wrapper .program-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 540px;
  width: 100%;
  font-family: "Inter", sans-serif;
}
.body
  .programs
  .program-block
  .program-wrapper
  .program-content
  .program-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.body
  .programs
  .program-block
  .program-wrapper
  .program-content
  .program-header
  .program-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.body
  .programs
  .program-block
  .program-wrapper
  .program-content
  .program-header
  h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}
.body .programs .program-block .program-wrapper .program-content .program-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.body
  .programs
  .program-block
  .program-wrapper
  .program-content
  .program-tags
  .tag {
  font-size: 11px;
  padding: 6px 14px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-weight: 400;
  white-space: nowrap;
}
.body
  .programs
  .program-block
  .program-wrapper
  .program-content
  .program-description {
  font-size: 15px;
  font-weight: 300;
  color: #fff;
  line-height: 1.6;
}
.body .programs .program-block .program-wrapper .program-content .program-cta {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 12px 20px;
  background: #fff;
  color: #00214d;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: background 0.3s ease;
  width: fit-content;
}
.body
  .programs
  .program-block
  .program-wrapper
  .program-content
  .program-cta:hover {
  background: rgba(255, 255, 255, 0.9);
}
.body .programs .program-block.left .program-wrapper {
  justify-content: flex-start;
}
.body .programs .program-block.left .program-wrapper .program-content {
  align-items: flex-start;
  text-align: left;
}
.body .programs .program-block.right .program-wrapper {
  justify-content: flex-end;
}
.body .programs .program-block.right .program-wrapper .program-content {
  align-items: flex-end;
  text-align: right;
}
.body
  .programs
  .program-block.right
  .program-wrapper
  .program-content
  .program-header {
  flex-direction: row-reverse;
}
.body
  .programs
  .program-block.right
  .program-wrapper
  .program-content
  .program-tags {
  justify-content: flex-end;
}
@media (max-width: 1400px) {
  .body .programs .program-block .program-wrapper {
    padding: 4rem 3rem;
  }
}
@media (max-width: 1200px) {
  .body .programs .program-block .program-wrapper {
    padding: 4rem 2.5rem;
  }
  .body .programs .program-block .program-wrapper .program-content {
    max-width: 500px;
  }
  .body
    .programs
    .program-block
    .program-wrapper
    .program-content
    .program-header
    h3 {
    font-size: 1.6rem;
  }
}
@media (max-width: 1024px) {
  .body .programs .program-block .program-wrapper {
    padding: 3.5rem 2rem;
  }
  .body .programs .program-block .program-wrapper .program-content {
    max-width: 480px;
    gap: 1rem;
  }
  .body
    .programs
    .program-block
    .program-wrapper
    .program-content
    .program-header
    h3 {
    font-size: 1.5rem;
  }
  .body
    .programs
    .program-block
    .program-wrapper
    .program-content
    .program-description {
    font-size: 14px;
  }
}
@media (max-width: 900px) {
  .body .programs .program-block .program-wrapper {
    padding: 3rem 1.5rem;
  }
  .body .programs .program-block .program-wrapper .program-content {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .body .programs .program-block.left .program-wrapper,
  .body .programs .program-block.right .program-wrapper {
    justify-content: flex-start !important;
    padding: 3rem 2rem !important;
  }
  .body .programs .program-block.left .program-wrapper .program-content,
  .body .programs .program-block.right .program-wrapper .program-content {
    align-items: flex-start !important;
    text-align: left !important;
    max-width: 100%;
  }
  .body
    .programs
    .program-block.left
    .program-wrapper
    .program-content
    .program-header,
  .body
    .programs
    .program-block.right
    .program-wrapper
    .program-content
    .program-header {
    flex-direction: row !important;
  }
  .body
    .programs
    .program-block.left
    .program-wrapper
    .program-content
    .program-header
    .program-icon,
  .body
    .programs
    .program-block.right
    .program-wrapper
    .program-content
    .program-header
    .program-icon {
    width: 26px;
    height: 26px;
  }
  .body
    .programs
    .program-block.left
    .program-wrapper
    .program-content
    .program-header
    h3,
  .body
    .programs
    .program-block.right
    .program-wrapper
    .program-content
    .program-header
    h3 {
    font-size: 1.4rem;
  }
  .body
    .programs
    .program-block.left
    .program-wrapper
    .program-content
    .program-tags,
  .body
    .programs
    .program-block.right
    .program-wrapper
    .program-content
    .program-tags {
    justify-content: flex-start !important;
  }
  .body
    .programs
    .program-block.left
    .program-wrapper
    .program-content
    .program-description,
  .body
    .programs
    .program-block.right
    .program-wrapper
    .program-content
    .program-description {
    font-size: 14px;
  }
  .body
    .programs
    .program-block.left
    .program-wrapper
    .program-content
    .program-cta,
  .body
    .programs
    .program-block.right
    .program-wrapper
    .program-content
    .program-cta {
    align-self: flex-start !important;
    padding: 11px 18px;
  }
}
@media (max-width: 640px) {
  .body .programs .program-block.left .program-wrapper,
  .body .programs .program-block.right .program-wrapper {
    padding: 2.5rem 1.5rem !important;
  }
  .body .programs .program-block.left .program-wrapper .program-content,
  .body .programs .program-block.right .program-wrapper .program-content {
    gap: 1rem;
  }
  .body
    .programs
    .program-block.left
    .program-wrapper
    .program-content
    .program-header
    .program-icon,
  .body
    .programs
    .program-block.right
    .program-wrapper
    .program-content
    .program-header
    .program-icon {
    width: 24px;
    height: 24px;
  }
  .body
    .programs
    .program-block.left
    .program-wrapper
    .program-content
    .program-header
    h3,
  .body
    .programs
    .program-block.right
    .program-wrapper
    .program-content
    .program-header
    h3 {
    font-size: 1.3rem;
  }
  .body
    .programs
    .program-block.left
    .program-wrapper
    .program-content
    .program-description,
  .body
    .programs
    .program-block.right
    .program-wrapper
    .program-content
    .program-description {
    font-size: 13px;
    line-height: 1.55;
  }
}
@media (max-width: 480px) {
  .body .programs .program-block.left .program-wrapper,
  .body .programs .program-block.right .program-wrapper {
    padding: 2rem 1.25rem !important;
  }
  .body .programs .program-block.left .program-wrapper .program-content,
  .body .programs .program-block.right .program-wrapper .program-content {
    gap: 0.9rem;
  }
  .body
    .programs
    .program-block.left
    .program-wrapper
    .program-content
    .program-header
    .program-icon,
  .body
    .programs
    .program-block.right
    .program-wrapper
    .program-content
    .program-header
    .program-icon {
    width: 22px;
    height: 22px;
  }
  .body
    .programs
    .program-block.left
    .program-wrapper
    .program-content
    .program-header
    h3,
  .body
    .programs
    .program-block.right
    .program-wrapper
    .program-content
    .program-header
    h3 {
    font-size: 1.2rem;
  }
  .body
    .programs
    .program-block.left
    .program-wrapper
    .program-content
    .program-tags
    .tag,
  .body
    .programs
    .program-block.right
    .program-wrapper
    .program-content
    .program-tags
    .tag {
    font-size: 10px;
    padding: 5px 12px;
  }
  .body
    .programs
    .program-block.left
    .program-wrapper
    .program-content
    .program-description,
  .body
    .programs
    .program-block.right
    .program-wrapper
    .program-content
    .program-description {
    font-size: 12px;
    line-height: 1.5;
  }
  .body
    .programs
    .program-block.left
    .program-wrapper
    .program-content
    .program-cta,
  .body
    .programs
    .program-block.right
    .program-wrapper
    .program-content
    .program-cta {
    padding: 10px 16px;
    font-size: 13px;
  }
}
@media (max-width: 360px) {
  .body .programs .program-block.left .program-wrapper,
  .body .programs .program-block.right .program-wrapper {
    padding: 1.75rem 1rem !important;
  }
}
.body .testimonials {
  background-color: #b4e4e1;
  padding: 6rem 1.5rem;
  text-align: center;
  font-family: "Inter", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 2500px) {
  .body .testimonials {
    padding: 0;
  }
}
.body .testimonials h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #000435;
  margin-bottom: 6rem;
}
@media (min-width: 2500px) {
  .body .testimonials h2 {
    margin-bottom: 0;
    margin-top: 4rem;
  }
}
.body .testimonials .testimonials-grid {
  display: grid;
  align-items: center;
  justify-content: center;
  /* This is the fix — restrict the grid width so leftover items center naturally */
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
@media (min-width: 2500px) {
  .body .testimonials .testimonials-grid {
    grid-template-columns: repeat(5, 1fr);
    margin: 8rem 12rem;
    max-width: 2500px;
  }
}
@media (max-width: 1100px) {
  .body .testimonials .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 678px) {
  .body .testimonials .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
.body .testimonials .testimonial-card {
  background-color: #d4f1ee;
  padding: 1.5rem;
  border-radius: 24px;
  text-align: left;
  gap: 1rem;
  min-height: 7rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}
.body .testimonials .testimonial-card .review {
  font-weight: 500;
  font-size: 14px;
}
.body .testimonials .testimonial-card .testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}
.body .testimonials .testimonial-card .testimonial-avatar {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.body .testimonials .testimonial-card .testimonial-info {
  display: flex;
  flex-direction: column;
}
.body .testimonials .testimonial-card .meta {
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 500;
  color: #000435;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.body .testimonials .testimonial-card .meta .role {
  opacity: 0.8;
}
.body .testimonials .testimonial-card .meta .program {
  opacity: 0.6;
  font-weight: 500;
}
.body .testimonials .testimonial-card .name {
  font-size: 1rem;
  font-weight: 700;
  color: #000435;
  margin-bottom: 0.5rem;
}
.body .testimonials .testimonial-card p {
  font-size: 0.9rem;
  font-weight: 300;
  color: #242320;
  line-height: 1.45;
}
