/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
}

/* HEADER */
/* header {
  height: 80px;
  background: whitesmoke;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 200px;
} */
 header {
  position: fixed; /* ADD THIS */
  top: 0;
  left: 0;
  width: 100%;

  height: 80px;
  background: whitesmoke;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 200px;

  z-index: 10000; /* VERY IMPORTANT */
}


.logo1 {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.mamadiv {
  display: flex;
  gap: 30px;
}

.mamadiv a {
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  color: #000E42;
}

/* HERO */
/* .papadiv {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 200px;
} */
 .papadiv {
  margin-top: 80px; /* ADD THIS (push content below fixed header) */

  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 200px;
}


.hero-text h1 {
  font-size: 45px;
  color: #000E42;
}

.boy {
  margin-top: 20px;
  font-size: 18px;
  color: #474747;
  max-width: 520px;
}

.bookbutton {
  margin-top: 30px;
  padding: 18px 34px;
  background: #00208A;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.hero-image img {
  width: 480px;
}

/* FEATURES */
.info-section {
  background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.9));
  padding: 90px 200px;
}

.info-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.info-card {
  text-align: center;
  color: white;
}

.info-card i {
  font-size: 45px;
  color: #F8C76C;
}

.info-card h3 {
  margin-top: 20px;
  letter-spacing: 1px;
}

.info-card p {
  margin-top: 12px;
  color: #ccc;
  line-height: 1.6;
}

/* ABOUT */
.about {
  padding: 100px 200px;
}

.about-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.about-text h1 {
  font-size: 40px;
  color: #000E42;
}

.about-text p {
  margin-top: 20px;
  font-size: 20px;
  color: #84807C;
  max-width: 600px;
}

.about-img img {
  width: 480px;
}
.aboutt{
  width: 500px;
  font-size: 25px;
  font-weight: 100;
  color: #84807C;
  margin-top: 20px;
  margin-left: 200px;
}
/* STATS / COUNTER SECTION */
.grace {
  background: linear-gradient(135deg, #00208A, #000E42);
  padding: 100px 200px;
  color: white;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-box h2 {
  font-size: 52px;
  font-weight: 800;
  color: #F8C76C;
}

.stat-box p {
  margin-top: 10px;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #eaeaea;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .grace {
    padding: 80px 40px;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .stats-container {
    grid-template-columns: 1fr;
  }
}


/* ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: all 1s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(80px);
  transition: all 1s ease;
}

.reveal.active,
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translate(0);
}

.delay-1 { transition-delay: .2s; }
.delay-2 { transition-delay: .4s; }
.delay-3 { transition-delay: .6s; }

.count{
  background-color: #F8C76C;
  
}

/* SUBJECTS / PLANS SECTION */
.courses-section {
  padding: 70px 120px;
  background: #f7f7f7;
}

.courses-title {
  text-align: center;
  font-size: 36px;
  color: #222;
  margin-bottom: 45px;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* TABLET */
@media (max-width: 1024px) {
  .courses-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .courses-grid {
    grid-template-columns: 1fr;
  }
}

/* CARD */
.course-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform .3s ease, box-shadow .3s ease;
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}

/* IMAGE */
.course-img {
  position: relative;
}

.course-img img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

/* PRICE TAG */
.price-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #4b5cc4;
  color: #fff;
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 5px;
}

.price-tag.free {
  background: #4b5cc4;
}

/* CONTENT */
.course-content {
  padding: 20px;
}

/* AUTHOR */
.author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #555;
}

.author img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

/* TITLE */
.course-content h3 {
  margin: 12px 0 8px;
  font-size: 19px;
  color: #222;
}

/* STARS */
.stars {
  color: #f4b400;
  font-size: 14px;
  margin-bottom: 14px;
}

/* BUTTON */
.course-btn {
  background: #f8c76c;
  color: #000;
  border: none;
  padding: 11px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background .3s ease;
}

.course-btn:hover {
  background: #f5b948;
}

/* RESPONSIVE */
/* @media (max-width: 1100px) {
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
} */

