@font-face {
  src: url('../fonts/Baloo-Regular.ttf') format('truetype');
  font-family: 'Baloo-Regular';
  font-weight: normal;
  font-style: normal;
}

@font-face {
  src: url('../fonts/BebasNeue Bold.ttf') format('truetype');
  font-family: 'BebasNeue-Bold';
  font-weight: bold;
  font-style: normal;
}

@font-face {
  src: url('../fonts/GillSans.ttc') format('truetype');
  font-family: 'GillSans';
  font-weight: normal;
  font-style: normal;
}

@font-face {
  src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
  font-family: 'Montserrat-Bold';
  font-weight: normal;
  font-style: normal;
}

@font-face {
  src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
  font-family: 'Montserrat-Regular';
  font-weight: normal;
  font-style: normal;
}

@font-face {
  src: url('../fonts/Montserrat-SemiBold.ttf') format('truetype');
  font-family: 'Montserrat-SemiBold';
  font-weight: normal;
  font-style: normal;
}

@font-face {
  src: url('../fonts/Noteworthy.ttc') format('truetype');
  font-family: 'Noteworthy';
  font-weight: normal;
  font-style: normal;
}

/* ===== HERO SECTION ===== */
.wunderkins-hero {
  background: url("../images/wunderkins/vza-wunderkins-landing-page-final-02-1980.jpg") center left /cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 60px 100px;
  position: relative;

}

/* Overlay tint for better text visibility */
.wunderkins-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Container for text + form together */

.wunderkins-wrapper {
  display: flex;
  width: 100%;
  max-width: 1400px;
  height: 100%;
}

.hero-left-space {
  flex: 1;
  /* left half blank */
}

.hero-right-content {
  margin-left: 300px;
  flex: 2;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  gap: 20px;
  z-index: 1;
}

/* ===== LEFT (Text) ===== */
.wunderkins-left {
  color: #000;
  max-width: 450px;
}

.wunderkins-logo {
  width: 225px;
  margin-bottom: 16px;
}

.wunderkins-title {
  font-family: 'BebasNeue-Bold';
  font-size: 44px;
  line-height: 2.8rem;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: left;
}

.wunderkins-subtitle {
  font-family: 'Montserrat-SemiBold';
  font-size: 18px;
  color: #000;
  text-align: left;
}

/* ===== RIGHT (Form) ===== */
.wunderkins-form {
  background-color: rgb(218, 218, 218);
  border-radius: 10px;
  padding: 20px 30px;
  width: 420px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: #000 1px solid;
}

.wunderkins-form h2 {
  text-align: center;
  font-family: 'Montserrat-Bold';
  font-size: 26px;
  margin-bottom: 5px;
}

.wunderkins-form h3 {
  text-align: center;
  font-family: 'Montserrat-Bold';
  font-size: 20px;
  margin-bottom: 10px;
}

.wunderkins-form input,
.wunderkins-form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: 'Montserrat-Regular';
  font-size: 15px;
  border: #000 1px solid;

}


.wunderkins-form input::placeholder,
.wunderkins-form textarea::placeholder {
  font-family: 'Montserrat-SemiBold';
  color: #808080;
}

.two-inputs {
  display: flex;
  gap: 10px;
}

.wunderkins-form .hero_form_submit_btn {
  width: 100%;
  background: #f89922;
  color: #000;
  font-family: 'Montserrat-SemiBold';
  font-size: 16px;
  border: none;
  border-radius: 5px;
  padding: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.wunderkins-form .hero_form_submit_btn:hover {
  background: #e6891d;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .wunderkins-hero {
    /* background: url("../images/wunderkins/1.jpg") center center/cover no-repeat; */
    background-position: center center;
    padding: 40px 30px;
    justify-content: center;
  }

  .hero-left-space {
    display: none;
  }

  .hero-right-content {
    margin-left: 0;
    padding: 0 20px;
    align-items: center;
    text-align: center;
  }

  .wunderkins-title {
    font-size: 48px;
  }

  .wunderkins-subtitle {
    font-size: 16px;
  }

  .wunderkins-left {
    max-width: 100%;
  }

  .wunderkins-form {
    width: 100%;
    max-width: 380px;
  }

}


