body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Center main section headings */
section h2,
section h3 {
  text-align: center;
}

/* Ensure standalone headings are centered */
h2 {
  text-align: center;
}
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e3a5f, #2d4a6f, #1e3a5f);
}

.bg-blobs::before,
.bg-blobs::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}

.bg-blobs::before {
  width: 300px;
  height: 300px;
  background: #f59e0b;
  top: 10%;
  left: 5%;
}

.bg-blobs::after {
  width: 400px;
  height: 400px;
  background: #3b82f6;
  bottom: 10%;
  right: 5%;
}

.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1rem;
}.


.badge {
  display: inline-flex;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  margin-bottom: 2rem;

}

h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  margin: 0 0 1.5rem;
}

h1 span {
  display: block;
  color: #f59e0b;
}

p {
  font-size: 1.2rem;
  max-width: 600px;
  opacity: 0.85;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 999px;
  font-size: 1.1rem;
  cursor: pointer;
  border: none;
}

.btn.primary {
  background: #f59e0b;
  color: white;
}

.btn.primary:hover {
  background: #d97706;
}

.btn.secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn.secondary:hover {
  background: white;
  color: #1e3a5f;
}

.trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.trust-item span {
  font-size: 0.9rem;
  opacity: 0.7;
}

.scroll-indicator {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 20px;
  transform: translateX(-50%);
}
/* NAVBAR STYLES */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  transition: all 0.3s;
  background: transparent;
  display: flex;
  justify-content: center;
  box-shadow: none;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  height: 80px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

 .logo {
  height: 150px;
  width: auto;
  display: block;
}

/* Desktop Menu */
.desktop-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.desktop-menu button {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.desktop-menu button:hover {
  background: rgba(255,255,255,0.1);
}
/* Desktop menu buttons */
.navbar-menu button {
  background: none;
  border: none;
  color: #1e3a5f; /* or your default text colour */
  font-size: 16px;
  cursor: pointer;
  transition: color 0.2s ease;
}

/* Hover effect */
.navbar-menu button:hover {
  color: #f59e0b;
}

/* Mobile menu buttons */
.mobile-menu button {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  transition: color 0.2s ease;
}

.mobile-menu button:hover {
  color: #f59e0b;
}


/* Buttons */
.btn.primary {
  background: #f59e0b;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

.btn.primary:hover {
  background: #d97706;
}

/* Mobile Menu */
.mobile-menu-button {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.mobile-menu button {
  width: 100%;
  text-align: left;
  padding: 0.5rem;
  border-radius: 12px;
  border: none;
  background: #f7f7f7;
  cursor: pointer;
}

.mobile-menu button:hover {
  background: #e2e2e2;
}

/* Responsive */
@media (max-width: 768px) {
  .desktop-menu {
    display: none;
  }
  .mobile-menu-button {
    display: block;
  }
}
/* BOOKING SECTION */
.booking-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 6rem 1rem 3rem;
}

.booking-header h2 {
  font-size: 2rem;
  color: #1e3a5f;
  margin-bottom: 0.5rem;
}

.booking-header p {
  color: #555;
  margin-bottom: 2rem;
}

.booking-header {
  display: inline-block;
  margin-left: 200px;
}


.booking-form .form-group {
  margin-bottom: 1.5rem;
}

.booking-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #1e3a5f;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #ccc;
  border-radius: 12px;
  font-size: 1rem;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: #f59e0b;
  outline: none;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0.9rem 0.75rem;
  border: 2px solid #ccc;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.checkbox-group input[type="checkbox"] {
  accent-color: #f59e0b;
}

.checkbox-group label:hover {
  background: #fef3c7;
}
.lesson-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.lesson-card {
    border: 2px solid #ddd;
    padding: 20px;
    cursor: pointer;
    text-align: center;
    border-radius: 8px;
    transition: 0.3s;
}

.lesson-card:hover {
    border-color: #f59e0b;
}

.lesson-card input {
    display: none;
}

.lesson-card input:checked + div {
    background: #0b2c5f;
    color: white;
    border-radius: 6px;
    padding: 10px;
}
/* Section header with icon */
.section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #1e3a5f;
}

