:root {
  --brand-blue: #023b7c;
  --hero-blue: #023b7c;
  --accent-green: #28c070;
  --accent-green-dark: #009158;
  --text-light: #f2fbff;
  --white: #ffffff;
  --slate: #d6e0ff;
   --midnight: #011f46;
  --charcoal: #0c1b33; 
   --muted: rgba(255, 255, 255, 0.65);
  --border: rgba(255, 255, 255, 0.15);
}

@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #064da9 0%, var(--hero-blue) 50%, #01153b 100%);
  color: var(--text-light);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* img {
  max-width: 100%;
  display: block;
} */

main {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 40px clamp(20px, 4vw, 60px) 80px;
  flex: 1;
}

.navbar {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 24px clamp(20px, 4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%; /* Important: pushes items to sides */
}



.brand {
  display: flex;
  align-items: center;
}

.brand img {
  height: 50px; /* adjust size */
}

.right-side {
  display: flex;
  align-items: center;
  gap: 20px; /* space between socials and button */
}

.socials {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.socials span {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  font-size: 12px;
  color: black;
}

.social-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-icons img {
  width: 20px;
  height: 20px;
  display: block;
}

.cta-link {
  padding: 8px 16px;
  background-color: #007BFF;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}
/* Offcanvas styling */




.brand-copy .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 4px;
}

.brand-copy .sub-eyebrow {
  font-weight: 600;
  margin: 0;
}

.cta-link {
  color: var(--brand-blue);
  background: var(--text-light);
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 15px 40px rgba(2, 59, 124, 0.35);
}

.cta-link:hover {
  transform: translateY(-2px);
}



.hero {
  text-align: center;
  padding: 40px 0 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(34px, 5vw, 64px);
  margin: 12px auto;
  line-height: 1.1;
  color: var(--white);
}

.lead {
  max-width: 780px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 19px;
  line-height: 1.6;
}

.newsletter {
  margin: 32px auto 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: 999px;
  display: flex;
  gap: 12px;
  padding: 10px;
  max-width: 520px;
  backdrop-filter: blur(12px);
}

.newsletter input {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--white);
  font-size: 16px;
  padding: 10px 16px;
  outline:  none;
  border-radius: 14px;
}

.newsletter button {
  border: none;
  border-radius: 999px;
  padding: 12px 28px;
  background: linear-gradient(120deg, var(--accent-green), var(--accent-green-dark));
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.newsletter button:hover {
  opacity: 0.9;
}

.form-hint {
  font-size: 14px;
  min-height: 20px;
  color: var(--accent-green);
}

.launch-info {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.launch-info .card {
  background: rgba(4, 30, 70, 0.65);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  width: 50%;
  max-width: 600px;
}


.launch-info h2 {
  margin: 0 0 16px;
  font-size: clamp(26px, 3vw, 34px);
  color: var(--white);
}

.launch-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.milestones {
  list-style: none;
  margin: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.milestones li {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.milestones li:last-child {
  border-bottom: none;
}

.milestone-date {
  font-weight: 700;
  color: var(--accent-green);
  width: 80px;
}

.services {
  margin-top: 80px;
}

.section-heading h2 {
  margin: 6px 0 12px;
  font-size: clamp(30px, 4vw, 42px);
  color: var(--white);
}

.section-heading {
  text-align: center;
  margin-bottom: 32px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.service-grid article {
  background: rgba(3, 32, 70, 0.65);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-grid h3 {
  margin: 0;
  color: var(--text-light);
}

.service-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.service-grid ul {
  margin: 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  list-style: none;
}

.service-grid ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}

.service-grid ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: bold;
  font-size: 1.2em;
}

.instructor {
  margin-top: 80px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: clamp(24px, 4vw, 48px);
}

.instructor-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px 24px;
  margin-top: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-weight: 600;
  color: var(--white);
}

.form-field input,
.form-field textarea {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid var(--accent-green);
}

.full-width {
  grid-column: 1 / -1;
}

.primary-btn {
  grid-column: 1 / -1;
  border: none;
  border-radius: 18px;
  padding: 16px 22px;
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(120deg, var(--accent-green), var(--accent-green-dark));
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease;
}

.primary-btn:hover {
  transform: translateY(-2px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

footer {
  text-align: center;
  padding: 30px 20px 40px;
  color:#009158;
  
}

footer a {
  color:#009158 ;
}

.footer-note {
  margin-top: 6px;
  font-size: 14px;
  color:#009158
}

@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 16px;
  }

  .newsletter {
    flex-direction: column;
    border-radius: 20px;
  }

  .newsletter button {
    width: 100%;
  }
}

@media (max-width: 540px) {
  main {
    padding: 30px 18px 60px;
  }

  h1 {
    font-size: clamp(32px, 10vw, 42px);
  }

  .lead {
    font-size: 17px;
  }

  .milestones li {
    flex-direction: column;
    align-items: flex-start;
  }

  .instructor-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 370px) {

  body {
    padding: 0;
  }

  .nav {
    /* flex-direction: column; */
    gap: 12px;
    padding: 14px;
     flex-direction: row;
        justify-content: space-between;
        align-items: center;
  }

  .brand img {
    height: 32px;
  }

  .right-side {
    flex-direction: column;
    gap: 8px;
  }

  .socials span {
    font-size: 10px;
  }

  .social-icons img {
    width: 16px;
    height: 16px;
  }

  h1 {
    font-size: 22px;
    line-height: 1.2;
    padding: 0 10px;
  }

  .lead {
    font-size: 14px;
    padding: 0 10px;
  }

  .newsletter {
    flex-direction: column;
    padding: 12px;
    border-radius: 14px;
    gap: 10px;
  }

  .newsletter input {
    font-size: 14px;
    padding: 10px;
  }

  .newsletter button {
    padding: 10px;
    width: 100%;
    font-size: 14px;
  }

  .launch-info .card {
    padding: 18px;
  }

  .milestones li {
    flex-direction: column;
    gap: 10px;
    padding: 18px;
  }

  .milestone-date {
    width: auto;
    font-size: 14px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-grid article {
    padding: 18px;
  }

  .instructor {
    padding: 18px;
  }

  .instructor-form {
    grid-template-columns: 1fr;
  }

  .primary-btn {
    width: 100%;
    padding: 14px;
    font-size: 15px;
  }

  footer {
    padding: 20px 10px;
    font-size: 12px;
  }
}

@media (max-width: 320px) {

  body {
    padding: 0;
  }

  .nav {
    /* flex-direction: column; */
    align-items: center;
    gap: 10px;
    padding: 12px;
    flex-direction: row;
        justify-content: space-between;
        align-items: center;
  }

  .brand img {
    height: 30px;
  }

  .right-side {
    flex-direction: column;
    gap: 6px;
  }

  .socials span {
    font-size: 10px;
    letter-spacing: 0.05em;
  }

  .cta-link {
  color: var(--brand-blue);
  background: var(--text-light);
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 15px 40px rgba(2, 59, 124, 0.35);
  width: 100%;
  font-size: 12px;
}

  .social-icons img {
    width: 14px;
    height: 14px;
  }

  h1 {
    font-size: 20px;
    line-height: 1.2;
    padding: 0 8px;
  }

  .lead {
    font-size: 13px;
    line-height: 1.4;
    padding: 0 10px;
  }

  .newsletter {
    flex-direction: column;
    padding: 10px;
    gap: 8px;
    border-radius: 12px;
  }

  .newsletter input {
    font-size: 14px;
    padding: 8px 12px;
  }

  .newsletter button {
    width: 100%;
    padding: 10px;
    font-size: 14px;
  }

  .launch-info {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .launch-info .card {
    padding: 18px;
    width: 100%;
  }

  .milestones li {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px;
  }

  .milestone-date {
    font-size: 13px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-grid article {
    padding: 16px;
  }

  .instructor {
    padding: 18px;
  }

  .instructor-form {
    grid-template-columns: 1fr;
  }

  .primary-btn {
    width: 100%;
    padding: 12px;
    font-size: 15px;
  }

  footer {
    padding: 15px;
    font-size: 12px;
  }

  .form-field input,
.form-field textarea {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  width: 100%;
}
}


/* ============================
   📱 Mobile: 320px – 480px
   ============================ */
@media (max-width: 480px) {

  body {
    padding: 0;
  }

  .nav {
    flex-direction: column;
    gap: 14px;
    padding: 18px;
    text-align: center;
    flex-direction: row;
        justify-content: space-between;
        align-items: center;
  }

  .brand img {
    height: 24px;
  }

  .right-side {
    flex-direction: column-reverse;
    gap: 10px;
  }

.socials {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.socials span {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  font-size: 8px;
  color: black;
}

.social-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-icons img {
  width: 10px;
  height: 10px;
  display: block;
}

  h1 {
    font-size: 25px;
    line-height: 1.2;
  }

  .lead {
    font-size: 16px;
    padding: 0 10px;
  }

  .newsletter {
    flex-direction: column;
    padding: 14px;
    border-radius: 14px;
  }

  .newsletter input {
    width: 100%;
    font-size: 15px;
  }

  .newsletter button {
    width: 100%;
  }

  .launch-info {
    grid-template-columns: 1fr;
  }
  .launch-info .card {
    padding: 18px;
    width: 100%;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .milestones li {
    flex-direction: column;
    align-items: flex-start;
  }

  .instructor {
    padding: 20px;
  }

  .instructor-form {
    grid-template-columns: 1fr;
  }

  .primary-btn {
    width: 100%;
  }
}

/* ============================
   📱 Small Tablets: 481px – 768px
   ============================ */
@media (min-width: 481px) and (max-width: 768px) {

  .nav {
    flex-direction: row;
    justify-content: space-between;
    padding: 20px 30px;
  }

  .brand img {
    height: 45px;
  }

  .right-side {
    gap: 16px;
  }

  .socials {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}

.socials span {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  font-size: 8px;
  width: max-content;
  color: black;
}

.social-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-icons img {
  width: 10px;
  height: 10px;
  display: block;
}
  .cta-link {
  color: var(--brand-blue);
  background: var(--text-light);
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 15px 40px rgba(2, 59, 124, 0.35);
  width: 70%;
  font-size: 12px;
}
  .toggle-btn {
    display: block;
  }


  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #064da9;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    padding: 20px;
    gap: 15px;
  }

  .nav-links.active {
    display: flex;
  }

  .socials {
    display: flex;
    gap: 10px;
  }

  .instructor-btn {
    width: 100%;
  }


  h1 {
    font-size: clamp(30px, 6vw, 48px);
  }

  .lead {
    font-size: 17px;
    max-width: 90%;
  }
  .launch-info .card {
    padding: 18px;
    width: 100%;
  }

  .newsletter {
    flex-direction: row;
    border-radius: 20px;
  }

  .newsletter button {
    width: auto;
  }

  .launch-info {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .instructor {
    padding: 30px;
  }

  .instructor-form {
    grid-template-columns: repeat(2, 1fr);
  }
   .form-field input,
.form-field textarea {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  width: 100%;
}
footer {
  text-align: center;
  padding: 30px 20px 40px;
  color:#009158;
  
}

footer a {
  color:#009158 ;
}

.footer-note {
  margin-top: 6px;
  font-size: 14px;
  color:#009158
}
}



