/* ================= 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;
  }
}


.montessori-hero {
  position: relative;
  width: 100%;
  height: 100vh; /* FULL SCREEN */
  background: url("Assets/montessori-courses/Hero.jpeg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 51, 102, 0.85),
    rgba(0, 102, 204, 0.75)
  );
}

.hero-content {
  position: relative;
  max-width: 900px;
  text-align: center;
  color: #ffffff;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
  opacity: 0.95;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}

.hero-points li {
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #ffffff;
  color: #003366;
  padding: 14px 34px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #e3f2fd;
}

.btn-secondary {
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 14px 34px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: #ffffff;
  color: #003366;
}
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.4rem;
  }
  .montessori-hero{
    margin-top: 165px;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.6rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}


/* ===============================
   PROGRAM TABS SECTION
================================ */
.program-tabs-section {
  padding: 70px 20px;
  background: #f4f8ff;
  font-family: 'Poppins', sans-serif;
}

/* ---------- TABS ---------- */
.program-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.program-tabs .tab-btn {
  padding: 12px 22px;
  border-radius: 30px;
  border: 2px solid #1e63e9;
  background: #ffffff;
  color: #1e63e9;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.program-tabs .tab-btn:hover,
.program-tabs .tab-btn.active {
  background: #1e63e9;
  color: #ffffff;
}

/* ---------- CONTAINER ---------- */
.program-container {
  max-width: 1200px;
  margin: auto;
}

/* ---------- CONTENT BOX ---------- */
.program-content-box {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: #ffffff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 60, 255, 0.08);
}

.program-content-box.active {
  display: grid;
  animation: fadeIn 0.5s ease;
}

/* ---------- LEFT CONTENT ---------- */
.program-left h2 {
  font-size: 30px;
  color: #0b2c66;
  margin-bottom: 15px;
}

.program-left h2 span {
  font-size: 16px;
  color: #1e63e9;
}

.program-left p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.program-left ul {
  padding-left: 18px;
  margin-bottom: 20px;
}

.program-left ul li {
  font-size: 15px;
  color: #333;
  margin-bottom: 10px;
}

/* ---------- TIME BOX ---------- */
.time-box {
  display: inline-block;
  background: #e9f0ff;
  color: #1e63e9;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* ---------- BUTTON ---------- */
.join-btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #1e63e9, #0b2c66);
  color: #ffffff;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.join-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(30, 99, 233, 0.35);
}

/* ---------- RIGHT IMAGE ---------- */
.program-right img {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* ===============================
   RESPONSIVE DESIGN
================================ */

/* -------- TABLET -------- */
@media (max-width: 992px) {
  .program-content-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .program-left ul {
    text-align: left;
    max-width: 400px;
    margin: auto auto 20px;
  }

  .program-right img {
    margin: auto;
  }
}

/* -------- MOBILE -------- */
@media (max-width: 576px) {
  .program-tabs .tab-btn {
    font-size: 14px;
    padding: 10px 18px;
  }

  .program-content-box {
    padding: 25px;
  }

  .program-left h2 {
    font-size: 24px;
  }

  .program-left p {
    font-size: 14px;
  }

  .join-btn {
    padding: 12px 26px;
    font-size: 14px;
  }
}

/* ---------- ANIMATION ---------- */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* ===============================
   WHY CHOOSE US SECTION
================================ */
.why-choose-section {
  padding: 80px 20px;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.why-container {
  max-width: 1200px;
  margin: auto;
}

/* ---------- HEADER ---------- */
.why-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-header h2 {
  font-size: 36px;
  color: #0b2c66;
  margin-bottom: 15px;
}

.why-header h2 span {
  color: #1e63e9;
}

.why-header p {
  max-width: 650px;
  margin: auto;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* ---------- GRID ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ---------- CARD ---------- */
.why-card {
  background: #f4f8ff;
  padding: 35px 25px;
  border-radius: 18px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(30, 99, 233, 0.2);
}

/* ---------- ICON ---------- */
.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: #1e63e9;
  color: #ffffff;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* ---------- TEXT ---------- */
.why-card h3 {
  font-size: 20px;
  color: #0b2c66;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* ===============================
   RESPONSIVE DESIGN
================================ */

/* -------- TABLET -------- */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-header h2 {
    font-size: 30px;
  }
}

/* -------- MOBILE -------- */
@media (max-width: 576px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-header h2 {
    font-size: 24px;
  }

  .why-header p {
    font-size: 14px;
  }

  .why-card {
    padding: 30px 20px;
  }
}





/* 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;
  }
}
