/* ================= OPTION2 - PREMIUM style.css (FULL – PREMIUM UI)================= */

/* =========================
   PREMIUM COLOR SYSTEM
   Charcoal + Gold + White
========================= */
:root {
  --navy: #1c1f26;            /* premium charcoal */
  --navy-soft: #2a2e38;       /* soft charcoal */
  --primary: #d4af37;         /* gold accent */
  --primary-light: #ead27a;   /* soft gold */
  --bg-soft: #f7f7f8;         /* premium light grey */
  --white: #ffffff;
  --text-dark: #111827;
  /*--text-muted: #4b5563;*/ /* grey text*/
  --text-muted: #334155;
  --gold: #c9a227;          /* Rich premium gold */
  --gold-dark: #a8841e;     /* Hover / accent */
}


/* =========================
   RESET & BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
}

body {
  background: var(--bg-soft);
  color: var(--text-dark);
}

/* =========================
   CONTAINER
========================= */
.container {
  max-width: 1200px;
  margin: auto;
}

/* =========================
   HEADER
========================= */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 40px;
  /*background: linear-gradient(135deg, var(--navy), var(--navy-soft));*/
  background: #111318;
  color: #d1d5db;
  
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-size: 20px;
  font-weight: 600;
}

.logo img {
  height: 42px;
}

.nav a {
  color: #e5e7eb;
  margin-left: 24px;
  text-decoration: none;
  font-weight: 500;
}

.nav a:hover {
  color: var(--primary);
}


/* =========================
   HERO
========================= */
.hero {
  text-align: center;
  /*  background: linear-gradient(135deg, #1c1f26, #2a2e38);  */
  background: linear-gradient(135deg, #111827, #1f2937);
  padding: 30px 40px 40px;  /* 👈 reduced top padding */
  color: white;
}

.hero h1 {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin-top: 0;
  margin-bottom: 12px; /* was visually too loose */
  line-height: 1.2;
}

.hero-sub {
  font-size: 16.5px;
  line-height: 1.6;
}

/* HERO BULLET POINTS */
/*
.hero-points {
  max-width: 520px;
  margin: 10px auto 18px;
  padding: 0;
  list-style: none;
  text-align: center;
}

.hero-points li {
  font-size: 15px;
  color: #e5e7eb;
  margin-bottom: 6px;
  line-height: 1.45;
  position: relative;
  padding-left: 22px;
  display: inline-block;
}
*/
/*
.hero-points {
  max-width: 520px;
  margin: 8px auto 18px;
  padding: 0;
  list-style: none;
  text-align: left;        /* 👈 KEY FIX */
  /*display: inline-block;   /* 👈 centers list block */
/*}

.hero-points li {
  font-size: 14.5px;
  color: #e5e7eb;
  margin-bottom: 6px;
  line-height: 1.5;
  position: relative;
  padding-left: 22px;
}

/* gold tick *//*
.hero-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 1px;
  color: #c9a227; /* darker premium gold */
  /*font-weight: 700;
}

/* gold tick */
/*
.hero-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #d4af37;   /* premium gold */
 /* font-weight: 700;
}
*/

/* HERO BULLET POINTS – CLEAN & ALIGNED */
.hero-points {
  max-width: 520px;
  margin: 10px auto 20px;
  padding: 0;
  list-style: none;
  text-align: left;
  display: inline-block;
}

.hero-points li {
  font-size: 14.5px;
  color: #e5e7eb;
  margin-bottom: 6px;
  line-height: 1.5;
  position: relative;
  padding-left: 22px;
}

.hero-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 1px;
  color: #c9a227; /* premium gold */
  font-weight: 700;
}

/* =========================
   BUTTONS
========================= */
.primary-btn,
.secondary-btn {
  margin: 24px 10px 0;
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  margin-top: 4px
}

.primary-btn {
  background: var(--gold);
  color: #111;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.secondary-btn {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.primary-btn:hover {
  background: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(202, 167, 59, 0.25);
}

.secondary-btn:hover {
  background: rgba(212, 175, 55, 0.08);
}

/* =========================
   SECTION BASE
========================= */
section {
  padding: 30px 30px;
  text-align: center;
}

/* =========================
   SECTION HEADING
========================= */
.section-heading {
  text-align: center;
  margin-bottom: 36px;
}

.section-heading h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.3px;
}

