@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@400;500;600;800&display=swap");
/* ══════════════════════════════════════════
               NEW DESIGN TOKENS
            ══════════════════════════════════════════ */
:root {
  --green: #58cc02;
  --green-d: #46a400;
  --green-l: #d7f5b1;
  --blue: #1cb0f6;
  --blue-d: #0e8fc7;
  --blue-l: #c7edff;
  --yellow: #ffc800;
  --yellow-d: #cc9f00;
  --yellow-l: #fff3c0;
  --red: #ff4b4b;
  --red-d: #d63a3a;
  --red-l: #ffd0d0;
  --purple: #ce82ff;
  --purple-d: #a452d6;
  --purple-l: #f0d4ff;
  --orange: #ff9600;
  --orange-d: #cc7800;
  --orange-l: #ffe4b2;
  --dark: #2b2d42;
  --mid: #4b4f6a;
  --light: #f7f7f7;
  --white: #ffffff;
  --text: #3c3c3c;
  --radius: 16px;
  --shadow: 0 4px 0 rgba(0, 0, 0, 0.15);
  /* Keep original vars for auth panel compatibility */
  --edu-orange: #ff9600;
  --edu-orange-dark: #cc7800;
  --edu-orange-light: #ffb347;
  --edu-blue: #1cb0f6;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Lexend', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.caveat {
  font-family: "Caveat", cursive;
  line-height: 1.15;
}

/* ══════════════════════════════════════════
            CONTAINER — Large screen centering
            ══════════════════════════════════════════ */
.hero-section,
.who-section,
.services-section,
.why-section,
.testimonials-section,
.cta-banner,
.site-footer {
  /* Limit content width on very large screens */
}

.hero-section > *,
.who-section > *,
.services-section > *,
.why-section > *,
.testimonials-section > *,
.site-footer > * {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* ══════════════════════════════════════════
               NAVBAR — fully responsive
            ══════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999999;
  background: var(--white);
  border-bottom: 3px solid var(--green);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: 68px;
  display: flex;
  align-items: center;
  padding: 0 5%;
}

.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 42px;
}

.nav-logo-text {
  font-family: "Caveat", cursive;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
}

/* Desktop links (hidden on mobile) */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  color: var(--mid);
  padding: 8px 12px;
  border-radius: 10px;
  transition:
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  background: var(--green-l);
  color: var(--green-d);
}

/* Nav action buttons */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-email-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 13px;
  color: var(--dark);
  padding: 8px 14px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.nav-email-btn:hover {
  background: var(--light);
  color: var(--orange);
}

.btn-login-outline {
  font-weight: 700;
  font-size: 13px;
  color: #000;
  padding: 5px 16px;
  border-radius: 10px;
  border: 2px solid #000;
  background: transparent;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
}

