:root {
  --primary: #f5821f;
  /* orange */
  --primary-dark: #e16f11;
  --accent-blue: #0877be;
  --bg-overlay: rgba(0, 0, 0, 0.55);
  --text-light: #ffffff;
  --text-muted: #e6e6e6;
  --card-bg: #ffffff;
  --border-radius-lg: 18px;
  --border-radius-sm: 10px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: #111827;
  background-color: #020617;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 24px 32px 32px;
  background-image: linear-gradient(to right,
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.3)),
    url("assets/right-guidance-at-the-right-stage-leads-to-better-results.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  gap: 40px;
  align-items: center;
}

.hero-left,
.hero-right {
  flex: 1;
}

.hero-left {
  color: var(--text-light);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 52px;
}

.logo {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-direction: column;
  align-content: flex-start;
}

.logo2 {
  margin-bottom: -38px;
  margin-top: 30px;
  height: 77px !important;
}


.logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.hero-badge span {
  color: var(--primary);
  font-weight: 600;
}

.hero-title {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 700;
  max-width: 520px;
  margin-bottom: 16px;
}

.hero-title span {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.hero-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 20px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 26px;
  font-size: 13px;
  color: var(--text-muted);
}

.hero-highlights span::before {
  content: "• ";
  color: var(--primary);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  border: none;
  background: var(--primary);
  color: #111827;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.35);
  transition: background 0.2s ease, transform 0.1s ease,
    box-shadow 0.1s ease;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.hero-cta-note {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 220px;
}

.hero-right {
  display: flex;
  justify-content: flex-end;
}

.lead-form-card {
  width: 100%;
  max-width: 380px;
  background: var(--card-bg);
  border-radius: 22px;
  padding: 26px 26px 24px;
  box-shadow: var(--shadow-soft);
}

.lead-form-title {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4px;
}

.lead-form-subtitle {
  font-size: 12px;
  text-align: center;
  color: #6b7280;
  margin-bottom: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-label {
  font-size: 12px;
  color: #374151;
  font-weight: 500;
}

.form-control,
.form-select {
  width: 100%;
  padding: 9px 11px;
  border-radius: var(--border-radius-sm);
  border: 1px solid #e5e7eb;
  font-size: 13px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 1px rgba(8, 119, 190, 0.1);
}

.form-footer-text {
  font-size: 11px;
  color: #6b7280;
  margin-bottom: 10px;
}

.btn-submit {
  width: 100%;
  padding: 11px;
  border-radius: 999px;
  border: none;
  background: var(--accent-blue);
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease,
    box-shadow 0.1s ease;
}

.btn-submit:hover {
  background: #06619a;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.35);
}

.form-note {
  margin-top: 8px;
  font-size: 10px;
  color: #9ca3af;
  text-align: center;
}

.form-success-msg {
  padding: 14px 18px;
  margin-bottom: 16px;
  background: #d1fae5;
  color: #065f46;
  border-radius: 10px;
  font-size: 14px;
}

.btn-whatsapp {
  display: inline-block;
  padding: 10px 18px;
  background: #25d366;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.btn-whatsapp:hover {
  background: #20bd5a;
  color: #fff;
}

.form-error-msg {
  padding: 14px 18px;
  margin-bottom: 16px;
  background: #fee2e2;
  color: #991b1b;
  border-radius: 10px;
  font-size: 14px;
}

/* Why Most Students Fail section */
.section-light {
  background: #f9fafb;
  padding: 64px 24px 72px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 8px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
}

.section-subtitle {
  margin-top: 8px;
  font-size: 14px;
  color: #6b7280;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px 64px;
}

.reason-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.reason-icon-wrap {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.reason-icon-wrap img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.reason-content-title {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
}

.reason-content-text {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.6;
}

/* Why Parents Trust Us / Advantage section */
.section-advantage {
  background: var(--primary);
  padding: 56px 24px 64px;
}

.advantage-inner {
  max-width: 1150px;
  margin: 0 auto;
}

.advantage-heading {
  font-size: 26px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 28px;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.advantage-card {
  position: relative;
  background: #ffffff;
  border-radius: 26px;
  padding: 30px 22px 24px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.15);
}

.advantage-icon-pill {
  position: absolute;
  top: -18px;
  left: 24px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.advantage-icon-pill img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.advantage-title {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
}

.advantage-text {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.6;
}

/* Our Results banner below hero - same width as other sections */
.hero-banner {
  width: 100%;
  padding: 40px 24px 48px;
  background: #f9fafb;
}

.hero-banner-inner {
  max-width: 1150px;
  margin: 0 auto;
}

.hero-banner-title {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  text-align: center;
  margin-bottom: 20px;
}

.hero-banner-image-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
}

.hero-banner-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Courses offered section */
.section-courses {
  background: #f9fafb;
  padding: 64px 24px 72px;
}

.courses-inner {
  max-width: 1150px;
  margin: 0 auto;
}

.courses-heading {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 30px;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.course-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 22px 20px 20px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.course-title {
  font-size: 17px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
}

.course-points {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: #4b5563;
}

.course-points li::before {
  content: "• ";
  color: var(--primary);
}

.courses-note {
  margin-top: 22px;
  font-size: 14px;
  color: #374151;
}

/* Concerns section */
.section-concerns {
  background: #ffffff;
  padding: 64px 24px 72px;
}

.concerns-inner {
  max-width: 1150px;
  margin: 0 auto;
}

.concerns-heading {
  font-size: 26px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.concerns-subtitle {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 26px;
}

.concerns-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.concern-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.concern-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.concern-icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.concern-title {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
}

.concern-text {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.6;
}

/* What you get section */
.section-benefits {
  background: #ffffff;
  padding: 64px 24px 72px;
}

.benefits-inner {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.benefits-heading {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 28px;
}

.benefits-heading span {
  color: var(--accent-blue);
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.benefit-item {
  padding-bottom: 18px;
  border-bottom: 1px solid #e5e7eb;
}

.benefit-title {
  position: relative;
  padding-left: 18px;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
}

.benefit-title::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #111827;
  font-size: 22px;
  line-height: 1;
}

.benefit-text {
  padding-left: 18px;
  font-size: 13px;
  color: #4b5563;
  line-height: 1.6;
}

.benefits-image-wrap {
  display: flex;
  justify-content: flex-end;
}

.benefits-image-card {
  max-width: 420px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 26px 55px rgba(15, 23, 42, 0.35);
}

.benefits-image-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Who is this for section */
.section-who {
  background: var(--accent-blue);
  color: #ffffff;
  padding: 62px 24px 0;
}

.who-inner {
  max-width: 1150px;
  margin: 0 auto;
}

.who-heading {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 34px;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 80px;
  padding-bottom: 48px;
}

.who-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.who-icon-wrap {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: #065a8f;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.who-icon-wrap img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.who-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}

.who-text {
  font-size: 13px;
  color: #dbeafe;
  line-height: 1.7;
}

.who-cta-band {
  margin-top: 0;
  background: #fff5ec;
  /* soft tint of primary so eyes feel relaxed */
  border-top: 2px solid var(--primary);
  padding: 26px 24px 30px;
}

.who-cta-inner {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 26px;
  align-items: center;
}

.who-cta-heading {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 14px;
}

.who-cta-heading span {
  color: var(--accent-blue);
}

.who-cta-text {
  font-size: 13px;
  color: #374151;
  max-width: 420px;
}

.who-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 32px;
  border-radius: 999px;
  border: none;
  background: var(--accent-blue);
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
  transition: background 0.2s ease, transform 0.1s ease,
    box-shadow 0.1s ease;
  white-space: nowrap;
}

.who-cta-btn:hover {
  background: #065a8f;
  transform: translateY(-1px);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.4);
}

/* FAQ section - professional accordion */
.section-faq {
  background: linear-gradient(180deg, #fafbfc 0%, #ffffff 12%);
  padding: 64px 24px 80px;
}

.faq-inner {
  max-width: 1150px;
  margin: 0 auto;
}

.faq-heading {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111827;
  letter-spacing: -0.02em;
}

.faq-intro {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 560px;
}

.faq-list {
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 10px 20px -4px rgba(0, 0, 0, 0.08);
  background: #ffffff;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
  transition: background-color 0.2s ease;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item.open {
  background: #fefefe;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.2s ease;
}

.faq-question:hover {
  background: #f9fafb;
}

.faq-item.open .faq-question {
  background: #f8fafc;
}

.faq-question-text {
  flex: 1;
  min-width: 0;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  line-height: 1.4;
}

.faq-prefix {
  font-weight: 700;
  color: var(--accent-blue);
  margin-right: 8px;
}

.faq-icon-wrap {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #eff6ff;
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.2s ease, color 0.2s ease;
}

.faq-icon-wrap i {
  font-size: 12px;
}

.faq-question:hover .faq-icon-wrap {
  background: #dbeafe;
  color: #065a8f;
}

.faq-item.open .faq-icon-wrap {
  transform: rotate(180deg);
  background: var(--accent-blue);
  color: #ffffff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 24px 20px 24px;
  font-size: 15px;
  color: #4b5563;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s ease 0.08s, transform 0.3s ease 0.08s;
}

.faq-item.open .faq-answer .faq-answer-inner {
  opacity: 1;
  transform: translateY(0);
}

.faq-item.open .faq-answer {
  max-height: 420px;
}

/* Footer */
.site-footer {
  background: var(--accent-blue);
  color: #e5e7eb;
  padding: 18px 24px;
  font-size: 12px;
}

.footer-inner {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.footer-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  background-color: white;
  border-radius: 5px;
}

.footer-copy {
  opacity: 0.9;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-dot {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #ffffff;
  opacity: 0.95;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  font-size: 13px;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    opacity 0.15s ease;
}

.footer-social-dot:hover {
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.35);
}

@media (max-width: 992px) {
  .hero {
    padding: 20px 16px 28px;
  }

  .hero-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .navbar {
    margin-bottom: 28px;
  }

  .hero-right {
    justify-content: center;
  }

  .lead-form-card {
    max-width: 100%;
  }

  .advantage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .courses-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .concerns-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {


  .logo {
    width: 100%;
    display: flex;
    gap: 10px;
    flex-direction: row;
    align-items: center;
  }


  .logo2 {
    margin-bottom: 0;
    margin-top: 0;
    height: 45px !important;
  }

  .logo img {
    border-radius: 5px;
    padding: 5px;
    background: white;
    width: 50%;
    height: 45px;
    /* width: auto; */
    object-fit: contain;
  }











  .hero {
    padding: 16px 14px 24px;
    background-position: top center;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-text {
    font-size: 13px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-cta-note {
    max-width: 100%;
  }

  .section-light {
    padding: 44px 18px 52px;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-advantage {
    padding: 44px 18px 52px;
  }

  .advantage-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 22px;
  }

  .section-who {
    padding: 44px 18px 0;
  }

  .who-heading {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .section-benefits {
    padding: 44px 18px 52px;
  }

  .section-faq {
    padding: 44px 18px 52px;
  }

  .faq-question {
    padding: 16px 18px;
    gap: 14px;
  }

  .faq-icon-wrap {
    width: 32px;
    height: 32px;
  }

  .faq-icon-wrap i {
    font-size: 11px;
  }

  .faq-answer-inner {
    padding: 0 18px 16px 18px;
    font-size: 14px;
  }

  .site-footer {
    padding: 16px 18px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .benefits-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .benefits-image-wrap {
    justify-content: center;
  }

  .who-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .who-cta-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .who-cta-text {
    max-width: 100%;
  }

  .courses-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .concerns-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}