.heading-line {
  width: 60px;
  height: 4px;
  background: var(--primary);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* =========================
   ABOUT
========================= */
.about {
  background: var(--white);
}

.about-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text {
  text-align: left;
}

.about-intro {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}

.about-points {
  background: #f8f9ff;
  padding: 32px;
  border-radius: 16px;
}

.about-points ul {
  list-style: none;
}

.about-points li {
  font-size: 16px;
  margin-bottom: 14px;
  padding-left: 26px;
  position: relative;
}

.about-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* =========================
   SKILLS
========================= */
.skills {
  background: var(--bg-soft);
}

.skills-intro {
  max-width: 720px;
  margin: 0 auto 28px; /* reduced gap */
  font-size: 15.5px;
  line-height: 1.55;   /* 👈 tighter lines */
  color: #475569;
}

.skills-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.skill-card {
  background: white;
  border-radius: 16px;
  padding: 28px 22px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.skill-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.14);
}

.skill-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.skill-card p {
  font-size: 14px;
  color: #4b5563;
}

/* =========================
   COURSES
========================= */
.courses {
  background: var(--white);
}

.course-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 26px;
}

.card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
  padding: 28px 20px;
  border-top: 4px solid var(--primary);
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border-top: 4px solid var(--gold);
}

.card:hover {
  transform: translateY(-6px);
  /*  box-shadow: 0 18px 45px rgba(0,0,0,0.14);  */
  box-shadow: 0 22px 50px rgba(201, 162, 39, 0.25); /* subtle gold glow */
}

.card span {
  display: block;
  font-size: 14px;
  margin-top: 8px;
  color: #6b7280;
}

/*
.courses .card::after {
  content: "Enroll / View Details →";
  display: block;
  margin-top: 14px;
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  transition: transform 0.3s ease;
}

.courses .card:hover::after {
  transform: translateX(6px);
}
*/

/* =========================
   TESTIMONIALS
========================= */
.testimonials {
  background: #f1f1f3;
}

.carousel-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 40px auto 0;
}

.carousel {
  display: flex;
  gap: 20px;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.testimonial-card {
  /*min-width: 33.333%;*/
  min-width: calc(33.333% - 14px);
  font-size: 14px;
  line-height: 1.5;
  padding: 16px 18px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.testimonial-card h4 {
  margin-top: 6px;
  font-size: 16px;
  color: var(--primary);
}

/* ARROWS */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  color: white;
  border: none;
  font-size: 28px;
  padding: 6px 14px;
  border-radius: 50%;
  cursor: pointer;
}

.carousel-btn.left { left: -20px; }
.carousel-btn.right { right: -16px; }

/* =========================
   CTA
========================= */
.cta {
  /*background: linear-gradient(135deg, #1c1f26, #2a2e38);*/
  background: linear-gradient(135deg, #111827, #1f2937);
  color: white;
}

.view-details {
  display: inline-block;
  margin-top: 14px;          /* 👈 pushes it down */
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: all 0.25s ease;
  letter-spacing: 0.3px;
}

.view-details:hover {
  transform: translateX(4px);
  text-decoration: underline;
}

/* =========================
   DIVIDER
========================= */
.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #c7d2fe, transparent);
  margin: 24px 0;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
  .skills-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-card {
    min-width: 85%;
	padding: 14px 16px;
  }
}

@media (max-width: 480px) {
  .skills-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    min-width: 100%;
  }
}

/* =========================
   STICKY HEADER
========================= */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* =========================
	Sticky Header Shadow
=========================	*/
window.addEventListener("scroll", () => {
  const header = document.querySelector(".header");
  if (window.scrollY > 10) {
    header.classList.add("scrolled");
  } else {
    header.classList.remove("scrolled");
  }
});

/* =========================
	FORCE WHATSAPP FLOAT VISIBILITY 
=========================	*/
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;

  width: 58px;
  height: 58px;

  background: #25d366;
  color: white;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;
  text-decoration: none;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);

  z-index: 99999; /* VERY IMPORTANT */
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* SAFETY: prevent parents hiding it */
body,
section {
  overflow-x: visible !important;
}


/* =========================
	POPUP OVERLAY
=========================	*/
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-box {
  background: white;
  width: 90%;
  max-width: 420px;
  padding: 32px;
  border-radius: 16px;
  position: relative;
  text-align: center;
}

.popup-box h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.popup-box p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 20px;
}

.demo-form input {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 14px;
}

.demo-form button {
  width: 100%;
}

/* CLOSE BUTTON */
.close-popup {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
}

/* ===== WHATSAPP FLOAT – FORCE FIX ===== */
a.whatsapp-float {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  top: auto !important;
  left: auto !important;

  width: 58px !important;
  height: 58px !important;

  background-color: #25d366 !important;
  color: white !important;

  border-radius: 50% !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  font-size: 26px !important;
  text-decoration: none !important;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35) !important;

  z-index: 999999 !important;
}

/* hover */
a.whatsapp-float:hover {
  transform: scale(1.1);
}

/* DEMO POPUP */
.demo-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000; /* demo always on top */
}