.btn-login-outline:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.btn-dashboard {
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  padding: 8px 16px;
  border-radius: 10px;
  border: none;
  background: var(--blue);
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-logout {
  font-weight: 700;
  font-size: 13px;
  color: var(--dark);
  padding: 8px 16px;
  border-radius: 10px;
  border: 1.5px solid #ddd;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-call-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(135deg, var(--orange-d), var(--orange));
  box-shadow: 0 4px 12px rgba(255, 150, 0, 0.35);
  cursor: pointer;
  transition: transform 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-call-nav:hover {
  transform: scale(1.05);
  color: #fff;
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: transparent;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile menu drawer */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 3px solid var(--green);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 99999998;
  padding: 16px 5% 20px;
  flex-direction: column;
  gap: 6px;
}

.nav-mobile-menu.open {
  display: flex;
}

.nav-mobile-menu a,
.nav-mobile-menu button {
  font-weight: 700;
  font-size: 15px;
  color: var(--mid);
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}

.nav-mobile-menu a:hover,
.nav-mobile-menu button:hover {
  background: var(--green-l);
  color: var(--green-d);
}

.nav-mobile-menu .mob-call {
  background: linear-gradient(135deg, var(--orange-d), var(--orange));
  color: white !important;
  border-radius: 12px;
  text-align: center;
  margin-top: 6px;
}

.nav-mobile-menu .mob-call:hover {
  background: linear-gradient(
    135deg,
    var(--orange-d),
    var(--orange)
  ) !important;
  color: white !important;
}

/* ══════════════════════════════════════════
               AUTH PANEL (kept exactly as original)
            ══════════════════════════════════════════ */
.auth-panel {
  position: absolute;
  top: 50%;
  right: -200%;
  width: 420px;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transition: 0.4s ease;
  z-index: 999999999;
  border-radius: 20px;
  padding: 0px;
  transform: translateY(-50%);
}

.auth-panel.open {
  right: 100px;
}

.auth-panel .auth_top_heading {
    font-family: 'Caveat', cursive;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.auth-panel .auth_top_pera {
  font-family: 'Lexend', sans-serif;
    font-size: .67rem;
    color: rgba(255, 255, 255, .88);
    display: block;
    margin-top: 2px;
}

.auth-header {
  background: #58CC02;
  color: #fff;
  padding: 26px;
  border-radius: 20px 20px 0px 0px;
  position: relative;
}

.auth-header h1 {
  margin: 0;
  font-size: 22px;
  font-family: "Nunito", sans-serif;
}
.auth-header p {
  margin: 6px 0 0;
  font-size: 13px;
  opacity: 0.9;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    font-family: "Nunito", sans-serif;
    background: rgba(255, 255, 255, .28);
    border: none;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    color: #fff;
    font-size: .72rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;

}

.step {
  display: none;
}
.step.active {
  display: block;
}

label {
  font-size: 12px;
}

input,
select,
textarea {
  width: 100%;
  font-size: 12px;
  padding: 10px;
  margin: 8px 0;
  border-radius: 8px !important;
  border: 1px solid #ccc;
  outline: none;
  font-family: "Nunito", sans-serif;
}

input:focus,
select:focus {
  border-color: #6c63ff;
}

.btns {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

button {
  padding: 10px 22px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
}

#prevBtn {
  background: #ccc;
}
#nextBtn {
  background: #6c63ff;
  color: #fff;
}

.submit-btn {
  width: 100%;
  background: #58CC02;;
  color: #fff;
  margin-top: 10px;
}

.submit-btn:hover {
     transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(88, 204, 2, 0.42);
}

.auth_body {
  padding: 22px 26px 26px;
}

.switch {
  display: flex;
  background: #EDFCD6;
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 18px;
}

.switch button {
  flex: 1;
    text-align: center;
    padding: .32rem;
    border-radius: 50px;
    font-family: 'Lexend', sans-serif;
    font-size: .7rem;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    color: #3D9900;
}

.switch button.active {
     background: #fff;
    color: #0A85C2;
    font-weight: 700;
    border: 1.5px solid #93DBFC;
}

.roles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

.role {
     border: 1.5px solid #D4EDE0;
    border-radius: 12px;
    padding: .55rem .65rem;
    text-align: center;
    background: #fff;
    cursor: pointer;
}

.role.active {
      border-color: #58CC02;
    background: #EDFCD6;
}

.role h4 {
      font-family: 'Caveat', cursive;
    font-size: .92rem;
    font-weight: 700;
    color: #2A6B1A;
    margin:0px;
}
.role p {
     font-family: 'Lexend', sans-serif;
    font-size: 12px !important;
    color: #7A9E8A;
}

.field {
  position: relative;
  margin-bottom: 0px !important;
}

.field input {
  /*width: 100%;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1.5px solid #dbe1ff !important;*/
    width: 100%;
    border: 1.5px solid #93DBFC !important;
    border-radius: 9px !important;
    padding: .4rem .7rem !important;
    font-size: .72rem !important;
    font-family: 'Lexend',sans-serif !important;
    color: #0A4F80 !important;
    background: #ffffff !important;
    outline: none !important;
    -webkit-appearance: none;
    appearance: none;
    transition: border .18s;
}

.field label {
  /*position: absolute;
  left: 14px;
  top: 0px;
  background: #fff;
  padding: 0 6px;
  font-size: 11px;
  z-index: 9;
  color: var(--mid);*/
    font-family: 'Caveat', cursive;
    font-size: .85rem;
    font-weight: 600;
    color: #7A9E8A;
    display: block;
    margin-bottom: 3px;
    z-index: 9;
}

.done-badge{
      font-family: 'Caveat', cursive;
    font-size: .82rem;
    font-weight: 700;
    background: #FDE8FC;
    color: #B84FB4;
    border-radius: 50px;
    padding: .15rem .65rem;
    border: 1.5px solid #F5B8F2;
    display: inline-block;
    margin-bottom: .5rem;
}

.successRegModal h2{
  font-family: 'Caveat', cursive;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: .4rem;
}

.successRegModal p{
      font-family: 'Lexend', sans-serif;
    font-size: .7rem;
    color: #7A9E8A;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.link {
  font-size: 12px;
  text-align: right;
  margin-top: -6px;
}

.link .remember-me {
  display: flex;
    align-items: center;
    gap: .3rem;
    font-family: 'Lexend', sans-serif;
    font-size: .65rem;
    color: #7A9E8A;
}

.link .forgot-link {
  color: #0A85C2;
    font-family: 'Lexend', sans-serif;
    font-size: .65rem;
    font-weight: 600;
    cursor: pointer;
}

.note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--mid);
  text-align: center;
}