@media (max-width: 768px) {
  .wunderkins-wrapper {
    flex-direction: column;
    /* ✅ stack content vertically */
    align-items: center;
    justify-content: center;
  }

  .hero-left-space {
    display: none;
    /* hide the blank left section */
  }

  .hero-right-content {
    flex-direction: column;
    /* ✅ make text + form vertical */
    /* align-items: center; */
    justify-content: center;
    gap: 40px;
    padding: 0 20px;
    text-align: center;
  }

  .wunderkins-left {
    text-align: center;
  }

  .wunderkins-form {
    width: 100%;
    max-width: 420px;
  }

  .wunderkins-form h2 {
    font-size: 24px;
  }

  .wunderkins-title {
    font-size: 44px;
  }

  .wunderkins-subtitle {
    font-size: 15px;
  }

}

@media (max-width: 420px) {

  .wunderkins-title {
    font-size: 40px;
  }

  .wunderkins-form h2 {
    font-size: 20px;
  }


}


/* ============================== END HERO SECTION ================================ */

/* ====== CONTACT US SECTION ====== */


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap');

.dreams-section {
  padding: 80px 20px;
  background: #fff;
}

.dreams-container {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

/* ===== Left (Image) ===== */
.dreams-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dreams-image img {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #d64fa2;
  /* pink border like in screenshot */
}

/* ===== Right (Content) ===== */
.dreams-content {
  flex: 1;
  font-family: 'Open Sans', sans-serif;
  color: #333;
}

.dreams-content h2 {
  font-family: 'BebasNeue-Bold';
  color: #1a67b2;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.dreams-content p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #333;
  font-family: 'Montserrat-SemiBold';

}

/* ===== Info Boxes ===== */
.info-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
}

.info {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  font-size: 16px;
  padding: 12px 18px;
  font-family: 'Montserrat-SemiBold';
}

.orange-box {
  background-color: #f89922;
  color: #fff;
}

.location-box {
  border: 2px solid #f89922;
  color: #f89922;
  padding: 12px 18px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.icon {
  font-size: 20px;
}

.btn {
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0;
  margin: 0;

}

/* ===== Contact Button ===== */
.contact-btn {
  display: inline-block;
  background-color: #1a67b2;
  color: #fff;
  font-family: 'Montserrat-SemiBold';
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}

.contact-btn:hover {
  background-color: #15548f;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .dreams-container {
    flex-direction: column;
    text-align: center;
  }

  .dreams-image img {
    width: 320px;
    height: 320px;
  }

  .dreams-content h2 {
    font-size: 42px;
  }

  .dreams-content p {
    font-size: 15px;
  }

  .info {
    font-size: 15px;
  }

  .info-boxes {
    justify-content: center;
  }

  .location-box {
    justify-content: center;
  }

  .contact-btn {
    font-size: 16px;
    padding: 20px 30px;
  }
}

@media (max-width: 420px) {


  .dreams-content h2 {
    font-size: 36px;
  }

  .dreams-content p {
    font-size: 14px;
  }

  .info {
    font-size: 14px;
  }

  .contact-btn {
    font-size: 13px;
    padding: 10px 20px;
  }
}


/* ============================= END CONTACT US SECTION ================================ */


/* ================== WHY CHOOSE GIG WUNDERKINS SECTION ================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* =============================
   WHY CHOOSE GIG WUNDERKINS
============================= */

.why-choose-section {
  background-color: #ffe6f7;
  padding: 80px 20px;
}

/* Container alignment (follows global standard) */
.why-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: center;
}

/* Section Title */
.why-container h2 {
  font-family: 'BebasNeue-Bold';
  font-size: 52px;
  color: #ff0099;
  font-weight: 700;
  margin-bottom: 50px;
  text-transform: uppercase;
}

/* Slick Grid Wrapper */
.why-grid {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 10px;

  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  /* spacing between cards */
}



/* Each Slide Card */
.why-grid .why-card {
  margin: 0 12px;
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  flex: 1 1 100%;
}

