@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,600;0,800;0,900;1,400&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0f2a52;
  --gold: #f5c000;
  --gold-bg: #fffbea;
  --page: #f7f5f0;
  --surface: #ffffff;
  --border: #e0dbd0;
  --text: #1a1714;
  --text-mid: #4a4540;
  --text-dim: #7a7268;
}

.header-logo {
  height: 48px;
  width: auto;
  margin-right: 12px;
  margin-bottom: 6px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--page);
  color: var(--text);
  margin: 0;
}

.block {
  max-width: 75vw;
  margin: 0 auto;
  padding: 72px 36px 64px;
}

.block + .block {
  border-top: 1px solid var(--border);
}

.title {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--navy);
  margin-bottom: 44px;
  text-align: center;
}

.card,
.results-col,
.about-col,
.rate-card,
.final-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
}

.card-3,
.results-col,
.about-col,
.rate-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
}

.final-card-3 {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
  /* Add any special styling for the final card here if needed */
}

.process-stack {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 auto;
  justify-content: center;
  max-width: 50vw;
}

.process-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  transition: all 0.18s;
  width: 100%;
}

.step-number {
  background: var(--primary, #083C70);
  color: var(--gold);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.step-desc {
  color: var(--text-secondary, #666);
  font-size: 0.9rem;
  line-height: 1.4;
}

.top,
.results-header,
.about-header {
  background: var(--navy);
  color: var(--gold);
  font-weight: 800;
  font-size: clamp(11px, 1.5vw, 14px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 18px;
  border-bottom: 2px solid var(--gold);
}

.bottom {
  padding: 18px 20px;
  color: var(--text-mid);
  font-size: clamp(13px, 1.4vw, 15px);
  line-height: 1.6;
}


ul {
  margin: 0;
  padding-left: 16px;
  line-height: 2;
}

ul li::marker {
  color: var(--gold);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 0 auto;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.list {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
}

.list > div {
  padding: 16px 24px;
  font-size: clamp(14px, 1.8vw, 17px);
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: center;
  align-items: center;
}

.list > div:hover {
  background: transparent;
}

.list > div::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 14px;
  flex-shrink: 0;
}

.final-card {
  margin-top: 16px;
  max-width: 450px;
  margin-inline: auto;
}

.results-main {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.6;
}

.results-sub {
  padding: 14px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: clamp(12px, 1.2vw, 13px);
  color: var(--text-dim);
  border-top: 1px solid var(--border);
  line-height: 1.7;
}

.about-top {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.about-content {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: clamp(13px, 1.4vw, 15px);
  color: var(--text-mid);
  line-height: 1.6;
}

.about-content > div::before {
  content: '→ ';
  color: var(--gold);
  font-weight: 700;
}

.rate-card {
  text-align: center;
  padding: 52px 36px;
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  background: var(--navy);
  border: none;
  border-radius: 20px;
}

.rate-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 0 0 20px 20px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.rate-main {
  font-size: clamp(56px, 10vw, 100px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

.rate-sub {
  font-size: clamp(13px, 1.6vw, 15px);
  font-weight: 600;
  color: #a0b0c8;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.rate-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: clamp(13px, 1.4vw, 14px);
  color: #c8d4e2;
}

.rate-details > div {
  padding: 11px 16px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

header {
  background: var(--navy);
  padding: 18px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-brand {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.header-brand .steam {
  color: var(--gold);
}

.header-brand .educator {
  color: #ffffff;
}

.header-name {
  font-size: clamp(14px, 1.8vw, 17px);
  font-weight: 600;
  color: #ffffff;
}




.circle {
  width: 15vw;
  height: 15vw;
  border-radius: 50%;
  border: 4px solid #ffd84d;
  margin: 0 auto 5vh auto;
  position: relative;
  overflow: hidden;
  background: #083C70;

  --x: 50%;
  --y: 50%;
}

.circle img {
  position: absolute;
  width: 250%;
  height: 250%;

  top: var(--y);
  left: var(--x);

  transform: translate(-75%, -40%);

  object-fit: cover;
}


.exp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.exp-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}

.exp-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 8px 28px rgba(15, 42, 82, 0.09);
}

.exp-card img {
  max-width: 120px;
  max-height: 60px;
  object-fit: contain;
}

.exp-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  text-align: center;
  line-height: 1.4;
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 28px;
}

.who-photo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.who-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 28px 0;
}

.logo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.logo-card:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--gold);
}

.logo-card img {
  max-width: 100%;
  max-height: 50px;
  object-fit: contain;
}

.who-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.who-container {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}
.who-container {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 24px 24px 24px;  /* Reduce top padding from 24px to something smaller */
  /* Or try: padding: 16px 24px 24px 24px; */
}
.who-exp {
  margin-top: -10vh;  /* Adjust this value to move it up more or less */
}

.who-logos {
  margin-top: 0vh;  /* Adjust this value to move it up more or less */
}
.instructor-title {
  text-align: center;
  margin: 30px 0 15px 0;
  font-weight: bold;
  font-size: 1vw;
  letter-spacing: 1px;
  color: var(--text-dim);
    margin-top: -10vh;  /* Adjust this value to move it up more or less */
}


.inline-link {
  color: var(--accent-blue);
  text-decoration: none;
  font-weight: 600;
}

.inline-link:hover {
  text-decoration: underline;
}
:root {
  --accent-blue: #2f6fff;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 28px;
}

.header-title {
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.name {
  color: white;
}

.divider {
  color: white;
  margin: 0 8px;
}

.steam {
  color: white;
}

.educator {
  color: #FFD700;
  margin-left: 2px;
}

.header-cta {
  background: #FFD700;
  color: black;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid black;
}

.header-cta:hover {
  filter: brightness(0.95);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.project-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 42, 82, 0.1);
}

.project-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.project-title {
  font-weight: 800;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
}

.project-desc {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 18px;
}

.project-button {
  display: inline-block;
  background: var(--navy);
  color: var(--gold);
  font-weight: 600;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.1s ease;
}

.project-button:hover {
  background: #1a3a6e;
  transform: scale(1.02);
}






.card {
  width: 100%;
  background: #ffffff;
  border-radius: 28px;
  padding: 24px 20px 28px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #eef2f6;
  display: flex;
  flex-direction: column;
}

/* Logo styling - full width, stacked vertically */
.logo-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
  width: 100%;
}

.brand-logo {
  width: 100%;
  height: auto;
  max-height: 5vh;
  object-fit: contain;
  display: block;
}

/* Text logos (SAT, ACT, REGENTS) - stacked vertically, full width */
.text-logos {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
  width: 100%;
}

.exam-badge {
  display: block;
  width: 100%;
  text-align: center;
  background: #f0f4f8;
  padding: 12px 0;
  border-radius: 40px;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.5px;
  color: #1e2b3c;
  border: 1px solid #e2e8f0;
}

.hero {
  text-align: center;
}

.title {
  margin-bottom: 6px; /* tighter gap above subtitle */
}

.subtitle {
  font-size: 24px;
  color: #5a6874;
  margin-top: 0;      /* remove extra push down */
  margin-bottom: 20px; /* more space below */
  text-align: center;
}


.logo-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  width: 100%;
}

.logo-top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  width: 100%;
  flex-wrap: wrap;
}

.logo-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.brand-logo {
  height: 50px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
}

.exam-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f0f4f8;
  padding: 10px 22px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.5px;
  color: #1e2b3c;
  border: 1px solid #e2e8f0;
}

