/* ================= 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;
}

.underline-reveal::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 65%;
  height: 3px;
  background: linear-gradient(90deg, #084FAD, #00c6a9);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
  border-radius: 4px;
}

.underline-reveal.show::after {
  transform: scaleX(1);
}

/*ADMISSION*/

.admission-cta {
  position: relative;
  width: 100%;
  padding: 110px 20px;
  background: linear-gradient(135deg, #035818, #083c6d, #0622a0);
  overflow: hidden;
}


.admission-cta::before,
.admission-cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
}

.admission-cta::before {
  width: 320px;
  height: 320px;
  background: #084FAD;
  top: -120px;
  left: -120px;
}

.admission-cta::after {
  width: 380px;
  height: 380px;
  background: #00c6a9;
  bottom: -150px;
  right: -150px;
}

.admission-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}


.admission-left {
  color: #ffffff;
}

.cta-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 22px;
  position: relative;
}


.cta-title::after {
  content: "";
  display: block;
  width: 90px;
  height: 3px;
  margin-top: 10px;
  background: linear-gradient(90deg, #00c6a9, #084FAD);
}

.cta-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #dbe6f2;
  margin-bottom: 18px;
}

.cta-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #c9d6e5;
}


.admission-right {
  background: rgba(255, 255, 255, 0.04);
  padding: 40px;
  border-radius: 18px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.cta-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.cta-list li {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.6;
}


.cta-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}


.btn {
  position: relative;
  display: inline-block;
  padding: 14px 34px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  color: #ffffff;
  overflow: hidden;
  transition: all 0.35s ease;
}


.enroll-btn {
  background: linear-gradient(135deg, #084FAD, #00c6a9);
  box-shadow: 0 10px 30px rgba(0, 198, 169, 0.35);
}


.whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}


.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 130%;
}


.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .admission-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .admission-cta {
    padding: 80px 16px;
  }

  .cta-title {
    font-size: 1.7rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}



/* FAQ SECTION */
.faq-section {
  width: 100%;
  padding: 90px 20px;
  background: linear-gradient(135deg, #f5f9ff, #eef6ff);
}


.faq-container {
  max-width: 1200px;
  margin: auto;
}


.faq-header h2 {
  font-size: 2rem;
  color: #084FAD;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}


.faq-header h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  margin-top: 8px;
  background: linear-gradient(90deg, #084FAD, #00c6a9);
}


.faq-header p {
  max-width: 800px;
  margin: 12px 0px 40px 0px;
  color: black;
  font-size: 1rem;
  line-height: 1.7;
  text-align: left;
}

/* FAQ ITEM */
.faq-item {
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}

/* QUESTION BUTTON */
.faq-question {
  width: 100%;
  padding: 18px 22px;
  font-size: 1rem;
  font-weight: 600;
  color: #084FAD;
  background: #f0f6ff;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #e1f0ff;
}

/* ICON */
.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  padding: 0 22px;
  background: #ffffff;
}

.faq-answer p {
  margin: 15px 0;
  color: #444;
  line-height: 1.6;
}

/* OPEN STATE */
.faq-item.active .faq-answer {
  max-height: 500px; /* adjust if needed */
  padding: 15px 22px 22px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* TABLET */
@media (max-width: 992px) {
  .faq-header h2 {
    font-size: 1.8rem;
  }

  .faq-header p {
    font-size: 0.95rem;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .faq-section {
    padding: 70px 16px;
  }

  .faq-header h2 {
    font-size: 1.6rem;
  }

  .faq-question {
    padding: 14px 18px;
    font-size: 0.95rem;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }
}



/* FOOTER */

.footer {
  background: #0c0f1a;
  color: #dcdcdc;
  font-family: 'Poppins', sans-serif;
}

/* ===== STATE QUICK LINKS ===== */
.footer-states {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-states h4 {
  color: #1f4fd8;
  margin-bottom: 20px;
}

.state-links {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 30px;
}

.state-links a {
  color: #cccccc;
  font-size: 13px;
  text-decoration: none;
}

.state-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* ===== MAIN GRID ===== */
.footer-grid {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

/* COMMON */
.footer-col h4 {
  color: #1f4fd8;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col a {
  color: #cccccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-col a:hover {
  color: #ffffff;
}

/* BRAND */
.footer-logo {
  max-width: 150px;
  margin-bottom: 15px;
}

.footer-col h3 {
  color: #1f4fd8;
  margin-bottom: 10px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #1f4fd8;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  padding: 15px 10px;
  font-size: 14px;
  color: #555;
}

.footer-bottom p {
  margin: 0 0 5px 0;
}

.footer-link {
  color: #1a5cff; /* crimson theme */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.footer-link:hover {
  color: #1a5cff;
  text-decoration: underline;
}

.footer-links {
  font-size: 13px;
  color: #555;
}

.footer-links span {
  margin: 0 5px;
}




/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .state-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .state-links {
    grid-template-columns: 1fr;
  }
}