.demo-box {
  background: white;
  width: 100%;
  max-width: 420px;
  padding: 30px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  animation: scaleIn 0.35s ease;
}

@keyframes scaleIn {
  from {
    transform: translateY(20px) scale(0.96);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.demo-box h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.demo-box p {
  font-size: 14px;
  color: #475569;
  margin-bottom: 20px;
}

.demo-box input {
  width: 100%;
  padding: 14px;
  margin-bottom: 14px;
  border-radius: 10px;
  border: 1px solid #cbd5f5;
  font-size: 14px;
}
/*
.close-btn {
  position: absolute;
  right: 18px;
  top: 14px;
  font-size: 26px;
  cursor: pointer;
}
*/
.close-btn {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 26px;
  font-weight: 600;
  cursor: pointer;
  color: #64748b;
  z-index: 99999;
}

.close-btn:hover {
  color: #111827;
}

/* FIX BUTTON ALIGNMENT FOR <a> AND <button> */
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  line-height: 1;
}

/* CTA section button alignment fix */
.cta .primary-btn {
  margin-top: 20px;
}

/* POPUP */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-box {
  background: white;
  max-width: 520px;
  width: 90%;
  padding: 32px;
  border-radius: 18px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  animation: popupFade 0.3s ease;
}

@keyframes popupFade {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 24px;
  cursor: pointer;
  color: #9ca3af;
}

.popup-close:hover {
  color: #111827;
}

.popup-box h2 {
  font-size: 26px;
  font-weight: 700;
  color: #0b1220; /* dark premium */
  margin-bottom: 6px;
}

.popup-sub {
  font-size: 14.5px;
  color: #6b7280;
  margin-bottom: 14px;
  line-height: 1.6;
}

.popup-section {
  margin-bottom: 22px;
  text-align: left;
}

.popup-section h4 {
  font-size: 15.5px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #caa73b; /* GOLD */
  letter-spacing: 0.2px;
}

.popup-section ul {
  padding-left: 18px;
}

.popup-section ul:not(.subject-list) li {
  font-size: 14.5px;
  color: #374151;
  margin-bottom: 6px;
  line-height: 1.6;
}

.popup-section li {
  margin-bottom: 6px;
  font-size: 14.5px;
}

/*.subject-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 32px;
}*/

.popup-actions {
  display: flex;
  gap: 14px;
  margin-top: 26px;
}

.popup-actions button {
  flex: 1;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}

.popup-actions .primary-btn {
  background: #caa73b;
  color: #0b1220;
  border: none;
  font-weight: 600;
}

.popup-actions .primary-btn:hover {
  background: #b8962e;
}

.popup-actions .secondary-btn {
  background: transparent;
  border: 2px solid #caa73b;
  color: #caa73b;
  font-weight: 600;
}

.popup-actions .secondary-btn:hover {
  background: rgba(202, 167, 59, 0.1);
}

.popup-box h3 {
  font-size: 16px;
  font-weight: 600;
  color: #4f46e5;
  margin-bottom: 10px;
}

.subject-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 32px;
}

.subject-list li {
  list-style: none;
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
  color: #1f2937;
}

.subject-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
  line-height: 1;
  color: #caa73b; /* GOLD bullet */
}

.popup-field {
  margin: 20px 0 10px;
}

.popup-field input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  outline: none;
}

.popup-field input:focus {
  border-color: #6d5dfc;
}

.language-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 24px;
  margin-left: 8px;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 40px; /* row gap | column gap */
}

.language-list li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  font-weight: 500;
  color: #1f2937;
  line-height: 1.5;
}

.language-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
  color: #caa73b; /* your gold */
}

.language-list li:last-child:nth-child(odd) {
  grid-column: span 2;
}


/* =========================
   FOOTER – STRUCTURED
========================= */

.footer {
  background: #111318;
  color: #d1d5db;
  padding: 50px 40px 20px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 30px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin-bottom: 14px;
}

.footer-col p {
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer a {
  color: var(--primary-light);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-badges {
  display: flex;
  gap: 14px;
  margin: 12px 0;
}

.footer-badges img {
  height: 38px;
  background: white;
  padding: 6px;
  border-radius: 6px;
}

.footer-note {
  font-size: 13px;
  color: #cbd5f5;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
  text-align: center;
  font-size: 13px;
  color: #cbd5f5;
}

/* Responsive footer */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer {
    text-align: center;
  }

  .footer-badges {
    justify-content: center;
  }
}

.demo-box select {
  width: 100%;
  padding: 14px;
  margin-bottom: 14px;
  border-radius: 10px;
  border: 1px solid #caa73b;
  font-size: 14px;
  background: white;
  color: #0b1220;
}

/* =========================
   BEYOND ACADEMICS – CLEAN & COMPACT
========================= */

.skills-desc {
  max-width: 720px;
  margin: 12px auto 16px;
  font-size: 15.5px;
  line-height: 1.6;
  color: #334155;
  text-align: center;
}

.why-choose-list {
  max-width: 520px;
  margin: 8px auto 14px;   /* 🔥 tighter vertical spacing */
  padding: 0;
  list-style: none;
  text-align: left;
}

.why-choose-list li {
  font-size: 15px;
  margin-bottom: 4px;      /* 🔥 less gap between bullets */
  padding-left: 22px;
  position: relative;
  color: #1f2937;
  line-height: 1.4;
}

.why-choose-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  color: #b8962e;              /* premium gold */
  font-weight: 700;
}