/* Hover effect */
.why-grid .why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Card Image */
.why-grid .why-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  pointer-events: none;
  /* Prevent grabbing image instead of carousel */
  user-drag: none;
  -webkit-user-drag: none;
}


/* Card Text */
.why-grid .why-card p {
  font-family: 'Montserrat-SemiBold';
  font-size: 16px;
  font-weight: 600;
  color: #333;
  padding: 15px;
  margin: 0;
}


/* Optional: Hide Slick Arrows */
.slick-arrow {
  display: none !important;
}

/* Optional: Slick Dots (if enabled) */
.slick-dots {
  margin-top: 20px;
}

.slick-dots li button:before {
  font-size: 10px;
  color: #ff0099;
  opacity: 0.5;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #ff0099;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .why-container h2 {
    font-size: 40px;
  }

  .why-grid .why-card img {
    height: 160px;
  }

  .why-grid .why-card p {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .why-container h2 {
    font-size: 37px;
  }

  .why-grid .why-card img {
    height: 140px;
  }

  .why-grid .why-card p {
    font-size: 14px;
  }
}


/* ===================== END WHY CHOOSE WUNDERKINS PAGE ===================== */


/* ============================= SAFETY SECTION ==================== */


/* fonts (optional) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap');

.safety-section {
  background: #fff;
  padding: 70px 20px;
  font-family: 'Montserrat-SemiBold';
  color: #222;
}

.safety-inner {
  max-width: 980px;
  margin: 0 auto;
}

/* top layout: two columns */
.safety-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: center;
  position: relative;
}

/* left text */
.safety-text h2 {
  font-family: 'BebasNeue-Bold';
  font-size: 56px;
  color: #2ea63b;
  /* bright green headline */
  line-height: 1.02;
  margin: 0 0 18px 0;
  letter-spacing: 0.5px;
}

.safety-text p {
  font-size: 17px;
  line-height: 1.75;
  color: #333;
  max-width: 520px;
}

/* right visual: place kid and pentagon nicely */
.safety-visual {
  position: relative;
  width: 100%;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* kid image (cutout) — sits slightly left of the pentagon, use transforms to position) */
.kid-img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 5;
  transform: translateX(-30px);
  object-fit: contain;
  /* optional drop shadow */
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.12));
}

/* pentagon graphic sits behind and to the right */
.pentagon-img {
  width: 50%;
  max-width: 360px;
  height: auto;
  position: absolute;
  right: 0;
  z-index: 1;
  transform: translateX(10%);
}

/* features grid (bottom) */
.safety-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 48px;
  align-items: stretch;
}

/* card style */
.feature-card {
  background: #eafceb;
  /* pale green */
  border-radius: 14px;
  padding: 26px 20px;
  text-align: center;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(32, 100, 40, 0.03);
}

/* icons */
.feature-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  object-fit: contain;
  opacity: 0.95;
}

/* title */
.feature-title {
  font-family: 'Montserrat-Bold';
  font-weight: 600;
  color: black;
  font-size: 16px;
  margin: 0;
}

/* Responsive: stack top columns, make features wrap */
@media (max-width: 992px) {
  .safety-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .kid-img {
    transform: translateX(0);
    margin-bottom: 10px;
  }

  .pentagon-img {
    position: relative;
    width: 60%;
    transform: none;
    margin: 0 auto;
  }

  .safety-text p {
    margin: 0 auto;
  }

  .safety-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 32px;
  }

  .feature-title {
    font-size: 15px;
  }
}

