/* ================= GLOBAL ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* ================= TOP HEADER ================= */
.top-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1100;

  background: rgba(0, 82, 204, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 8px 25px;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  min-height: 40px;
}

/* Left */
.top-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.top-left a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

/* Center */
.top-center {
  flex: 1;
  text-align: center;
}

.top-center p {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 0 10px;
}

/* Right */
.top-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-right a {
  color: #fff;
  font-size: 14px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.top-right a:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .top-header {
    flex-direction: column;
    gap: 6px;
    padding: 6px 12px;
    text-align: center;
  }

  .top-left,
  .top-right {
    justify-content: center;
  }

  .top-center p {
    font-size: 12px;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .top-center p {
    font-size: 11.5px;
  }
}

/* HERO IMAGE WRAPPER */
/* HERO WRAPPER */
.hero-image.hero-overlay {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* HERO IMAGE */
.hero-image.hero-overlay img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

/* DARK OVERLAY */
.hero-image.hero-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.55)
  );
  z-index: 1;
}

/* HERO TITLE */
.hero-title {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  padding: 0 24px;
  text-align: center;

  font-size: clamp(1.8rem, 4vw, 2.9rem);
  font-weight: 800;
  line-height: 1.25;

  color: #ffffff;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.7);
}

/* TABLET */
@media (max-width: 992px) {
  .hero-image.hero-overlay {
    height: 75vh;
    min-height: 460px;
  }

  .hero-title {
    line-height: 1.3;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .hero-image.hero-overlay {
    height: 68vh;
    min-height: 400px;
  }

  .hero-title {
    padding: 0 16px;
    line-height: 1.35;
    text-align: center;
    margin-top: 40px;
    
  }
}

/* INTRO SECTION – FULL WIDTH */

.intro-full {
  width: 100%;
  background: linear-gradient(135deg, #f5f9ff, #eef6ff);
  padding: 70px 0;
}

/* INNER CONTENT – MATCH HERO WIDTH */
.intro-inner {
  max-width: 1200px;   
  margin: 0 auto;
  padding: 0 32px;
}

/* TEXT */
.intro-text {
  font-size: 1rem;
  line-height: 1.9;
  color: #2c2c2c;
  margin-bottom: 20px;
  text-align: left;
}

/* LINKS */
.intro-link {
  color: #0b6ff4;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.25s ease;
}

.intro-link:hover {
  border-color: #0b6ff4;
}

/* TABLET */
@media (max-width: 992px) {
  .intro-inner {
    padding: 0 24px;
  }

  .intro-text {
    font-size: 1rem;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .intro-full {
    padding: 55px 0;
  }

  .intro-inner {
    padding: 0 18px;
  }

  .intro-text {
    font-size: 0.95rem;
    line-height: 1.8;
  }
}

/*WHY US*/

.why-full {
  width: 100%;
  background: linear-gradient(135deg, #f5f9ff, #eef6ff);
  padding: 90px 0;
  margin-top: -100px;
}


.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}


.section-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: black;
  text-align: center;
  margin-bottom: 22px;
  position: relative;
  display: inline-block;
}


.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 55%;
  height: 4px;
  background: linear-gradient(90deg, #084FAD, #00c6a9);
  border-radius: 6px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s ease;
}

.section-title.reveal::after {
  transform: scaleX(1);
}


.why-inner .para {
  max-width: 920px;
  margin: 28px auto 55px;
  text-align: center;
  font-size: 1rem;
  line-height: 1.7;
  color: #222;
}


.links {
  color: #0b6ff4;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

.links::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #0b6ff4, #00c6a9);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.links:hover::after {
  transform: scaleX(1);
}


.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

/* CARD */
.feature-box {
  background: #ffffff;
  padding: 30px 24px;
  border-radius: 16px;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  color: #222;
  border: 2px solid #084FAD;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}
.feature-box:hover{
    background-color: blue;
    color: white;
}

.feature-box {
  z-index: 1;
}

/* TABLET */
@media (max-width: 992px) {
  .section-title {
    font-size: 1.85rem;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .why-full {
    padding: 70px 0;
  }

  .why-inner {
    padding: 0 16px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-title::after {
    width: 70%;
  }
}


/*COURSE DETAILS*/

.course-section {
  background: linear-gradient(135deg, #0b1c3d, #065f28);
  padding: 100px 0;
}


.course-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 0 32px;
}


.course-main-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 60px 50px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}


.course-main-card h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #0b3c8a;
  margin-bottom: 18px;
  position: relative;
}


.course-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 55px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
}


.course-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 70px;
}


.course-highlights h3 {
  font-size: 1.4rem;
  margin-bottom: 18px;
  color: #084fad;
}

.course-highlights ul {
  padding-left: 18px;
}

.course-highlights li {
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  list-style: none;
}

/* IMAGE */
.course-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(8, 79, 173, 0.25);
}

