:root {
  /* Replace these from Figma */
  --brand: #b3002d;
  --brand-2: #ffb000;
  --text: #111827;
  --muted: #6b7280;
  --bg: #ffffff;
  --soft: #f7f7fb;

  --radius: 18px;
}


@font-face {
  font-family: 'Fuse';
  src: url('../fonts/fonnts.com-fuse-regular.woff2') format('woff2'),
    url('../fonts/fonnts.com-fuse-regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}



body {
  color: var(--text);
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;


}

.nav-blur {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

.brand-text {
  font-weight: 800;
  letter-spacing: 0.2px;
}

.topbar {
  background: #111827;
  color: rgba(255, 255, 255, 0.85);
}

.topbar-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.topbar-link:hover {
  color: #fff;
}

.btn-primary {
  background: var(--brand);
  border-color: var(--brand);
}

.btn-primary:hover {
  filter: brightness(0.95);
}

.btn-outline-primary {
  border-color: var(--brand);
  color: var(--brand);
}

.btn-outline-primary:hover {
  background: var(--brand);
  color: #fff;
}

.hero {
  position: relative;
  background: radial-gradient(1200px 600px at 20% 0%, rgba(179, 0, 45, 0.10), transparent 55%),
    radial-gradient(900px 500px at 90% 10%, rgba(255, 176, 0, 0.14), transparent 60%);
}

.hero-title {
  line-height: 1.12;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(179, 0, 45, 0.08);
  color: var(--brand);
  font-weight: 600;
  font-size: 0.95rem;
}

.badge-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  display: inline-block;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  font-size: 0.9rem;
}

.shadow-soft {
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: var(--radius);
}

.form-card .form-control,
.form-card .form-select {
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
}

.section {
  scroll-margin-top: 90px;
}

.bg-soft {
  background: var(--soft);
}

.stat-card {
  padding: 18px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 10px 25px rgba(17, 24, 39, 0.05);
}

.stat-num {
  font-weight: 900;
  font-size: 1.6rem;
}

.stat-label {
  color: var(--muted);
  font-size: 0.95rem;
}

.icon-bubble {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 176, 0, 0.18);
  color: #7a4b00;
  font-size: 1.2rem;
}

.hover-lift {
  transition: transform .2s ease, box-shadow .2s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(17, 24, 39, 0.10);
}

.feature-ico {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(179, 0, 45, 0.10);
  color: var(--brand);
}

.tiny {
  font-size: 0.78rem;
}

.footer {
  background: #0b1220;
  color: rgba(255, 255, 255, 0.92);
}

.footer .text-muted {
  color: rgba(255, 255, 255, 0.72) !important;
}

.footer-link {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-link:hover {
  color: #fff;
}



.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #6f72a8;
  /* header purple */
  padding: 12px 30px;
  font-family: Arial, Helvetica, sans-serif;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  height: 60px;
}

.school-text h1 {
  margin: 0;
  font-size: 18px;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.school-text p {
  margin: 2px 0;
  font-size: 12px;
  color: #f4d03f;
  /* yellow tagline */
  font-weight: bold;
}

.school-text span {
  font-size: 11px;
  color: #ffffff;
}

.call-btn {
  background-color: #ffffff;
  color: #6f72a8;
  padding: 10px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: all 200ms ease-out;
  box-shadow: 0 2px 8px rgba(111, 114, 168, 0.15);
}

.call-btn:hover {
  background-color: #f4f4f4;
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(111, 114, 168, 0.25);
}

.call-btn:active {
  transform: scale(0.98);
  box-shadow: 0 2px 8px rgba(111, 114, 168, 0.2);
}


:root {
  --brand-purple: #5D5E9E;
  ;
  --text-dark: #24324a;
  --muted: #5c6b82;
  --card-border: #e7e0f6;
  --shadow: 0 10px 22px rgba(25, 35, 52, .12);
  --pill-shadow: 0 10px 18px rgba(0, 0, 0, .10);
  --pink: #ff3ea5;
  --violet: #7a2cff;
}

/* Section wrapper with thin purple top border like screenshot */
.early-years {
  background: #fff;
  border-top: 4px solid rgba(94, 90, 168, .75);
  padding: 26px 0 46px;
  position: relative;
  overflow: hidden;
}

/* Top CTA pills */
.cta-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
}

.cta-pill {
  border: 0;
  color: #fff;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 999px;
  box-shadow: var(--pill-shadow);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  line-height: 1;
  letter-spacing: .1px;
  font-family: Arial, Helvetica, sans-serif;
  transition: all 200ms ease-out;
}

.cta-pill .bi {
  font-size: 1.1rem;
}

.cta-pill.pink {
  background: linear-gradient(90deg, #ff4aa8 0%, #ff2f98 100%);
}

.cta-pill.violet {
  background: linear-gradient(90deg, #7b2dff 0%, #6a1bff 100%);
}

.cta-pill:hover {
  transform: scale(1.03);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.cta-pill.pink:hover {
  background: linear-gradient(90deg, #ff5bb3 0%, #ff3ea5 100%);
}

.cta-pill.violet:hover {
  background: linear-gradient(90deg, #8b3dff 0%, #7a2cff 100%);
}

.cta-pill:active {
  transform: scale(0.98);
  box-shadow: var(--pill-shadow);
}

/* Stars */
.star {
  position: absolute;
  top: 78px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #ffb703;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .10));
  user-select: none;
  pointer-events: none;
}

.star.left {
  left: 70px;
}

.star.right {
  right: 70px;
}

/* Title */
.ey-title {
  text-align: center;
  color: var(--brand-purple);
  font-weight: 700;
  font-size: 40px;
  letter-spacing: .2px;
  margin: 10px 0 6px;

  font-family: Fuse;
  font-weight: 700;
  font-style: Bold;
  font-size: 34px;

  line-height: 41px;
  letter-spacing: 0px;
  text-align: center;

}

.ey-underline {
  width: 92px;
  height: 4px;
  margin: 10px auto 0;
  background: var(--brand-purple);
  border-radius: 99px;
  opacity: .8;
}

/* Layout row below title */
.ey-body {
  margin-top: 18px;
  align-items: center;
}

/* iEYC logo block (left) */
.ieyc-box {
  width: 210px;
  max-width: 100%;
}

.ieyc-img {
  width: 100%;
  height: auto;
  display: block;
}

.ieyc-caption {
  font-size: 11px;
  color: #2b2b2b;
  margin-top: 6px;
  font-weight: 600;
}

/* Description */
.ey-desc {
  color: #2f3b52;
  font-size: 16.5px;
  line-height: 1.7;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;

}

/* Cards row */
.feature-grid {
  margin-top: 36px;
  row-gap: 28px;
}

.feature-card {
  background: #fff;
  border: 2px solid rgba(231, 224, 246, .9);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 26px 18px 22px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.icon-bubble {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 10px 18px rgba(25, 35, 52, .12);
}

.icon-bubble .bi {
  font-size: 22px;
  line-height: 1;
}

.bubble-pink {
  background: #ffe3f1;
  color: #ff2f98;
}

.bubble-blue {
  background: #e6f0ff;
  color: #2b78ff;
}

.bubble-red {
  background: #ffe6e6;
  color: #ff2d2d;
}

.bubble-purple {
  background: #efe6ff;
  color: #7b2dff;
}

.feature-title {
  margin-top: 56px;
  color: #1f2a44;
  font-weight: 700;
  font-size: 17px;
  font-family: Arial, Helvetica, sans-serif;

}

/* Container width similar to screenshot */
.ey-container {
  max-width: 1200px;
}

/* Responsive */
@media (max-width: 992px) {
  .ey-title {
    font-size: 32px;
  }

  .star.left {
    left: 20px;
  }

  .star.right {
    right: 20px;
  }

  .ieyc-box {
    margin: 0 auto;
  }

  .ey-desc {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .cta-row {
    flex-direction: column;
    align-items: center;
  }

  .cta-pill {
    width: min(360px, 92%);
    justify-content: center;
  }

  .feature-card {
    height: 155px;
  }
}




:root {
  --brand: #5b5aa4;
  --purple: #6f2dbd;
  --line: #e6d6ff;
  --muted: #6b7280;
  --cardShadow: 0 18px 40px rgba(20, 25, 40, .18);
}

/* outer section like screenshot */
.hero-wrap {

  padding: 18px 0;
  background: #ffffff;

  /* Background image */
  background-image: url("../images/banner.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/* big white area */
.hero-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 18px;
}

/* left banner */
.hero-banner {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 430px;
  box-shadow: 0 10px 24px rgba(20, 25, 40, .10);
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

/* overlay tint (bottom purple) */
/* .hero-banner::after{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(0deg, rgba(82,93,170,.78) 0%, rgba(82,93,170,.38) 42%, rgba(82,93,170,0) 70%);
      pointer-events:none;
    }*/

.hero-text {
  position: absolute;
  left: 34px;
  bottom: 34px;
  z-index: 2;
  color: #fff;
  max-width: 520px;
  text-shadow: 0 6px 18px rgba(0, 0, 0, .35);
}

/* Hero Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation classes with sequential delays and styling */
.hero-title {
  font-weight: 800;
  font-size: 44px;
  line-height: 1.05;
  margin: 0 0 10px;
  letter-spacing: .2px;
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.hero-sub {
  color: #FFF;
  font-family: Fuse;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  animation: fadeInUp 0.8s ease-out 0.15s forwards;
  opacity: 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: #ffd8a8;
  color: #1f2937;
  font-weight: 800;
  box-shadow: 0 10px 18px rgba(0, 0, 0, .18);
  border: 2px solid rgba(255, 255, 255, .55);
  margin-bottom: 10px;
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
  opacity: 0;
}

.hero-foot {
  font-weight: 800;
  letter-spacing: .2px;
  margin-top: 4px;
  animation: fadeInUp 0.8s ease-out 0.45s forwards;
  opacity: 0;
}




/* right form card */
.enquiry-card {
  background: #fff;
  border-radius: 22px;
  padding: 22px 22px 20px;
  box-shadow: var(--cardShadow);
  border: 3px solid rgba(255, 126, 202, .35);
  /* pink border like screenshot */
}

.enquiry-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--purple);
  margin: 0 0 2px;
}

.enquiry-sub {
  font-family: Fuse;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0px;
  color: #4A5565;

}

.field-label {

  margin: 12px 0 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  color: #364153;

}

.req {
  color: #ef4444;
}



.input-pill {
  border-radius: 999px !important;
  border: 2px solid rgba(230, 214, 255, .95) !important;
  padding: 12px 16px 12px 48px !important;
  outline: none !important;
  box-shadow: none !important;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
}

.input-wrap {
  position: relative;
}

.input-ico {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #b36bff;
  font-size: 18px;
  line-height: 1;
}

.submit-btn {
  margin-top: 18px;
  border-radius: 999px;
  padding: 14px 18px;
  font-weight: 800;
  background: #5b5aa4;
  border: none;
  box-shadow: 0 14px 26px rgba(91, 90, 164, .35);
  transition: all 200ms ease-out;
}

.submit-btn:hover {
  background: #6564ad;
  transform: scale(1.03);
  box-shadow: 0 18px 36px rgba(91, 90, 164, 0.45);
}

.submit-btn:active {
  transform: scale(0.98);
  background: #52519a;
  box-shadow: 0 10px 20px rgba(91, 90, 164, 0.3);
}

/* spacing like screenshot: card slightly overlaps the banner area */
@media (min-width: 992px) {
  .hero-row {
    display: flex;
    gap: 22px;
    align-items: stretch;
  }

  .left-col {
    flex: 1.05;
  }

  .right-col {
    flex: .75;
  }

  .enquiry-card {
    min-height: 430px;
  }
}

/* responsive */
@media (max-width: 991.98px) {
  .hero-banner {
    min-height: 360px;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-text {
    left: 18px;
    bottom: 18px;
    right: 18px;
    max-width: unset;
  }

  .enquiry-card {
    margin-top: 14px;
  }
}

.offer-section {
  background: #ffdcb8;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: #6a6aa8;
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .2);
}

.offer-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 20px;
  height: 100%;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .15);
}

.offer-red {
  border: 4px solid #ff7b7b;
}

.offer-blue {
  border: 4px solid #5f63b8;
}

.offer-card h2 {
  font-size: 64px;
  font-weight: 800;
  color: #5f63b8;
  margin-bottom: 8px;
}

.offer-card h2.pink {
  color: #ff3ea5;
}

.offer-card h5 {
  font-family: Fuse;
  font-weight: 700;

  font-size: 20px;

  line-height: 28px;
  letter-spacing: 0px;
  text-align: center;
  color: #1E2939;

}

.offer-card p {
  color: #4b5563;
  font-weight: 500;
  margin: 0;
}

.apply-btn {
  background: #6a6aa8;
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(106, 106, 168, .35);
  transition: all 200ms ease-out;
}

.apply-btn:hover {
  background: #7575b5;
  color: #fff;
  transform: scale(1.03);
  box-shadow: 0 14px 32px rgba(106, 106, 168, 0.45);
}

.apply-btn:active {
  transform: scale(0.98);
  background: #5b5aa4;
  box-shadow: 0 8px 18px rgba(106, 106, 168, 0.3);
}








:root {
  --brand: #5b5aa4;
  --purple: #6f2dbd;
  --pinkBorder: #ff7b7b;
  --bg: #fdeff6;
}

.curricula-sec {
  background: var(--bg);
}

.cur-title {
  color: #5D5E9E;
  font-family: Fuse;
  font-weight: 700;
  font-size: 34px;
  line-height: 48px;
  letter-spacing: 0px;
  text-align: center;
}

.cur-underline {
  width: 92px;
  height: 4px;
  background: var(--brand);
  border-radius: 999px;
  opacity: .9;
}

.cur-wrap {
  max-width: 1180px;
  border: 4px solid var(--pinkBorder);
  border-radius: 42px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 22px 44px rgba(20, 25, 40, .18);
  margin-top: 18px;
}

.cur-img {
  height: 100%;
  min-height: 360px;
  background: #ddd;
}

.cur-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cur-content {
  padding: 34px 44px;
}

.cur-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  background: #efe6ff;
  color: #7b2dff;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  width: fit-content;
}

.cur-pill .bi {
  font-size: 16px;
  line-height: 1;
}

.cur-head {
  color: #4a1fa6;
  margin-bottom: 14px;
  font-family: Arial;
  font-weight: 700;
  font-size: 25px;
  line-height: 26px;
  letter-spacing: 0px;
}

.cur-text {
  color: #364153;


  max-width: 520px;
  font-family: Arial;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
}

/* Responsive */
@media (max-width: 991.98px) {
  .cur-title {
    font-size: 32px;
  }

  .cur-content {
    padding: 26px 22px;
  }

  .cur-head {
    font-size: 28px;
  }

  .cur-text {
    max-width: 100%;
  }

  .cur-img {
    min-height: 280px;
  }
}




.ieyc-adv {
  background: #ffffff;
}

.adv-title {
  color: #5D5E9E;
  font-family: Fuse;
  font-weight: 700;
  font-size: 34px;
  line-height: 48px;
  letter-spacing: 0px;
  text-align: center;
}

.adv-underline {
  width: 90px;
  height: 4px;
  background: #5b5aa4;
  border-radius: 999px;
}

.adv-sub {
  max-width: 720px;
  margin: 0 auto;
  color: #374151;
  font-size: 16.5px;
  line-height: 1.7;
}

.adv-card {
  display: flex;
  align-items: stretch;
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 36px rgba(20, 25, 40, .18);
}

.adv-card.pink {
  border: 4px solid #ffc1e3;
}

.adv-card.blue {
  border: 4px solid #b6d4ff;
}

.adv-card.purple {
  border: 4px solid #d6c2ff;
}

.adv-card.yellow {
  border: 4px solid #ffe58f;
}

.adv-text {
  padding: 28px 26px;
  width: 55%;
}

.adv-text h5 {
  font-family: Fuse;
  font-weight: 700;

  font-size: 20px;

  line-height: 32px;
  letter-spacing: 0px;
  text-align: justify;
  color: #1E2939;


}

.adv-text p {
  color: #374151;
  font-family: Fuse;
  font-weight: 400;

  font-size: 16px;

  line-height: 26px;
  letter-spacing: 0px;
  text-align: justify;

}

.adv-img {
  width: 45%;
}

.adv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 22px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .15);
}

.icon.pink {
  background: #ff3ea5;
  color: #fff;
}

.icon.blue {
  background: #2b78ff;
  color: #fff;
}

.icon.purple {
  background: #8b5cf6;
  color: #fff;
}

.icon.yellow {
  background: #f4b400;
  color: #fff;
}

/* Responsive */
@media (max-width:991px) {
  .adv-card {
    flex-direction: column;
  }

  .adv-text,
  .adv-img {
    width: 100%;
  }

  .adv-img {
    height: 240px;
  }

  .adv-title {
    font-size: 32px;
  }
}


:root {
  --brand: #364153;
  --blue: #2b78ff;
  --dark: #24324a;
  --blueBorder: #5f92ff;
  --redBorder: #ff7b7b;
  --shadow: 0 18px 40px rgba(20, 25, 40, .18);
  --bg: #f9f9fb;
}



.class1-sec {
  background: var(--bg);
}

.c1-title {
  color: #5D5E9E;

  font-family: Fuse;
  font-weight: 700;

  font-size: 34px;

  line-height: 48px;
  letter-spacing: 0px;
  text-align: center;

}

.c1-underline {
  width: 92px;
  height: 4px;
  background: var(--brand);
  border-radius: 999px;
}

.c1-card {
  background: #fff;
  border-radius: 26px;
  padding: 38px 36px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.c1-blue {
  border: 4px solid var(--blueBorder);
}

.c1-red {
  border: 4px solid var(--redBorder);
}

.c1-icon {
  width: 74px;
  height: 74px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;

  margin-bottom: 18px;
}

.c1-icon.blue {
  background: var(--blue);
}

.c1-icon.dark {
  background: var(--dark);
}

.c1-head {
  margin: 6px 0 10px;
  color: var(--brand);
  font-family: Fuse;
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: 0px;
  text-align: center;


}

.blue-text {
  color: var(--blue);
}

.c1-text {
  max-width: 520px;
  margin: 0 auto;
  color: #374151;
  font-size: 15.8px;
  line-height: 1.7;
  font-weight: 500;
}

@media (max-width: 991.98px) {
  .c1-title {
    font-size: 32px;
  }

  .c1-card {
    padding: 30px 22px;
    min-height: 230px;
  }

  .c1-head {
    font-size: 24px;
  }
}





:root {
  --brand: #5b5aa4;
  --border: #caa8ff;
  --bg: #fff8cf;
  --shadow: 0 22px 44px rgba(20, 25, 40, .18);
  --itemShadow: 0 10px 18px rgba(20, 25, 40, .12);
  --tick: #00c853;
}

.subjects-sec {
  background: #ffffff;
}

.sub-title {
  color: #5D5E9E;
  font-family: Fuse;
  font-weight: 700;
  font-size: 34px;
  line-height: 48px;
  letter-spacing: 0px;
  text-align: center;
}

.sub-underline {
  width: 92px;
  height: 4px;
  background: var(--brand);
  border-radius: 999px;
}

.sub-subtitle {
  font-size: 22px;
  font-weight: 500;
  color: #111827;
}

.subjects-box {
  max-width: 1120px;
  background: #FFFBD5;
  border: 4px solid var(--border);
  border-radius: 26px;
  padding: 34px 34px;
  box-shadow: var(--shadow);
}

.sub-item {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--itemShadow);
  margin-bottom: 18px;
}

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

.tick {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--tick);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 26px;
  font-size: 16px;
  box-shadow: 0 10px 18px rgba(0, 200, 83, .30);
}

.sub-item span:last-child {
  font-size: 15.8px;
  font-weight: 500;
  color: #111827;
}

@media (max-width: 991.98px) {
  .sub-title {
    font-size: 32px;
  }

  .subjects-box {
    padding: 22px 18px;
  }

  .sub-subtitle {
    font-size: 18px;
  }

  .sub-item {
    margin-bottom: 14px;
  }
}




:root {
  --brand: #5b5aa4;
  --bg: #fdeff6;
  --shadow: 0 18px 36px rgba(20, 25, 40, .18);
}

.elig-sec {
  background: var(--bg);
}

.elig-title {
  color: #5D5E9E;
  font-family: Fuse;
  font-weight: 700;
  font-size: 34px;
  line-height: 48px;
  letter-spacing: 0px;
  text-align: center;
}

.elig-underline {
  width: 92px;
  height: 4px;
  background: var(--brand);
  border-radius: 999px;
}

.elig-card {
  background: #fff;
  border-radius: 22px;
  padding: 28px 18px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.elig-card.pink {
  border: 4px solid #ffb1d9;
  background: #fff2fb;
}

.elig-card.purple {
  border: 4px solid #caa8ff;
  background: #f5efff;
}

.elig-card.blue {
  border: 4px solid #9fd0ff;
  background: #eef7ff;
}

.elig-card.green {
  border: 4px solid #8ee6a8;
  background: #effff4;
}

.elig-card.orange {
  border: 4px solid #ffbf7a;
  background: #fff6ea;
}

.age-pill {
  width: 70px;
  height: 70px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 14px 26px rgba(0, 0, 0, .18);
  font-family: Arial;
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: 0px;
}

.age-pill.pink {
  background: #ff3ea5;
}

.age-pill.purple {
  background: #9b4dff;
}

.age-pill.blue {
  background: #2b78ff;
}

.age-pill.green {
  background: #00c853;
}

.age-pill.orange {
  background: #ff6a00;
}

.elig-label {

  color: #1E2939;



  font-family: Arial;
  font-weight: 700;

  font-size: 20px;

  line-height: 28px;
  letter-spacing: 0px;
  text-align: center;

}

.elig-note {
  max-width: 760px;
  background: #ffdcb8;
  border: 2px solid #ff7b7b;
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  color: #8b4513;
  box-shadow: 0 16px 34px rgba(20, 25, 40, .16);
}

.elig-note .bi {
  font-size: 18px;
}

@media (max-width: 991.98px) {
  .elig-title {
    font-size: 32px;
  }

  .elig-label {
    font-size: 18px;
  }
}





:root {
  --brand: #5b5aa4;
  --shadow: 0 18px 38px rgba(20, 25, 40, .18);
}

.why-jaipuria {
  background: #ffffff;
}

.why-title {
  color: #5D5E9E;
  font-family: Fuse;
  font-weight: 700;
  font-size: 34px;
  line-height: 48px;
  letter-spacing: 0px;
  text-align: center;
}

.why-underline {
  width: 110px;
  height: 4px;
  background: var(--brand);
  border-radius: 999px;
}

.why-card {
  background: #fff;
  border-radius: 26px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  height: 100%;
}

.why-card.pink {
  border: 4px solid #ffb1d9;
  background: #fff2fb;
}

.why-card.purple {
  border: 4px solid #d6c2ff;
  background: #f6efff;
}

.why-card.blue {
  border: 4px solid #9fd0ff;
  background: #eef7ff;
}

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 12px 22px rgba(0, 0, 0, .18);
  margin-bottom: 16px;
}

.why-icon.pink {
  background: #ff3ea5;
}

.why-icon.purple {
  background: #9b4dff;
}

.why-icon.blue {
  background: #2b78ff;
}

.why-head {
  margin-bottom: 14px;
  color: #4a1fa6;

  font-weight: 700;
  font-size: 21px;
  line-height: 32px;
  letter-spacing: 0px;
  text-align: center;
}

.pink-text {
  color: #c0187c;
}

.blue-text {
  color: #1e5ed6;
}

.why-list,
.why-awards {
  padding-left: 18px;
  margin: 0;
}

.why-list li {
  margin-bottom: 8px;
  font-size: 15.5px;
  color: #111827;
}

.pink-list li::marker {
  color: #ff3ea5;
}

.blue-list li::marker {
  color: #2b78ff;
}

.why-awards {
  list-style: none;
  padding-left: 0;
}

.why-awards li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15.5px;
  margin-bottom: 10px;
  color: #111827;
}

.why-awards .bi {
  color: #f4b400;
  font-size: 18px;
  margin-top: 2px;
}

.why-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.why-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width:991.98px) {
  .why-title {
    font-size: 32px;
  }
}





:root {
  --brand: #5b5aa4;
  --border: #dbe3f0;
  --shadow: 0 18px 38px rgba(20, 25, 40, .12);
  --blue: #2b78ff;
  --blueSoft: #eaf2ff;
}

.adp-sec {
  background: #ffffff;
}

.adp-title {
  color: #5D5E9E;
  font-family: Fuse;
  font-weight: 700;
  font-size: 34px;
  line-height: 48px;
  letter-spacing: 0px;
  text-align: center;
}

.adp-underline {
  width: 95px;
  height: 4px;
  background: var(--brand);
  border-radius: 999px;
}

.adp-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 34px 22px 30px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .06);
}