@media (max-width: 700px) {
  .courses-section {
    padding: 50px 30px;
  }

  /* .courses-grid {
    grid-template-columns: 1fr;
  } */

  .courses-title {
    font-size: 28px;
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  header,
  .papadiv,
  .info-section,
  .about {
    padding: 40px;
  }

  .papadiv {
    flex-direction: column;
    text-align: center;
  }

  .hero-image img {
    width: 100%;
    margin-top: 40px;
  }

  .info-container {
    grid-template-columns: 1fr;
  }

  .about-wrap {
    flex-direction: column;
    text-align: center;
  }
}
/*NEWSLETTER SECTION*/

.newsletter-section {
  position: relative;
  min-height: 60vh;
  background-image: url("./multimedia/Untitled\ design.png"); /* CHANGE IMAGE */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  color: white;
  overflow: hidden;
}

/* DARK OVERLAY */
.newsletter-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

/* CONTENT */
.newsletter-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  width: 100%;
}

.newsletter-content h2 {
  font-size: 42px;
  margin-bottom: 15px;
  font-weight: 800;
}

.newsletter-content p {
  font-size: 16px;
  color: #ddd;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* FORM */
.newsletter-form {
  display: flex;
  max-width: 520px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

/* INPUT */
.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  outline: none;
  background: transparent;
  color: white;
  font-size: 14px;
}

.newsletter-form input::placeholder {
  color: #ddd;
}

/* BUTTON */
.newsletter-form button {
  padding: 16px 28px;
  background: #f8c76c;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: #f5b948;
}

/* MOBILE */
@media (max-width: 600px) {
  .newsletter-content h2 {
    font-size: 32px;
  }

  .newsletter-form {
    flex-direction: column;
    border-radius: 12px;
  }

  .newsletter-form button {
    width: 100%;
  }
}
/* ===========================
   TESTIMONIALS SECTION
   =========================== */

.testimonials-section {
  padding: 120px 20px;
  background: #ffffff;
  text-align: center;
  position: relative;
}

.test-title {
  font-size: 40px;
  color: #222;
  margin-bottom: 20px;
}

.test-desc {
  max-width: 700px;
  margin: 0 auto 70px;
  color: #666;
  font-size: 16px;
  line-height: 1.7;
}

/* WRAPPER */
.testimonial-wrapper {
  max-width: 900px;
  margin: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TESTIMONIAL CARD */
.testimonial {
  max-width: 700px;
  padding: 40px 30px;
  transition: all 0.5s ease;
}

/* TEXT */
.testimonial-text {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 40px;
}

/* IMAGE */
.testimonial-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

/* NAME */
.testimonial h4 {
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 6px;
}

/* ROLE */
.testimonial span {
  font-size: 13px;
  color: #888;
}

/* ARROWS */
.arrow {
  position: absolute;
  background: none;
  border: none;
  font-size: 22px;
  color: #bbb;
  cursor: pointer;
  transition: color 0.3s ease;
}

.arrow:hover {
  color: #000;
}

.arrow.left {
  left: -60px;
}

.arrow.right {
  right: -60px;
}

/* MOBILE */
@media (max-width: 768px) {
  .arrow.left {
    left: 10px;
  }

  .arrow.right {
    right: 10px;
  }

  .testimonial-text {
    font-size: 15px;
  }
}
/* FOOTER */
.site-footer {
  background: #000E42;
  color: #fff;
  padding: 80px 120px 30px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

.footer-box h4 {
  font-size: 18px;
  margin-bottom: 18px;
  color: #F8C76C;
}

.footer-box p {
  font-size: 15px;
  line-height: 1.7;
  color: #ddd;
}

.footer-box ul {
  list-style: none;
}

.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box ul li a {
  text-decoration: none;
  color: #ddd;
  font-size: 15px;
  transition: color .3s ease;
}

.footer-box ul li a:hover {
  color: #F8C76C;
}

/* LOGO */
.footer-logo {
  width: 80px;
  margin-bottom: 15px;
  border-radius: 50%;
}

/* SOCIAL ICONS */
.footer-socials {
  margin-top: 15px;
  display: flex;
  gap: 15px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  background: #F8C76C;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform .3s ease, background .3s ease;
}

.footer-socials a:hover {
  transform: translateY(-4px);
  background: #f5b948;
}

/* BOTTOM BAR */
.footer-bottom {
  margin-top: 50px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  font-size: 14px;
  color: #ccc;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .site-footer {
    padding: 70px 50px 30px;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 60px 30px 25px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }
}
/* =========================
   HAMBURGER MENU (MOBILE)
   ========================= */

/* Hide hamburger on desktop & tablet */
.hamburger {
  display: none;
  position: relative;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 11000; /* higher than menu */
}


/* Hamburger lines */
.hamburger span {
  width: 26px;
  height: 3px;
  background: #000E42;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* MOBILE ONLY */
@media (max-width: 768px) {
  header {
    padding: 0 20px;
  }

  /* Show hamburger */
  .hamburger {
    display: flex;
  }

  /* Hide menu by default */
  /* .mamadiv {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: whitesmoke;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
    display: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 999;
  } */

.mamadiv {
    position: fixed;
    inset: 0; /* FULL COVER */

    width: 100%;
    height: 100vh;

    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 35px;

    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;

    transition: all 0.4s ease;
    z-index: 10000;
  }


/* ACTIVE STATE */
.mamadiv.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}


  /* Show menu when active */
  /* .mamadiv.active {
    display: flex;
  } */

/* LINKS STYLE */
.mamadiv a {
  font-size: 22px;
  font-weight: bold;
  color: #000E42;
  text-decoration: none;
  transition: all 0.3s ease;
}
}



.mamadiv a:hover {
  color: #00208A;
  transform: translateY(-3px);
}


.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
body.menu-open {
  overflow: hidden;
}






/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}
/* INTERNATIONAL HERO IMAGE */
.international-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
}

