:root {
  --navy: #0a1a2f;
  --gold: #b85a1b;
  --bg: #f6f8fb;
  --text: #222;
}
* {
  box-sizing: border-box;
}

body,
input,
select,
textarea,
button {
  font-family: "Poppins", Arial, sans-serif;
}

body {
  margin: 0;
  font-family: Poppins, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

input,
select {
  font-weight: 400;
}

input::placeholder {
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 400;
  color: #999;
}

button {
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.2px;
}

h2 {
  color: var(--navy);
  font-size: 32px;
  line-height: 1.25;
  margin: 0px;
  margin-bottom: 10px;
  text-align: center;
}


button {
  background: var(--gold);
  color: #fff;
  padding: 16px;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
button:disabled {
  opacity: 0.7;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;

}
input,
select {
  padding: 14px;
  font-size: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
}







/* FEATURE STRIP */
.feature-strip {
  background: #fff;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 26px 40px;
  max-width: 1100px;
  margin: -40px auto 60px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  font-weight: 600;
  color: var(--navy);
}


.alt-bg {
  background: linear-gradient(180deg, #eef3fb, #ffffff);
  padding: 90px 20px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 4px; /* was likely 8–12px */
}


/* HOW IT WORKS */
.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}
.step {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}
.step span {
  font-size: 30px;
  font-weight: 800;
  color: var(--gold);
}

/* SCORE CARDS */
.score-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-bottom: 15px;
}


.score-card {
  min-width: 320px;
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}
.score-card img {
  width: 100%;
  border-radius: 10px;
  cursor: zoom-in;
}

/* TRUST BAND */
.trust-band {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 70px 20px;
}
.trust-band h3 {
  font-size: 30px;
  margin-bottom: 10px;
}

/* FORM */


/* THANK YOU */
#thankyou {
  display: none;
  text-align: center;
}


/* MODAL */
#imageModal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
#imageModal img {
  max-width: 92%;
  max-height: 92%;
  border-radius: 10px;
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 42px;
  color: #fff;
  cursor: pointer;
}


.writingimg{
  width: 50%;
  height: 100%;              /* fixed height for uniform cards */
  object-fit: cover;          /* prevents distortion */
  border-radius: 12px;
  cursor: zoom-in;
  display: block;             /* removes bottom gap */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ===== Extra Practice & Scholarship Section ===== */
.info-section {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
  display: grid;
  gap: 40px;
}

/* Card styling */
.info-card {
  background: #fff;
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

.info-card h3 {
  margin: 0 0 14px;
  font-size: 26px;
  font-weight: 700;
  color: #0a1a2f;
}

.info-card p {
  margin: 0;
  font-size: 17px;
  color: #374151;
  line-height: 1.7;
}

/* Scholarship Table */
.scholarship-table-wrap {
  margin-top: 20px;
  overflow-x: auto;
}

.scholarship-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Poppins, Arial, sans-serif;
}

.scholarship-table thead th {
  background: #0a1a2f;
  color: #fff;
  padding: 16px;
  font-size: 16px;
  text-align: center;
}

.scholarship-table tbody td {
  padding: 16px;
  border: 1px solid #e0e0e0;
  font-size: 15px;
  text-align: center;
}

.scholarship-table tbody tr:nth-child(even) {
  background: #f9fafc;
}


.testimonials {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

.testimonial {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}

.testimonial strong {
  font-size: 14px;
  color: #111;
  font-weight: 600;
}

/* Decorative quote */
.testimonial::before {
  content: "“";
  font-size: 60px;
  color: #e5e7eb;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}




.weekly-learn {
  padding: 60px 20px;
  background: #fff;
  border: 2px solid green;
}

.weekly-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.weekly-card {
  background: #f9fbff;
  border-radius: 14px;
  padding:  26px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.weekly-card h3 {

  color: #0a1a2f;
  font-size: 20px;
  font-weight: 700;
}

.weekly-card ul {
  padding-left: 18px;
  margin: 0;
}

.weekly-card li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.5;
}



/* MODAL */
#imageModal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
#imageModal img {
  max-width: 92%;
  max-height: 92%;
  border-radius: 10px;
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 42px;
  color: #fff;
  cursor: pointer;
}

/* ===== Conversion Enhancements ===== */

/* CTA reassurance */
.cta-note {
  font-size: 13px;
  color: #6b7280;
  margin-top: 4px;
}

/* Mid-page CTA strip */
.sticky-cta {
  position: sticky;
  bottom: 12px;
  z-index: 2000;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.sticky-cta a {
  pointer-events: auto;
  background: #b85a1b;
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  text-decoration: none;
}

/* Accordion */
.accordion {
  border-top: 1px solid #e5e7eb;
}
.accordion-item {
  border-bottom: 1px solid #e5e7eb;
}
.accordion-header {
  cursor: pointer;
  padding: 18px;
  font-weight: 600;
  color: #0a1a2f;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion-header::after {
  content: "+";
  font-size: 22px;
}
.accordion-item.active .accordion-header::after {
  content: "–";
}
.accordion-content {
  display: none;
  padding: 0 18px 18px;
  color: #374151;
}
.accordion-item.active .accordion-content {
  display: block;
}

.badge {
  display: inline-block;
  background: #b85a1b;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin: 8px 0 12px;
}