@media (max-width: 520px) {
  .safety-text h2 {
    font-size: 38px;
  }

  .safety-text p {

    font-size: 15px;
  }

  .safety-features {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pentagon-img {
    width: 80%;
  }

  .feature-title {
    font-size: 14px;
  }
}

@media (max-width:420px) {

  .safety-text p {
    font-size: 14px;
  }


}


/*  ========== END OF SAFETY SECTION =========== */


/* ==================== FOURQ DIFF SECTION =====================  */



.fourq-section {
  background: #e6f9fb;
  /* soft aqua like screenshot */
  padding: 70px 0 90px;
  font-family: 'Montserrat-SemiBold';
}

.section_container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

/* Header */
.fourq-header {
  text-align: center;
  margin-bottom: 38px;
}

.fourq-title {
  font-family: 'BebasNeue-Bold';
  color: #ff2b6b;
  /* bright pink from screenshot */
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.fourq-lead {
  font-size: 16px;
  margin: 0 auto 8px;
  max-width: 880px;
  margin-bottom: 18px;
}

.fourq-sub {
  text-align: center;
  font-size: 16.5px;
  margin: 0 auto;
  max-width: 980px;
}

/* Visual row: left kid+Q, right circles */
.fourq-visual-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 18px;
  flex-wrap: wrap;
}

/* left visual wrapper keeps Q and kid overlapping */
.fourq-left-visual {
  position: relative;
  flex: 0 0 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fourq-wrapper {
  /* align-items: center; */
  justify-content: center;
  display: flex;
  flex-direction: row;
  /* gap: 30px; */
}

/* large Q graphic */
.fourq-q {
  width: 300px;
  max-width: 100%;
  height: auto;
  display: block;
}

/* kid cutout placed to the left of Q (adjust translate to match art) */
.fourq-image {
  position: relative;
  z-index: 3;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.12));

  img {
    width: 300px;
    max-width: 100%;
    height: auto;
    display: block;
  }
}

/* circles container */
.fourq-circles {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  overflow: hidden;
}

/* each circle */
.q-circle {
  width: 170px;
  height: 170px;
  min-width: 170px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 18px;
  text-align: center;
  color: #fff;
  box-shadow: 0 6px 20px rgba(6, 20, 30, 0.08);
}

/* individual colors */
.q1 {
  background: #f04e43;
}

/* red/orange */
.q2 {
  background: #28b2a9;
}

/* teal */
.q3 {
  background: #6bbd3b;
}

/* green */
.q4 {
  background: #8b4aa6;
}

/* purple */

/* circle text */
.q-circle h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
}

.q-circle p {
  font-size: 13px;
  margin: 0;
  line-height: 1.35;
  padding: 0 4px;
}

/* CTA */
.fourq-cta {
  text-align: center;
  margin-top: 36px;
}

.btn-contact {
  display: inline-block;
  background: #0b3b90;
  color: #fff;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.6px;
  font-size: 17px;
}

/* Responsive */
@media (max-width:1150px) {
  .fourq-wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

}

@media (max-width: 1024px) {
  .fourq-left-visual {
    flex: 0 0 300px;
  }

  .q-circle {
    width: 150px;
    height: 150px;
    min-width: 150px;
  }

  .fourq-kid {
    width: 140px;
    left: -36px;
  }
}

@media (max-width: 780px) {
  .fourq-visual-row {
    flex-direction: column;
    gap: 18px;
  }

  .fourq-left-visual {
    order: 1;
  }

  .fourq-circles {
    order: 2;
    gap: 14px;
    overflow: visible;
    flex-wrap: wrap;
  }

  .q-circle {
    width: 140px;
    height: 140px;
    min-width: 140px;
    margin: 8px;
  }

  .fourq-kid {
    position: relative;
    left: 0;
    bottom: 0;
    transform: none;
    margin-top: -10px;
  }

  .fourq-title {
    font-size: 48px;
  }

  .fourq-lead,
  .fourq-sub {
    padding: 0 12px;
  }

  .btn-contact {
    font-size: 15px;
  }
}

@media (max-width: 420px) {

  .fourq-title {
    font-size: 40px;
  }

  .fourq-lead {
    font-size: 14.75px;

  }

  .fourq-sub {
    font-size: 15px;
  }

  .btn-contact {
    font-size: 14px;
    padding: 9px 18px;
  }
}


/* =========================== END OF FOURQ SECTION ======================= */

/* ========================= CURRICULUM ================================== */

/* Fonts (only if not already imported) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&family=Open+Sans:wght@400;600&display=swap');

/* Section Base */

/* Shared Container (keep consistent across all) */
.section_container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.curriculum-section {
  background: #ffffff;
  padding: 80px 0;
  color: #222;
  /* max-width: 1000px; */
}

.curriculum-section .section_container {
  max-width: 980px;
}