/* TABLET */
@media (max-width: 900px) {
  .international-img {
    max-width: 420px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .papadiv {
    flex-direction: column;
    text-align: center;
  }

  .hero-image {
    margin-top: 30px;
  }

  .international-img {
    max-width: 100%;
  }
}


.booking-section {
  padding: 80px 40px;
  background: linear-gradient(135deg, #f8f9fc, #eef2ff);
  font-family: Arial, Helvetica, sans-serif;
}

.booking-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.booking-left h2 {
  font-size: 38px;
  color: #000E42;
  margin-bottom: 16px;
  font-family: Arial, Helvetica, sans-serif;
}

.booking-left p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.7;
  font-family: Arial, Helvetica, sans-serif;
}

.booking-benefits {
  list-style: none;
  padding: 0;
}

.booking-benefits li {
  margin-bottom: 12px;
  font-size: 15px;
  color: #333;
  font-family: Arial, Helvetica, sans-serif;
}

/* TABS */
.booking-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #000E42;
}

.btab {
  flex: 1;
  padding: 13px 10px;
  border: none;
  background: white;
  color: #000E42;
  font-size: 13px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.btab:first-child {
  border-right: 1px solid #000E42;
}

.btab.active {
  background: #000E42;
  color: white;
}

/* PANELS */
.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* TRIAL BOX */
.trial-box {
  background: white;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.trial-box h3 {
  font-size: 24px;
  color: #000E42;
  margin-bottom: 14px;
  font-family: Arial, Helvetica, sans-serif;
}

.trial-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 24px;
  font-family: Arial, Helvetica, sans-serif;
}

.trial-btn {
  padding: 15px 38px;
  background: #000E42;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  cursor: pointer;
  transition: background 0.3s ease;
}

.trial-btn:hover {
  background: #00208A;
}

.trial-note {
  margin-top: 14px !important;
  font-size: 12px !important;
  color: #999 !important;
  font-family: Arial, Helvetica, sans-serif !important;
}

/* CALENDLY IFRAME */
.booking-right iframe {
  width: 100%;
  height: 680px;
  border-radius: 15px;
  border: none;
  background: white;
}

/* TABLET */
@media (max-width: 900px) {
  .booking-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .booking-left {
    text-align: center;
  }

  .booking-left h2 {
    font-size: 30px;
  }

  .booking-benefits {
    display: inline-block;
    text-align: left;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .booking-section {
    padding: 60px 20px;
  }

  .booking-left h2 {
    font-size: 26px;
  }

  .btab {
    font-size: 12px;
    padding: 12px 6px;
  }

  .trial-box {
    padding: 30px 20px;
  }

  .trial-box h3 {
    font-size: 20px;
  }

  .booking-right iframe {
    height: 580px;
  }
}

/* WHATSAPP FLOATING BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 99999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.55);
}

/* MOBILE */
@media (max-width: 600px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
}