.success {
  text-align: center;
  font-size: 14px;
  color: #15803d;
}

.hidden {
  display: none;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 14px;
}

.remember-me span {
  white-space: nowrap;
}
.remember-me input {
  accent-color: #1b4fd8;
  cursor: pointer;
}

.forgot-link {
  font-size: 14px;
  color: #1b4fd8;
  cursor: pointer;
}
.forgot-link:hover {
  text-decoration: underline;
}

.no-scroll {
  overflow: hidden;
}

.role-selection {
  display: flex;
  gap: 12px;
}
.role-selection input {
  display: none;
}

.role-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
  background: #fff;
}

.role-card .check {
  width: 18px;
  height: 18px;
  border: 2px solid #94a3b8;
  border-radius: 4px;
}

input:checked + .role-card {
  border-color: #ff7a18;
  background: #fff6ee;
}
input:checked + .role-card .check {
  background: #ff7a18;
  border-color: #ff7a18;
}

.toast-message {
  position: fixed;
  top: 60px;
  right: 30px;
  min-width: 220px;
  z-index: 9999999999999;
  background: #fff;
  color: #333;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  padding: 16px 24px;
  font-size: 15px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s,
    top 0.3s;
  font-family: "Nunito", sans-serif;
}

.toast-message.show {
  opacity: 1;
  pointer-events: auto;
  top: 110px;
}
.toast-success {
  border-left: 6px solid #22c55e;
}
.toast-error {
  border-left: 6px solid #ef4444;
}