.adp-ico {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: var(--blueSoft);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  box-shadow: 0 10px 18px rgba(43, 120, 255, .18);
  font-size: 22px;
}

.adp-step {
  margin-bottom: 6px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;

  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: center;
  color: #005BAA;

}

.adp-step::after {
  content: "";
  width: 34px;
  height: 3px;
  background: rgba(43, 120, 255, .55);
  border-radius: 999px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

.adp-name {
  font-family: Fuse;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: center;
  color: #101828;
}

.adp-desc {

  color: #4A5565;
  font-family: Fuse;
  font-weight: 400;
  font-style: Regular;
  font-size: 15px;
  leading-trim: NONE;
  line-height: 20px;
  letter-spacing: 0px;
  text-align: center;

}

@media (max-width: 991.98px) {
  .adp-title {
    font-size: 32px;
  }
}


:root {
  --brand: #5b5aa4;
  --lav: #f8f2ff;
  --border: #e2ccff;
  --shadow: 0 16px 34px rgba(20, 25, 40, .18);
  --star: #f4b400;
}

.parents-love {
  background: #ffffff;
}

.pl-title {
  color: #5D5E9E;
  font-family: Fuse;
  font-weight: 700;
  font-size: 34px;
  line-height: 48px;
  letter-spacing: 0px;
  text-align: center;
}

.pl-underline {
  width: 92px;
  height: 4px;
  background: var(--brand);
  border-radius: 999px;
}

.pl-card {
  background: var(--lav);
  border: 3px solid var(--border);
  border-radius: 22px;
  padding: 28px 26px 24px;
  height: 100%;
  position: relative;
  box-shadow: var(--shadow);
}

.pl-stars {
  color: var(--star);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.pl-quote {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 56px;
  line-height: 1;
  color: #d8b4fe;
  font-weight: 900;
}

.pl-text {
  color: #364153;
  margin-bottom: 18px;
  font-family: Arial;
  font-weight: 400;
  font-style: Italic;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
}

.pl-line {
  border-color: #e9d5ff;
  margin: 14px 0;
}

.pl-name {
  font-weight: 900;
  color: #6d28d9;
  font-size: 15.5px;
}

.pl-meta {
  font-size: 14px;
  color: #4b5563;
}

@media (max-width:991.98px) {
  .pl-title {
    font-size: 32px;
  }
}
















:root {
  --footerBg: #5b5aa4;
  --cream: #FFDAB9;
  --text: #efeaff;
  --muted: #d9d2ff;
  --shadow: 0 14px 26px rgba(0, 0, 0, .22);
}

.jj-footer {
  background: var(--footerBg);
  color: var(--text);
}

.jj-foot-title {

  color: var(--cream);
  font-family: Arial;
  font-weight: 700;

  font-size: 24px;

  line-height: 32px;
  letter-spacing: 0px;

}

.jj-foot-sub {
  font-weight: 600;
  color: var(--muted);
}

.jj-foot-text {
  color: var(--text);
  opacity: .95;
  max-width: 320px;
  line-height: 1.7;
}

.jj-foot-head {
  font-weight: 800;
  font-size: 20px;
  color: var(--cream);
}

.jj-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
  color: var(--text);
}

.jj-contact a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.jj-contact a:hover {
  text-decoration: underline;
}

.jj-ico {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 18px;
  margin-top: 2px;
}

.jj-social {
  display: flex;
  gap: 14px;
}

.jj-social-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--footerBg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.jj-social-btn:hover {
  transform: translateY(-1px);
  color: var(--footerBg);
}

.jj-cta {
  background: var(--cream);
  color: var(--footerBg);
  font-weight: 800;
  border-radius: 999px;
  padding: 10px 18px;
  box-shadow: var(--shadow);
  border: none;
}

.jj-cta:hover {
  background: #ffcfaa;
  color: var(--footerBg);
}

.jj-line {
  border-color: rgba(255, 255, 255, .35);
}

.jj-copy {
  color: rgba(255, 255, 255, .85);
  font-size: 14px;
  font-weight: 600;
}

.hero-text .hero-title {
  margin: 0 0 10px;
  letter-spacing: .2px;
  color: var(--Color-03, #FFDAB9);
  text-align: center;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.70);
  font-family: 'Fuse';
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 40px;
}




























/* Info Bar */
.info-bar {

  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
}

.info-bar span {
  color: #003366;
  font-weight: 600;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.header-text p {
  color: #ffffff;
}

:root {
  --primary-color: #005BAA;
  --secondary-color: #10b981;
  --accent-color: #f59e0b;
  --dark-bg: #1f2937;
  --light-bg: #f9fafb;
  --border-color: #e5e7eb;
  --text-primary: #111827;
  --text-secondary: #6b7280;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 5px 10px rgba(0, 0, 0, 0.1);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  background-color: var(--light-bg);
  color: var(--text-primary);
  line-height: 1.6;
}

/* Header Section */
.header-container {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(135deg, rgba(37, 99, 235, 0.8) 0%, rgba(16, 185, 129, 0.8) 100%); */
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-text {
  color: #000000;
  text-align: center;
  z-index: 2;
  top: 254px;
  position: absolute;
  width: 75%;
}

.header-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.header-text p {
  font-size: 1.1rem;
  opacity: 0.95;
}

/* Main Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Card Component */
.card {
  background: white;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s ease;
  position: relative;
}

.card:hover {
  box-shadow: var(--shadow-lg);
}

/* Typography */
h1 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--secondary-color);
}

h2 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 0rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.8;
}

strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Lists */
ul,
ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

/* Table Styles */
.table-wrapper {
  overflow-x: auto;
  margin: 1.5rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

table th {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
}

table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
}

table tbody tr {
  transition: background-color 0.2s ease;
}

table tbody tr:nth-child(even) {
  background-color: #f3f4f6;
}

table tbody tr:hover {
  background-color: #eff6ff;
}

/* Horizontal Rule */
hr {
  border: none;
  height: 1px;
  background: var(--border-color);
  margin: 2rem 0;
}

/* Intro Section */
.intro-box {
  background: linear-gradient(135deg, #eff6ff 0%, #ecfdf5 100%);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 5px;
}

.intro-box p {
  color: var(--text-primary);
  margin: 0;
}

/* Badge */
.badge {
  display: inline-block;
  background: var(--accent-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

/* Grid Layout */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.grid-item {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
  box-shadow: var(--shadow);
}

/* Button Styles */
.btn {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.btn:hover {
  background: #0047a3;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .header-text h1 {
    font-size: 1.8rem;
  }

  .header-text p {
    font-size: 0.95rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  .container {
    padding: 1rem;
  }

  .card {
    padding: 1.5rem;
  }

  table {
    font-size: 0.9rem;
  }

  table th,
  table td {
    padding: 0.75rem 0.5rem;
  }
}

/* Print Styles */
@media print {
  body {
    background: white;
  }

  .card {
    page-break-inside: avoid;
    box-shadow: none;
    border: 1px solid var(--border-color);
  }
}

/* Footer Styles */
.footer-bottom p {
  color: #ffffff;
}

footer {
  background: linear-gradient(135deg, var(--primary-color), var(--dark-bg));
  color: white;
  margin-top: 4rem;
  padding: 1rem 1rem;
  border-top: 3px solid var(--secondary-color);
}

footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

footer h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 0.5rem;
}

footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

footer ul li {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

footer ul li a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer ul li a:hover {
  color: var(--secondary-color);
}

footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .header-text {
    color: #000000;
    text-align: center;
    z-index: 2;
    top: 29px;
    position: inherit;
    width: 100%;
  }

  .header-container {

    height: auto;

  }

  footer {
    padding: 2rem 1rem;
  }

  footer .footer-container {
    gap: 1.5rem;
  }

  footer h3 {
    font-size: 1rem;
  }
}