/* INFO GRID */
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* INFO CARD */
.info-card {
  background: linear-gradient(135deg, #f5f9ff, #eef6ff);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: left;
  border: 1px solid #dbe6ff;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  font-size: 1em;
}

/* GLOW */
.info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #084fad, #0b6ff4);
  opacity: 0;
  transition: 0.4s;
}

.info-card:hover::before {
  opacity: 1;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(11, 111, 244, 0.45);
  color: #fff;
}

.info-card * {
  position: relative;
  z-index: 1;
}

.info-card h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* UNDERLINE REVEAL */
.reveal-underline {
  display: inline-block;
  position: relative;
}

.reveal-underline::after {
  content: "";
  display: block;
  height: 3px;
  width: 0;
  margin-top: 6px;
  background: linear-gradient(90deg, #084fad, #00c6a9);
  transition: width 0.8s ease;
}

.course-section:hover .reveal-underline::after {
  width: 70%;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .course-split {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .course-main-card {
    padding: 50px 35px;
  }
}

@media (max-width: 576px) {
  .course-main-card h2 {
    font-size: 1.7rem;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .course-main-card {
    padding: 40px 22px;
  }
}


/*CAREER*/

.career-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* CAREER SECTION */
.career-section {
  width: 100%;
  padding: 90px 0;
  background: #ffffff;
}

/* CAREER CHOICE SECTION */
.career-choice-section {
  width: 100%;
  padding: 90px 0;
  background: white;
  margin-top: -100px;
}

/* HEADINGS */
.career-section h2,
.career-choice-section h2 {
  font-size: 2.1rem;
  font-weight: 700;
  color: black;
  margin-bottom: 22px;
}

/* PARAGRAPHS */
.career-section p,
.career-choice-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: black;
  margin-bottom: 16px;
  text-align: justify;
}
#career-para{
  max-width: 980px;
  text-align: justify;
}
/* INTRO LINE */
.career-intro {
  font-weight: 500;
}

/* LIST */
.career-list {
  margin: 28px 0 30px;
  padding-left: 20px;
}

.career-list li {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #222;
  list-style: none;
}

/* NOTE */
.career-note {
  background: #f0f7ff;
  padding: 18px 22px;
  border-left: 4px solid #084FAD;
  border-radius: 6px;
  font-size: 0.98rem;
}
.career-note span{
  color: blue;
}
/* LINKS */
.links {
  color: #0b6ff4;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

.links::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #0b6ff4, #00c6a9);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.links:hover::after {
  transform: scaleX(1);
}
.underline-reveal {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.underline-reveal::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, #084FAD, #00c6a9);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.6s ease;
  border-radius: 4px;
}

.underline-reveal.show::after {
  transform: translateX(-50%) scaleX(1);
}
@media (max-width: 768px) {
  .career-section,
  .career-choice-section {
    padding: 70px 0;
  }

  .career-section h2,
  .career-choice-section h2 {
    font-size: 1.7rem;
  }
}

@media (max-width: 576px) {
  .career-inner {
    padding: 0 20px;
  }

  .career-section h2,
  .career-choice-section h2 {
    font-size: 1.5rem;
  }

  .career-list li {
    font-size: 0.95rem;
  }
}


/* BENEFITS & ROLES SECTION */
.montessori-insights {
  width: 100%;
  padding: 95px 0;
  background: #ffffff;
  margin-top: -100px;
}


.insights-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.insight-block h2 {
  font-size: 2rem;
  font-weight: 700;
  color: black;
  margin-bottom: 18px;
}

.insight-block p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: #333;
  max-width: 980px;
  text-align: justify;
}


.insight-block .links {
  color: #0b6ff4;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

.insight-block .links::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #0b6ff4, #00c6a9);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.insight-block .links:hover::after {
  transform: scaleX(1);
}
@media (max-width: 768px) {
  .montessori-insights {
    padding: 75px 0;
  }

  .insight-block h2 {
    font-size: 1.65rem;
  }

  .insight-block {
    padding-left: 20px;
  }
}

@media (max-width: 576px) {
  .insights-container {
    padding: 0 20px;
    gap: 55px;
  }

  .insight-block h2 {
    font-size: 1.45rem;
  }

  .insight-block p {
    font-size: 0.98rem;
  }
}
.underline-reveal {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}