.loader {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.btn-loading {
  position: relative;
  color: transparent !important;
}
.btn-loading .loader {
  position: absolute;
  left: 50%;
  top: 30%;
  transform: translate(-50%, -50%);
}

.overlay-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.overlay-loader .loader {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
}

.password-field {
  position: relative;
}
.password-field input {
  padding-right: 40px;
}

.toggle-eye {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 16px;
  color: #555;
}

.pass-wrap {
  position: relative;
}

.rule-box {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border: 1px solid #ddd;
  padding: 0px 10px;
  width: 100%;
  background: #fafafa;
  border-radius: 6px;
  display: none;
  position: absolute;
  bottom: 110%;
  left: 0;
  z-index: 10;
  text-align: start;
}

.rule {
  font-size: 10px;
  margin: 5px 0;
  color: red;
}
.rule.valid {
  color: green;
  font-weight: 600;
}

.successRegModal .success-box {
  padding: 30px 25px;
  text-align: center;
  background: #fff;
  border-radius: 20px;
  font-family: "Nunito", sans-serif;
}
.successRegModal .success-box .icon {
  font-size: 50px;
      margin: 40px auto;
}
.successRegModal .success-box h2 {
  color: #58cc02;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: "Nunito", sans-serif;
}
.successRegModal .success-box h2 span {
  color: #1cb0f6;
}
.successRegModal .success-box p {
    font-family: 'Lexend', sans-serif;
    font-size: .9rem;
    color: #7A9E8A;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.successRegModal .success-box h2{
    font-size: 32px !important;
}
.successRegModal .action-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.successRegModal .link-btn {
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}
.successRegModal .link-btn.website {
      background: #E8F7FF !important;
    border: 1.5px solid #93DBFC !important;
    border-radius: 50px !important;
    color: #0A85C2 !important;
    font-family: 'Lexend', sans-serif !important;
    font-size: .7rem !important;
    font-weight: 600 !important;
    padding: .42rem 1rem !important;
    cursor: pointer !important;
}
.successRegModal .link-btn.dashboard {
      background: #1CB0F6 !important;
    border: none !important;
    border-radius: 50px !important;
    color: #fff !important;
    font-family: 'Lexend', sans-serif !important;
    font-size: .7rem !important;
    font-weight: 700 !important;
    padding: .42rem 1rem !important;
    cursor: pointer !important;
}
.successRegModal .link-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.underline:hover {
  text-decoration: underline;
  color: #123d7a;
}

.field-error {
  font-size: 11px;
  color: #ef4444;
  text-align: start;
}

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

.text-pink{
   color: #B84FB4;
}

.text-green {
  color: #3D9900;
}

.text-bluee {
 color: #0A85C2;
}

.otp-heading{
  font-family: 'Caveat', cursive;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0A85C2;
}
.otp-pera{
      font-size: .63rem;
    color: #7A9E8A;
    font-family: 'Lexend', sans-serif;
    margin-top: 1px;
}

.auth-panel .submit-btn{
      border-radius: 50px !important;
    color: #fff !important;
    font-size: .78rem !important;
    font-weight: 700 !important;
    padding: .52rem !important;
}

.auth-panel .btn-outline-secondary{
          background: #ffffff !important;
    border: 1.5px solid #D4EDE0 !important;
    border-radius: 50px !important;
    color: #7A9E8A !important;
    font-family: 'Lexend', sans-serif !important;
    font-size: .72rem !important;
    font-weight: 500 !important;
    padding: .45rem !important;
    width: 100% !important;
    cursor: pointer !important;
    margin-top: .4rem !important;
}

.otp-input {
  width: 42px !important;
  height: 42px;
  text-align: center;
  font-size: 18px !important;
  font-weight: 700;
  border: 2px solid #dbe1ff !important;
  border-radius: 10px !important;
  padding: 6px !important;
  margin: 4px !important;
}

.otp-input:focus {
  border-color: #6c63ff !important;
}

.iti {
  width: 100%;
  margin: 8px 0;
}
.iti__country-list {
  z-index: 9999;
  width: 300px;
}
.iti__flag-container {
  border-radius: 8px 0 0 8px;
  font-size: 12px;
  height: 42px;
}
.iti__selected-flag {
  background-color: #f5f5f5;
  border-radius: 8px 0 0 8px;
}
.iti__selected-flag:hover {
  background-color: #e9e9e9;
}
.field input[type="tel"] {
  padding-left: 75px !important;
  width: 100%;
}

/* Auth backdrop */
.auth-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 99999998;
}

#myLottie {
  width: 500px;
  height: 500px;
  margin: 0 auto;
}