.section-icon {
  color: #1e3a5f;
  font-size: 18px;
}

/* Horizontal row */
.times-row {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
}

/* Compact time cards */
.time-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border: 2px solid #d1d5db;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: white;
  white-space: nowrap;
}

.time-option:hover {
  background: #f3f4f6;
  border-color: #f59e0b;
}

.time-option input[type="checkbox"] {
  accent-color: #f59e0b;
  width: 18px;
  height: 18px;
}

.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}


.booking-form .btn.primary {
  background: #f59e0b;
  color: white;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.booking-form .btn.primary:hover {
  background: #d97706;
  transform: scale(1.02);
}

.form-success {
  display: none;
  margin-top: 1rem;
  color: green;
  font-weight: bold;
  text-align: center;
}
/* ABOUT US SECTION */
.about-section {
  padding: 7rem 1rem;
  background: #f9fafb;
}

.about-header .about-tag {
  display: inline-block;
  background: #fef3c7;
  color: #b45309;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-header {
  text-align: center;
}

.about-header h2 {
  font-size: 2.5rem;
  color: #1e3a5f;
  margin-bottom: 1rem;
}

.about-header p {
  color: #f59e0b;
  max-width: 600px;
  margin: 0 auto;
}

.about-card {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  border-radius: 2rem;
  padding: 3rem 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.about-card .icon-circle {
  width: 80px;
  height: 80px;
  background: rgba(30,58,95,0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.about-card h3 {
  font-size: 1.8rem;
  color: #1e3a5f;
  margin-bottom: 1rem;
}

.about-card p {
  color: #f59e0b;
  margin-bottom: 2rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  border-top: 1px solid #e5e7eb;
  padding-top: 2rem;
}

.stat {
  text-align: center;
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  font-size: 1.5rem;
  background: #fef3c7; /* default color */
}

.stat:nth-child(1) .stat-icon { background: #fef3c7; color: #b45309; }
.stat:nth-child(2) .stat-icon { background: #dbeafe; color: #2563eb; }
.stat:nth-child(3) .stat-icon { background: #dcfce7; color: #16a34a; }
.stat:nth-child(4) .stat-icon { background: #ede9fe; color: #7c3aed; }

.stat p {
  font-size: 0.9rem;
  color: #555;
}
/* TEST CENTRES SECTION */
.test-centres-section {
  padding: 6rem 1rem;
  background: #ffffff;
}

.test-centres-section .section-tag {
  display: inline-block;
  background: #dbeafe;
  color: #1d4ed8;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.test-centres-section h2 {
  font-size: 2.5rem;
  color: #1e3a5f;
  margin-bottom: 1rem;
}

.test-centres-section p {
  color: #555;
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
}

/* Centres Grid */
.centres-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto 3rem;
}

/* Individual Card */
.centre-card {
  border: 2px solid #f3f4f6;
  border-radius: 1.5rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  background: white;
}

.centre-card:hover {
  border-color: #f59e0b;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.centre-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.centre-info {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.centre-icon {
  width: 40px;
  height: 40px;
  background: rgba(30,58,95,0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.centre-check {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #dcfce7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #16a34a;
}

.centre-footer {
  border-top: 1px solid #f3f4f6;
  padding-top: 0.5rem;
  font-size: 0.85rem;
  color: #525252;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Why This Matters Card */
.why-card {
  background: linear-gradient(to bottom right, #fef3c7, #ffedd5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.why-card .why-content {
  text-align: center;
}

.why-card .why-icon {
  width: 48px;
  height: 48px;
  background: #f59e0b;
  border-radius: 999px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 0.5rem;
}

.why-card h4 {
  font-weight: bold;
  color: #1e3a5f;
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.9rem;
  color: #525252;
}

/* Coverage Benefits */
.coverage-benefits {
  background: #1e3a5f;
  border-radius: 2rem;
  padding: 3rem 1.5rem;
  color: white;
  text-align: center;
  margin-top: 3rem;
}

.coverage-benefits h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
}

.benefit-number {
  font-size: 2rem;
  color: #f59e0b;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.benefits-grid p {
  color: rgba(255,255,255,0.8);
}
/* LESSONS SECTION */
.lessons-section {
  padding: 70px 20px;
  background: #ffffff;
}

.lessons-header {
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(30, 58, 95, 0.1);
  color: #1e3a5f;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 42px;
  color: #1e3a5f;
  margin-bottom: 15px;
}

.section-header p {
  color: #666;
  max-width: 600px;
  margin: auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.pricing-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  position: relative;
  transition: 0.3s;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.popular {
  border: 2px solid #f59e0b;
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f59e0b;
  color: #fff;
  padding: 5px 12px;
  font-size: 13px;
  border-radius: 20px;
}

.top-accent {
  height: 6px;
}

.accent-gray { background: #ddd; }
.accent-amber { background: #f59e0b; }
.accent-blue { background: #1e3a5f; }

.pricing-content {
  padding: 40px 30px;
}

.plan-name {
  font-size: 14px;
  text-transform: uppercase;
  color: #777;
}

.plan-duration {
  font-weight: 600;
  color: #1e3a5f;
  margin-bottom: 20px;
}

.price {
  display: flex;
  align-items: baseline;
  margin-bottom: 15px;
}

.currency {
  font-size: 18px;
  color: #777;
}

.amount {
  font-size: 48px;
  font-weight: bold;
  color: #1e3a5f;
}

.decimal {
  font-size: 20px;
  color: #aaa;
}

.description {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.pricing-card ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #555;
}

.btn-primary,
.btn-popular {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-primary {
  background: #1e3a5f;
  color: #fff;
}

.btn-primary:hover {
  background: #2d4a6f;
}

.btn-popular {
  background: #f59e0b;
  color: white;
}

.btn-popular:hover {
  background: #d97706;
}

.value-prop {
  margin-top: 60px;
  text-align: center;
  background: #ecfdf5;
  color: #047857;
  padding: 15px 25px;
  border-radius: 30px;
  display: inline-block;
  margin-left: 430px;
}
/* FOOTER */
.site-footer {
  background: #1e3a5f;
  color: white;
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  padding-bottom: 60px;
}

.footer-brand h3 {
  margin: 0;
  font-size: 18px;
}

.brand-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.brand-description {
  margin-top: 20px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.brand-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.brand-icon {
  background: rgba(255,255,255,0.1);
  padding: 10px;
  border-radius: 12px;
  font-size: 20px;
}

.site-footer h4 {
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #f59e0b;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}

body {
  background: #f3f4f6;
}
.booking-title {
  text-align: center;
  margin-bottom: 3rem;
}

.booking-title h2 {
  font-size: 2.4rem;
  color: #1e3a5f;
  margin: 0.5rem 0;
}

.booking-title p {
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

.badge {
  display: inline-block;
  background: #fde68a;
  color: #92400e;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}
.booking-card {
  background: white;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  overflow: hidden;
}
.terms-section {
  padding: 4rem 1rem;
  background: #f9fafb;
}

.terms-container {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.terms-container h1 {
  text-align: center;
  color: #1e3a5f;
  margin-bottom: 2rem;
}

.terms-container h3 {
  margin-top: 2rem;
  color: #1e3a5f;
}

.terms-container p {
  line-height: 1.7;
  color: #444;
}

.terms-container ul {
  margin-top: 1rem;
  padding-left: 1.2rem;
}

.terms-container li {
  margin-bottom: 0.5rem;
}