/* Row Layout */
.curriculum-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* gap: 40px; */
  flex-wrap: wrap;
}

/* Left Text */
.curriculum-text {
  flex: 1 1 300px;
}

.curriculum-title {
  font-family: 'BebasNeue-Bold';
  color: #0e63b2;
  /* blue like screenshot */
  font-size: 62px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.curriculum-desc {
  font-family: 'Montserrat-SemiBold';
  font-size: 17px;
  line-height: 1.5;
  color: #333;
  margin: 0;
  max-width: 580px;
}

/* Right Visual */
.curriculum-visual {
  /* flex: 0 0 380px; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.curriculum-img {
  width: 380px;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(9, 27, 40, 0.08));
  /* subtle depth */
}

/* Responsive Styles */
@media (max-width: 992px) {
  .curriculum-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .curriculum-text {
    flex: 1 1 10px;
    order: 1;
  }

  .curriculum-visual {
    order: 2;
    margin-top: 2px;
  }

  .curriculum-title {
    font-size: 48px;
  }

  .curriculum-desc {
    font-size: 16px;
  }

  .curriculum-img {
    width: 320px;
  }
}

@media (max-width: 600px) {
  .curriculum-title {
    font-size: 42px;
  }

  .curriculum-desc {
    font-size: 15px;
  }

  .curriculum-img {
    width: 260px;
  }
}

/* ========================= END OF CURRICULUM ================================== */

/* ============================== TEACHERS SECTION =============================== */

/* Fonts (if not already imported) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&family=Open+Sans:wght@400;600&display=swap');

.teachers-section {
  background: #fffce6;
  /* pale cream background like screenshot */
  padding: 70px 0;
  color: #222;
}

.section_container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