/* Auth panel mobile */
@media (max-width: 991px) {
  .auth-panel {
    top: -60%;
  }
  .auth-panel.open {
    right: 45px;
  }
}

@media (max-width: 767px) {
  .auth-panel {
    top: -82%;
    z-index: 99999999999;
  }
  .auth-panel.open {
    right: -40px;
  }
  #myLottie {
    width: 350px;
    height: 350px;
    margin: 0 auto;
  }
}

/* ══════════════════════════════════════════
               HERO SECTION
            ══════════════════════════════════════════ */
.hero-section {
  background: linear-gradient(135deg, #e8fadb 0%, #d0f5ff 50%, #ffe9d0 100%);
  padding: 100px 5% 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.hero-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(88, 204, 2, 0.08);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-weight: 800;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
  box-shadow: 0 3px 0 var(--yellow-d);
  letter-spacing: 0.5px;
  font-family: "Nunito", sans-serif;
}

.hero-section h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--mid);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-hero-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 16px;
  background: var(--green);
  color: white;
  box-shadow: 0 4px 0 var(--green-d);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    transform 0.1s,
    box-shadow 0.1s;
  font-family: "Nunito", sans-serif;
}

.btn-hero-green:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--green-d);
  color: white;
}

.btn-hero-blue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 16px;
  background: var(--blue);
  color: white;
  box-shadow: 0 4px 0 var(--blue-d);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    transform 0.1s,
    box-shadow 0.1s;
  font-family: "Nunito", sans-serif;
}

.btn-hero-blue:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--blue-d);
  color: white;
}

.hero-stats {
  display: flex;
  gap: 20px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.stat-chip {
  background: var(--white);
  border-radius: 14px;
  padding: 14px 20px;
  text-align: center;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.1);
  min-width: 100px;
}

.stat-chip .num {
  font-family: "Caveat", cursive;
  font-size: 2rem;
  font-weight: 700;
  display: block;
}

.stat-chip .lbl {
  font-size: 12px;
  font-weight: 700;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.stat-chip:nth-child(1) .num {
  color: var(--green-d);
}
.stat-chip:nth-child(2) .num {
  color: var(--blue-d);
}
.stat-chip:nth-child(3) .num {
  color: var(--orange);
}

.hero-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-wrap img {
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  display: block;
}

.hero-float {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 10px 16px;
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: floatBob 3s ease-in-out infinite;
  font-family: "Nunito", sans-serif;
}

@keyframes floatBob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.hero-float.f1 {
  display:none;
  top: -25px;
  left: -20px;
  color: var(--green-d);
  animation-delay: 0s;
}
.hero-float.f2 {
  display:none;
  bottom: 10px;
  right: -10px;
  color: var(--blue-d);
  animation-delay: 1s;
}
.hero-float.f3 {
  display:none;
  bottom: -40px;
  left: 20px;
  color: var(--orange);
  animation-delay: 2s;
}

/* ══════════════════════════════════════════
               WHO CAN JOIN
            ══════════════════════════════════════════ */
.who-section {
  background: var(--light);
  padding: 72px 5%;
}

.section-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.section-label {
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: "Nunito", sans-serif;
}
.section-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 600px;
  line-height: 1.7;
  margin: 0 auto;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 44px;
}

.who-card {
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}

.who-card:hover {
  transform: translateY(-4px);
}
.who-card .icon {
  font-size: 3rem;
  margin-bottom: 14px;
  display: block;
}

.who-card .image {
  display: block;
  width:100px;
  height:100px;
  margin:0 auto;
}