.skills-note {
  max-width: 680px;
  margin: 10px auto 6px;   /* 🔥 tighter */
  font-size: 14.6px;
  line-height: 1.45;
  color: #475569;
  text-align: center;
}

.skills-highlight {
  margin-top: 6px;        /* 🔥 reduce gap */
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  text-align: center;
   margin-bottom: 15px;
}

.skills ul li {
  margin-bottom: 6px;   /* 👈 reduces vertical gaps */
  line-height: 1.5;
}

.rating-line {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #374151;
}

.rating-line span {
  color: #6b7280;
  font-size: 13px;
}

/* Hamburger icon */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #d4af37; /* gold */
}

/* Mobile menu styles */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #0b0f16;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
    z-index: 1000;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .nav.active {
    display: flex;
  }
  
  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 14px 0;
    font-size: 18px;
  }
}
/* Header height reduce only in mobile */

@media (max-width: 768px) {

  .header {
    padding: 10px 16px;   /* reduced height */
  }

  .logo span {
    font-size: 16px;      /* smaller text */
  }

  .logo img {
    height: 32px;        /* smaller logo */
  }
  
  .hero h1 {
    font-size: 30px;     /* was too big - “Online Learning That Truly Supports Your Child” */
    line-height: 1.25;
    margin-bottom: 16px;
  }
  
  .hero {
    padding-top: 40px;
    padding-bottom: 50px;
  }
}

/* =========================
   MOBILE HERO BUTTON – COMPACT WIDTH
========================= */
@media (max-width: 768px) {
  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .primary-btn {
    width: auto;              /* remove full width */
    padding: 14px 28px;       /* 👈 shrink left & right */
    min-width: unset;         /* remove forced width */
    margin: 0 auto;
  }

  .hero-buttons .primary-btn:first-child {
    margin-bottom: 16px;      /* space between buttons */
  }
}

/* FIX: Offset anchor scroll for sticky header */

section {
  scroll-margin-top: 90px; /* height of header */
}

/* Anchor offset fix for sticky header */
/**
#home {
  scroll-margin-top: 80px;
}

#about,
#courses,
#contact {
  scroll-margin-top: 110px;
}
*/
html {
  scroll-behavior: smooth;
}

.about-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.google-reviews-cta {
  margin-top: 28px;
  text-align: center;
}

.google-reviews-cta p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.google-review-btn {
  display: inline-block;
  padding: 12px 15px;
  border-radius: 8px;
  font-weight: 600;
  background: #1a73e8; /* Google blue */
  color: white;
  text-decoration: none;
}

.google-review-btn:hover {
  background: #1558b0;
}


/* FAQ Section */

.faq-section {
  max-width: 900px;
  margin: 20px auto;
  padding: 0 20px;
}

.faq-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 700;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.faq-question:hover {
  color: #c9a227; /* gold accent */
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 0 20px 0;
  color: #555;
  line-height: 1.6;
}

.icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .icon {
  transform: rotate(45deg);
}

/* Premium Vertical Sticky CTA */
.sticky-cta-vertical {
  position: fixed;
  right: 16px;
  top: 45%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

/* Button base */
.sticky-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 8px;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  cursor: pointer;
  border: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transition: all 0.25s ease;
}

/* Vertical text */
.sticky-btn .text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 0.5px;
  font-size: 13px;
}

/* Icon */
.sticky-btn .icon {
  font-size: 16px;
}

/* Demo Button */
.demo-btn {
  background: #d4af37; /* Gold */
  color: #111;
}

.demo-btn:hover {
  transform: translateX(-4px);
}

/* Enroll Button */
.enroll-btn {
  background: #0f172a; /* Dark navy */
  color: #fff;
}

.enroll-btn:hover {
  transform: translateX(-4px);
}

/* Hide vertical CTA on mobile */
@media (max-width: 768px) {
  .sticky-cta-vertical {
    display: none !important;
  }
}

footer {
  position: relative;
}