.results {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #e2e8f0;
}

.results-label {
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #5a6874;
  margin-bottom: 8px;
}

.results ul {
  margin: 0;
  padding-left: 18px;
}

.results ul li {
  font-size: 14px;
  color: #3a4a5a;
  margin-bottom: 6px;
  line-height: 1.5;
}

.project-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  margin: 12px 0;
}

.bottom ul li {
  font-size: 0.8vw;
}
.results ul li {
  font-size: 0.8vw;
}

.former-logos {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 16px 0;
}

.former-logo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.former-logo-card:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--gold);
}

.former-logo-card img {
  max-height: 50px;
  max-width: 140px;
  object-fit: contain;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.how-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.how-header {
  background: var(--navy);
  color: var(--gold);
  font-weight: 800;
  font-size: clamp(11px, 1.5vw, 14px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 18px;
  border-bottom: 2px solid var(--gold);
}

.how-body {
  padding: 8px 0;
}

.how-step {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}

.how-step:last-child {
  border-bottom: none;
}

.how-step-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 4px;
}

.how-step-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}


.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 20px;
}

.testimonial-card {
    background: #f9f9f9;
    border-left: 5px solid #FFD700;
    padding: 24px 28px;
    border-radius: 12px;
    flex: 1;
    min-width: 260px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.5;
    font-style: italic;
    color: #222;
    margin-bottom: 16px;
}

.testimonial-author {
    font-weight: 700;
    font-size: 1rem;
    color: #000;
}

.testimonial-role {
    font-size: 0.85rem;
    color: #555;
    margin-top: 4px;
}



@media (max-width: 768px) {



.header-name {
  display: none;
}

  .block {
    max-width: 100%;
    padding: 40px 16px 48px;
  }

  .title {
    font-size: 36px;
    margin-bottom: 24px;
  }

  .subtitle {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .results-grid,
  .how-grid,
  .about-grid,
  .who-bottom {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .who-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .who-logos {
    grid-template-columns: repeat(2, 1fr);
    margin: 16px 0;
  }

  .former-logos {
    gap: 10px;
  }

  .former-logo-card {
    padding: 10px 14px;
  }

  .former-logo-card img {
    max-height: 36px;
    max-width: 100px;
  }

  .exp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

.circle {
  width: 30vw;
  height: 30vw;
}
  .process-stack {
    max-width: 100%;
  }

  .process-card {
    padding: 0.75rem 1rem;
  }

  .step-title {
    font-size: 0.95rem;
  }

  .step-desc {
    font-size: 0.82rem;
  }

  .rate-card {
    padding: 36px 20px;
    max-width: 100%;
  }

  .rate-main {
    font-size: 56px;
  }

  .bottom ul li,
  .results ul li {
    font-size: 13px;
  }

  .who-container {
    padding: 16px;
  }

  .instructor-title {
    font-size: 13px;
    margin-top: 16px;
  }

  .logo-card img {
    max-height: 36px;
  }

  .project-card {
    padding: 20px 16px;
  }

  .header-cta {
    padding: 8px 12px;
    font-size: 13px;
  }

.card {
  text-align: center;
}

.logo-top,
.logo-bottom {
  justify-content: center;
}
.project-img {
  width: 33%;
  aspect-ratio: 1 / 1;
  margin: 12px auto;
}


.about-col {
  text-align: center;
}

.about-content {
  align-items: center;
}

.who-exp {
  margin-top: -5vh;
}


}

.hero {
  margin-top: -5vh; /* Adjust the value as needed */
}