.who-card h3 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.who-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.who-card.c-student {
  background: var(--green-l);
  box-shadow: 0 4px 0 #9ee876;
}
.who-card.c-student h3 {
  color: var(--green-d);
}
.who-card.c-student p {
  color: #3a7200;
}
.who-card.c-parent {
  background: var(--blue-l);
  box-shadow: 0 4px 0 #72cdfa;
}
.who-card.c-parent h3 {
  color: var(--blue-d);
}
.who-card.c-parent p {
  color: #0a5f82;
}
.who-card.c-teacher {
  background: var(--yellow-l);
  box-shadow: 0 4px 0 #e5b200;
}
.who-card.c-teacher h3 {
  color: var(--yellow-d);
}
.who-card.c-teacher p {
  color: #7a5c00;
}
.who-card.c-institute {
  background: var(--purple-l);
  box-shadow: 0 4px 0 #b568e8;
}
.who-card.c-institute h3 {
  color: var(--purple-d);
}
.who-card.c-institute p {
  color: #6b2d9a;
}

/* ══════════════════════════════════════════
               SERVICES
            ══════════════════════════════════════════ */
.services-section {
  background: white;
  padding: 72px 5%;
}

.services-grid {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));*/
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  margin-top: 44px;
}

.services-grid > :nth-child(-n + 3) {
  grid-column: span 2;
}

.services-grid > :nth-child(4) {
  grid-column: 2 / span 2;
}

.services-grid > :nth-child(5) {
  grid-column: 4 / span 2;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  border: 2.5px solid transparent;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.service-card.s1 {
  border-color: var(--green);
}
.service-card.s2 {
  border-color: var(--blue);
}
.service-card.s3 {
  border-color: var(--yellow);
}
.service-card.s4 {
  border-color: var(--red);
}
.service-card.s5 {
  border-color: var(--purple);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.s1 .service-icon {
  background: var(--green-l);
}
.s2 .service-icon {
  background: var(--blue-l);
}
.s3 .service-icon {
  background: var(--yellow-l);
}
.s4 .service-icon {
  background: var(--red-l);
}
.s5 .service-icon {
  background: var(--purple-l);
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}
.service-card p {
  font-size: 0.93rem;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 14px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.stag {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.s1 .stag {
  background: var(--green-l);
  color: var(--green-d);
}
.s2 .stag {
  background: var(--blue-l);
  color: var(--blue-d);
}
.s3 .stag {
  background: var(--yellow-l);
  color: var(--yellow-d);
}
.s4 .stag {
  background: var(--red-l);
  color: var(--red-d);
}
.s5 .stag {
  background: var(--purple-l);
  color: var(--purple-d);
}

.learn-btn {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  font-size: 13px;
  color: var(--green-d);
  cursor: pointer;
  margin-top: 14px;
  text-decoration: none;
  transition: gap 0.2s;
  gap: 4px;
}

.learn-btn:hover {
  gap: 8px;
}

/* ══════════════════════════════════════════
               WHY CHOOSE US
            ══════════════════════════════════════════ */
.why-section {
  background: var(--dark);
  color: white;
  padding: 72px 5%;
}

.why-section .section-heading {
  color: white;
}
.why-section .section-sub {
  color: #aab0c4;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 44px;
}

.why-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  transition: background 0.2s;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.1);
}
.why-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: block;
}
.why-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.why-card p {
  font-size: 0.9rem;
  color: #aab0c4;
  line-height: 1.6;
}
.why-card:nth-child(1) h3 {
  color: var(--green);
}
.why-card:nth-child(2) h3 {
  color: var(--blue);
}
.why-card:nth-child(3) h3 {
  color: var(--yellow);
}
.why-card:nth-child(4) h3 {
  color: var(--purple);
}

/* ══════════════════════════════════════════
               TESTIMONIALS
            ══════════════════════════════════════════ */
.testimonials-section {
  background: var(--light);
  padding: 72px 5%;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 44px;
}

.testi-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.08);
  transition: transform 0.2s;
}

.testi-card:hover {
  transform: translateY(-4px);
}

.stars {
  color: var(--yellow);
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.testi-card blockquote {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
  border-left: 4px solid var(--green);
  padding-left: 14px;
}

.testi-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: white;
  flex-shrink: 0;
  font-family: "Nunito", sans-serif;
}