/* Row layout */
.teachers-row {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* Left circular image */
.teachers-image {
  flex: 0 0 460px;
  /* fixed width block for image */
  display: flex;
  justify-content: center;
  align-items: center;
}

.teachers-img {
  max-width: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* Right content */
.teachers-content {
  flex: 1 1 520px;
  min-width: 280px;
}

.teachers-title {
  font-family: 'BebasNeue-Bold';
  color: #f25a52;
  /* same coral color for heading */
  font-size: 44px;
  font-weight: 700;
  line-height: 1.02;
  margin: 0 0 18px 0;
  text-transform: uppercase;
}

.teachers-desc {
  font-family: 'Montserrat-SemiBold';
  font-size: 17px;
  line-height: 1.75;
  color: #333;
  max-width: 560px;
  margin-bottom: 26px;
}

/* Cards row */
.teacher-cards {
  display: flex;
  gap: 20px;
}

/* Individual card */
.t-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  width: 320px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* icon circle */
.t-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ffdfe0;
  /* soft pink background behind icon */
  display: flex;
  justify-content: center;
  align-items: center;
}

.t-icon img {
  width: 34px;
  height: 34px;
  display: block;
}

/* card text */
.t-title {
  font-family: 'Montserrat-Bold';
  font-size: 16px;
  margin: 0;
  color: #111;
}

.t-text {
  font-family: 'Montserrat-SemiBold';
  font-size: 17px;
  margin: 0;
  color: rgba(0, 0, 0, 0.809);
  line-height: 1.5;
  text-align: center;
}

/* responsive adjustments */
@media (max-width: 1075px) {

  .teachers-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .teachers-image {
    order: 1;
    flex: 0 0 auto;
    margin-bottom: 18px;
  }

  .teachers-img {
    width: 340px;
    height: 340px;
  }

  .teachers-content {
    order: 2;
    align-items: center;
  }

  .teachers-desc {
    font-size: 16px;
    margin: 26px auto;
  }

  .teacher-cards {
    justify-content: center;
  }

  .t-card {
    width: 320px;
    align-items: center;
    text-align: center;
  }

  .t-card .t-icon {
    margin: 0 auto;
  }
}

@media (max-width: 679px) {
  .teacher-cards {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .teachers-img {
    width: 280px;
    height: 280px;
  }

  .teachers-title {
    font-size: 42px;
  }

  .teachers-desc {
    font-size: 14px;
  }

  .t-text {
    font-size: 14px;
  }

  .t-card {
    width: 100%;
    max-width: 420px;
    padding: 18px;
  }
}


/* ========================== END OF TEACHERS SECTION =========================== */

/* ============================ LEGACY SECTION =========================== */
/* =============================
   SINGAPORE LEGACY. GLOBAL FUTURE
============================= */

.legacy-section {
  background: #ffffff;
  padding: 80px 0;
  color: #222;
  position: relative;
  overflow: hidden;
}

.section_container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.legacy-inner {
  max-width: 980px;
}

.legacy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  /* flex-wrap: wrap; */
  /* position: relative; */
}

.legacy-text {
  flex: 1 1 50%;
  min-width: 280px;
}

.legacy-title {
  font-family: 'BebasNeue-Bold';
  color: #083c8c;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0 0 18px;
}

.legacy-desc {
  font-family: 'Montserrat-SemiBold';
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  max-width: 560px;
  margin-bottom: 26px;
}

.legacy-btn {
  display: inline-block;
  background: #083c8c;
  color: #fff;
  font-family: 'Montserrat-Bold';
  font-weight: 700;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
}

.legacy-btn:hover {
  background: #062e6e;
}

/* Right Image with Circle Background */


/* Circle Background with Top Offset */

.legacy-image-wrapper {
  /* position: relative; */
  /* display: flex;
  justify-content: center;
  align-items: center; */
  flex: 0 0 45%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.circle-bg {
  width: 580px;
  height: 580px;
  background: #fff2b8;
  border-radius: 50%;
  position: absolute;
  top: 80px;
  right: -30px;
  bottom: -80px;
  /* moves circle bottom into next section */
  z-index: 1;
}

.legacy-img {
  position: absolute;
  width: 600px;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: -60px;

}

/*
.circle-bg {
  position: absolute;
  right: -190px;
  top: -150px;
 
  width: 480px;
  height: 480px;
  background: #ffe37b;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}

.legacy-img {
  width: 420px;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  z-index: 2;
}
  */

.banner_navigation,
.faq_navigation {
  z-index: 9999;
}

body,
ul.main_menu a,
.popup_form_mc,
.popup_form_mc input,
.popup_form_mc input::placeholder {
  font-family: "Montserrat-SemiBold";
}

.inter_edge_title {
  font-family: 'BebasNeue-Bold';
  color: #083c8c;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0 0 18px;
}

/* =============================
   Responsive Adjustments
============================= */

@media (max-width: 1200px) {
  .circle-bg {
    right: -80px;
    top: -120px;
    /* Adjusted upward offset for large tablets */
    width: 420px;
    height: 420px;
  }

  .legacy-img {
    width: 380px;
  }
}

@media (max-width:1030px) {
  .legacy-row {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .circle-bg {
    position: relative;
    right: 0;
    top: 0;
    /* Reset to normal center position */
    margin: 0 auto;
    width: 360px;
    height: 360px;
  }

  .legacy-image-wrapper {
    justify-content: center;
    align-items: center;
  }

}



@media (max-width: 992px) {
  .legacy-row {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .legacy-text {
    max-width: 760px;
  }

  .legacy-title {
    font-size: 50px;
  }

  .legacy-image-wrapper {
    justify-content: center;
    align-items: center;
    position: relative;
  }



  .legacy-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 340px;
  }
}

@media (max-width: 600px) {

  .legacy-title,
  .inter_edge_title {
    font-size: 42px;
  }

  .legacy-desc {
    font-size: 15px;
  }

  .circle-bg {
    width: 380px;
    height: 380px;
    top: 0;
    /* No upward shift on mobile */
  }

  .legacy-img {
    width: 380px;
  }

  .legacy-btn {
    font-size: 13px;
    padding: 10px 20px;
  }
}

/* =========================== END OF LEGACY SECTION =========================== */


@media (max-width: 576px) {
  section {
    padding: 50px 20px !important;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .why-card {
    flex: 1 1 calc(50% - 20px);
  }
}

/* Desktop (≥992px): Slick slider active, so flex not needed */
@media (min-width: 992px) {
  .why-grid {
    display: block;
    /* let Slick handle the layout */
  }
}