.av-g {
  background: var(--green-d);
}
.av-b {
  background: var(--blue-d);
}
.av-o {
  background: var(--orange);
}

.testi-name {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--dark);
}
.testi-role {
  font-size: 0.82rem;
  color: var(--mid);
}

/* ══════════════════════════════════════════
               CTA BANNER
            ══════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%);
  color: white;
  text-align: center;
  padding: 72px 5%;
  position: relative;
  overflow: hidden;
}

.cta-banner::before,
.cta-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.cta-banner::before {
  width: 400px;
  height: 400px;
  top: -200px;
  left: -100px;
}
.cta-banner::after {
  width: 300px;
  height: 300px;
  bottom: -150px;
  right: -50px;
}

.cta-banner h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  font-size: 1.1rem;
  margin-bottom: 36px;
  opacity: 0.92;
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 16px;
  background: white;
  color: var(--green-d);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.15);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    transform 0.1s,
    box-shadow 0.1s;
  font-family: "Nunito", sans-serif;
}

.btn-cta-white:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.15);
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 16px;
  background: transparent;
  color: white;
  border: 2.5px solid rgba(255, 255, 255, 0.7);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
  font-family: "Nunito", sans-serif;
}

.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ══════════════════════════════════════════
               FOOTER
            ══════════════════════════════════════════ */
.site-footer {
  background: #1a1d2e;
  color: #ccd1e0;
  padding: 52px 5% 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 38px;
  margin-bottom: 14px;
  filter: brightness(1.2);
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #8890a8;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.social-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.social-dot:hover {
  transform: scale(1.15);
}
.sd-g {
  background: var(--green-d);
  color: white;
}
.sd-b {
  background: var(--blue-d);
  color: white;
}
.sd-o {
  background: var(--orange);
  color: white;
}

.site-footer h4 {
  font-family: "Caveat", cursive;
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 18px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer ul li {
  margin-bottom: 10px;
}

.site-footer ul li a {
  color: #8890a8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.site-footer ul li a:hover {
  color: var(--green);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  color: #5a6080;
}

.footer-bottom b {
  color: var(--green);
}

/* Floating call */
.floating-call {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--orange-d), var(--orange));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 16px rgba(255, 150, 0, 0.4);
  text-decoration: none;
  z-index: 9999;
  transition: transform 0.2s;
}

.floating-call:hover {
  transform: scale(1.1);
  color: white;
}

/* Wave divider */
.wave-div {
  line-height: 0;
}
.wave-div svg {
  display: block;
}

/* Lottie Fallback */
.lottie-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lottie-fallback {
    position: absolute;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

.lottie-wrap dotlottie-wc {
    position: relative;
    z-index: 1;
}

.lottie-wrap.loaded .lottie-fallback {
    display: none;
}

/* ══════════════════════════════════════════
               RESPONSIVE BREAKPOINTS
            ══════════════════════════════════════════ */

/* Large screen max-width container */
@media (min-width: 1500px) {
  .hero-section,
  .who-section,
  .services-section,
  .why-section,
  .testimonials-section,
  .cta-banner,
  .site-footer {
    padding-left: calc((100vw - 1400px) / 2);
    padding-right: calc((100vw - 1400px) / 2);
  }

  .site-nav {
    padding-left: calc((100vw - 1400px) / 2);
    padding-right: calc((100vw - 1400px) / 2);
  }
}

@media (max-width: 1100px) {
  .nav-links {
    display: none;
  }
  .nav-email-btn {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
}

@media (max-width: 991px) {
  .hero-section {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 100px 5% 50px;
    min-height: auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-img-wrap {
    display: block;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav-logo-text {
    display: block;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .btn-call-nav span {
    display: none;
  }
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid > * {
    grid-column: span 1 !important; /* reset */
  }
}

/* ------------------- */
/* 📱 Mobile (1 item) */
/* ------------------- */
@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-grid > * {
    grid-column: span 1 !important;
  }
}
