* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

:root {
  --navy: #1a2a4a;
  --navy-deep: #0d1a30;
  --navy-mid: #1e3560;
  --blue-light: #4a90c4;
  --blue-sky: #7ab8e0;
  --blue-pale: #f6f9fc;
  --gold-light: #e8c97a;
  --gold: #c9a84c;
  --gold-overlay: #c9a84c83;
  --gray-warm: #8a8a8a;
  --gray-light: #f4f6f9;
  --white: #ffffff;
  --text-dark: #1a2a4a;
  --text-mid: #4a5568;
  --shadow-soft: 0 4px 24px rgba(26, 42, 74, 0.1);
  --shadow-card: 0 8px 40px rgba(26, 42, 74, 0.14);
  --radius: 16px;
  --radius-sm: 8px;
}

@font-face {
  font-family: montserrat;
  src: url(/fonts/Montserrat-VariableFont_wght.ttf);
}
@font-face {
  font-family:inter;
  src: url('/fonts/Inter-VariableFont_opsz\,wght.ttf');
}
@font-face {
  font-family: poppins;
  src: url('/fonts/Poppins-Regular.ttf');
}

body {
  background-color: var(--gray-light);
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

p,
span {
  font-family: inter;
}

.all-section-headers {
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 3rem);
  margin: 1em;
  color: var(--gold);
}

/* ===================== HEADER ===================== */

#main_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  /* margin: 5px; */
  background-color: #c9a84c57;
  position: fixed;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  right: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
}

.bi-menu-button {
  font-size: 1em;
  color: var(--gray-warm);
  margin: 0 0.5em;
  cursor: pointer;
}

#menu-controls {
  display: none;
}

.bi-x {
  font-size: 2.5em;
  color: var(--gray-warm);
  margin: 0 0.5em;
  display: none;
  cursor: pointer;
}

#main_header_nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  list-style: none;
  flex-wrap: wrap;
}

.logo{
  width: 100px;
}
.nav_links {
  position: relative;
  white-space: nowrap;
}

.nav_links a {
  text-decoration: none;
  color: var(--navy-deep);
  font-family: sans-serif;
  font-size: 0.975em;
}

.nav_links::before {
  content: "";
  position: absolute;
  width: 0%;
  bottom: -5px;
  height: 2px;
  background-color: var(--gold);
  transition: 0.5s;
}

.nav_links:hover::before {
  width: 100%;
}

.auth_link {
  width: 120px;
  text-align: center;
  border-radius: var(--radius);
  padding: 5px;
  background-color: var(--navy-deep);
  flex-shrink: 0;
}

.auth_link a {
  color: var(--gray-light);
  text-decoration: none;
  font-family: sans-serif;
  font-size: 0.895em;
}

.auth_link2 {
    width: fit-content;
  text-align: center;
  border-radius: var(--radius);
  padding: 5px 10px 5px 10px;
  background-color: transparent;
  flex-shrink: 0;
  border: solid 2px var(--navy-deep);
}

.auth_link2 a{
  color: var(--navy-deep);
  text-decoration: none;
  font-family: sans-serif;
  font-size: 0.895em;
}

/* ===================== HERO ===================== */

.hero {
  min-height: 95vh;
  background-image: url("/images/file_000000006e807246a822d088bdfdcfcc (1).png");
  background-size: cover;
  background-position: center;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 5% 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.1);
  opacity: 0.8;
}

.hero-content {
  /* position: relative; */
  z-index: 1;
  max-width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold-light);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 2rem;
  white-space: nowrap;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 4.9rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy-deep);
  margin-bottom: 1.5rem;
  width: auto;
  max-width: 100%;
}

.hero h1 span {
  color: var(--gold-light);
  font-family: "Times New Roman", Times, serif;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: var(--navy);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 480px;
  width: 100%;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep);
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.02em;
  width: min(300px, 100%);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.45);
}

.hero-image {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-card {
  width: min(420px, 90%);
  height: auto;
  aspect-ratio: 420 / 520;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.hero-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stats {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: white;
  border-radius: 16px;
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-card);
  display: flex;
  gap: 1.5rem;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: var(--navy);
  font-weight: 700;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--gray-warm);
  letter-spacing: 0.05em;
}

/* ===================== FEATURES ===================== */
/* 
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  margin: 1em;
  gap: 0;
} */

/* .feat-card {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  margin: 1em;
  border-radius: 16px;
  padding-bottom: 1em;
  overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
}

.feat-img {
  height: 30vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 16px 16px 0 0;
  margin-bottom: 1em;
  flex-shrink: 0;
}

.card1 {
  background-image: url("/images/18d6ce062fdc239b80d681ceb13ddedc.jpg");
}
.card2 {
  background-image: url("/images/4f41dee27d2a6ea302e3809a9d8285a0.jpg");
}
.card3 {
  background-image: url("/images/b3d14950c0552ecd71f1c23465b08fc5.jpg");
}
.card4 {
  background-image: url("/images/ChatGPT Image May 18, 2026, 06_59_46 PM.png");
}

.feat-body {
  margin: 0 1em 1em 1em;
  flex: 1;
}

.feat-body p {
  width: 100%;
  color: var(--gray-warm);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  margin-top: 0.5em;
}

.feat-head {
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  color: var(--navy-deep);
} */

 /* ===================== FEATURES ===================== */
 
  .features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin: 1em;
    gap: 1.5em;
  }
 
  .feat-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: var(--blue-pale);
    border: 1.5px dashed var(--blue-sky);
    border-radius: var(--radius);
    padding: 0.8em;
    width: 400px;
    overflow: visible;
    height:fit-content;
  }
 
  .feat-img {
    height: 30vh;
    min-height: 130px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
  }
 
  .card1 {
    background-image: url("/images/18d6ce062fdc239b80d681ceb13ddedc.jpg");
  }
  .card2 {
    background-image: url("/images/4f41dee27d2a6ea302e3809a9d8285a0.jpg");
  }
  .card3 {
    background-image: url("/images/b3d14950c0552ecd71f1c23465b08fc5.jpg");
  }
  .card4 {
    background-image: url("/images/ChatGPT Image May 18, 2026, 06_59_46 PM.png");
  }
 
  .feat-top {
    display: flex;
    align-items: center;
    gap: 0.8em;
    margin: 0.9em 0.2em 0.9em;
  }
 
  .feat-icon {
    flex: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-deep);
    color: var(--gold);
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
  }
 
  .feat-titles {
    flex: 1;
    min-width: 0;
  }
 
  .feat-head {
    margin: 0;
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    color: var(--navy-deep);
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
 
  .feat-sub {
    margin: 0.15em 0 0 0;
    font-size: 0.78rem;
    color: var(--gray-warm);
  }
 
  .feat-arrow {
    flex: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--gold-overlay);
    color: var(--navy-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
  }
 
  .feat-desc-wrap {
    position: relative;
    margin-top: 0.2em;
  }
 
  .feat-desc-wrap::after {
    content: "";
    position: absolute;
    inset: 6px -4px -6px 6px;
    background: var(--white);
    border-radius: var(--radius-sm);
    z-index: 0;
  }
 
  .feat-desc {
    position: relative;
    z-index: 1;
    background: var(--navy-deep);
    color: var(--gray-light);
    border-radius: var(--radius-sm);
    padding: 0.9em 1em;
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.5;
    height: 80px;
  }
 
  @media (max-width: 1000px) {
    .features { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 560px) {
    .features { grid-template-columns: 1fr; margin: 0.5em; }
  }
/* ===================== ABOUT ===================== */

.about {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0 3em;
  margin-bottom: 4em;
  flex-wrap: wrap;
}

.about-left {
  flex: 1 1 300px;
  min-height: 400px;
  max-width: 500px;
  background-image: url("/images/ChatGPT Image May 18, 2026, 06_59_46 PM.png");
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  z-index: 0;
}

.about-left::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: var(--navy-deep);
  z-index: -1;
  left: 0;
  top: 0;
  opacity: 0.8;
}

.about-left span {
  margin: 1em 1em 1em 1em;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-family: "Times New Roman", Times, serif;
  color: var(--gray-light);
  position: relative;
  display: inline-block;
}

.about-left span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--gold);
  bottom: -5px;
  left: 0;
}

.about-left p {
  margin: 0.7em 1.5em 2em 1.5em;
  color: var(--gray-warm);
  width: auto;
  max-width: 100%;
  font-size: clamp(1rem, 2vw, 1.5rem);
}

.about-right {
  flex: 1 1 300px;
  background-color: white;
  padding: 2em;
  height: fit-content;
}

.about-right h1 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--gold);
  margin: 15px;
  padding-top: 1.5em;
}

.about-right h2 {
  font-family: sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  color: var(--navy-deep);
  margin: 15px;
  position: relative;
}

.about-right h2::after {
  content: "";
  position: absolute;
  width: 30%;
  height: 3px;
  background-color: var(--gold);
  bottom: -5px;
  left: 25%;
}

.about-right p {
  width: auto;
  max-width: 100%;
  font-size: clamp(1rem, 2vw, 1.5rem);
  margin: 15px;
}

/* ===================== CTA ===================== */

.cta {
  min-height: 100vh;
  /* border-radius: var(--radius); */
  overflow: hidden;
  position: relative;
  /* margin: 4rem 5%; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-image: 
    url("/images/ChatGPT\ Image\ Jul\ 14\,\ 2026\,\ 05_38_12\ PM.png");
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: var(--shadow-card);
  z-index: 0;
}

.cta::after{
  background-color:  #0d1a30a8;
-webkit-backdrop-filter: blur(5px);
backdrop-filter: blur(5px);
  width: 100%;
  height: 100%;
  content: '';
  position: absolute;
  z-index: -1;
}

/* Top text block */
.cta-content {
  padding: 5rem 4rem 2rem;
  max-width: 100vw;
}

.cta-content h1 {
  font-size: clamp(2rem, 6vw, 5rem);
  color: var(--gold);
  text-align: left;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.cta-content span {
  font-family: "Times New Roman", Times, serif;
  color: var(--gray-light);
}

.cta-content p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  max-width: 550px;
  text-align: left;
  color: var(--gray-light);
  opacity: 0.85;
}

/* Bottom action bar */
.cta-bar {
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.75rem 3rem;
}

.cta-bar-text {
  color: var(--navy-deep);
  font-weight: 700;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.btn-outline {
  background: var(--navy-deep);
  color: var(--gold);
  border: 1.5px solid var(--navy-deep);
  padding: 1rem 2.2rem;
  border-radius: 50px;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  width: fit-content;
  white-space: nowrap;
}

.btn-outline:hover {
  background: var(--navy-mid);
  color: white;
}

@media (max-width: 640px) {
  .cta-content {
    padding: 3rem 1.5rem 1.5rem;
  }
  .cta-bar {
    padding: 1.5rem;
    justify-content: center;
    text-align: center;
  }
  .cta-bar-text {
    text-align: center;
  }
}
/* ===================== CONTACT ===================== */

/* .section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2em 5%;
}

.contact-left {
  margin: 2em;
  flex: 1 1 300px;
  width: fit-content;
}

.contact-left p {
  width: 100%;
  max-width: 500px;
  color: var(--gray-warm);
  margin-top: 1em;
}

#contact-form div {
  margin: 1em 0;
}

.contact-left label {
  margin: 0.7em 0;
  display: block;
  font-family: sans-serif;
  font-weight: bold;
  color: var(--navy-deep);
}

.contact-left input {
  font-size: clamp(0.9rem, 2vw, 1.5rem);
  width: 100%;
  max-width: 600px;
  font-family: sans-serif;
  border: solid 2px var(--gray-warm);
  border-radius: 8px;
  padding: 5px;
  display: block;
  margin: 0.5em 0;
  background: transparent;
  outline: none;
}

#contact-form textarea {
  width: 100%;
  max-width: 600px;
  padding: 5px;
  height: 120px;
  display: block;
  background-color: transparent;
  margin: 0.5em 0;
  outline: none;
  border: solid 2px var(--gray-warm);
  border-radius: 8px;
  font-family: sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  resize: vertical;
}

#contact-form button {
  width: 100%;
  max-width: 610px;
  padding: 10px;
  margin: 0.8em 0;
  font-size: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  color: var(--gold);
  background-color: var(--navy-deep);
  border: none;
  cursor: pointer;
}

.contact-right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 2em;
  flex: 0 1 auto;
}

.contact-right div {
  padding: 1.5em;
  text-align: center;
  margin: 1em;
  width: min(260px, 100%);
  height: auto;
  min-height: 125px;
  background-color: var(--gold);
  color: var(--navy-deep);
  border-radius: 4px;
}

.contact-right i {
  font-size: clamp(1.5rem, 4vw, 3rem);
}

.contact-right h4 {
  font-family: sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1.3rem);
} */
/* ===================== CONTACT ===================== */
 
  .sectionn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3em;
    padding: 0px 4em 5%;
  }
 
  /* ---------- LEFT SIDE ---------- */
 
  .contact-left {
    flex: 1 1 340px;
    max-width: 460px;
  }
 
  .contact-eyebrow {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8em;
    font-family: montserrat;
  }
 
  .contact-left h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    line-height: 1.2;
    color: var(--text-dark);
    font-family: poppins;
    font-weight: bolder;
    margin: 0 0 1em 0;
  }
 
  .contact-left h2 strong {
    color: var(--navy-deep);
  }
 
  .contact-left > p {
    color: var(--text-mid);
    line-height: 1.6;
    margin: 0 0 2em 0;
  }
 
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.2em;
  }
 
  .contact-info-row {
    display: flex;
    align-items: center;
    gap: 1em;
  }
 
  .contact-info-icon {
    flex: none;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--blue-pale);
    color: var(--blue-light);
    font-size: 1.1rem;
  }
 
  .contact-info-text small {
    display: block;
    color: var(--gray-warm);
    font-size: 0.8rem;
    margin-bottom: 0.15em;
  }
 
  .contact-info-text span {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    font-size: poppins;
  }
 
  /* ---------- RIGHT SIDE (FORM CARD) ---------- */
 
  .contact-right {
    flex: 1 1 380px;
    max-width: 440px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    padding: 2.2em;
  }
 
  #contact-form div {
    margin: 0 0 1.3em 0;
  }
 
  .contact-right label {
    display: block;
    margin-bottom: 0.5em;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: inter;
    color: var(--text-dark);
  }
 
  .contact-right input,
  .contact-right select,
  .contact-right textarea {
    width: 100%;
    font-family: sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--gray-light);
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    padding: 0.75em 0.9em;
    outline: none;
    transition: border-color 0.15s ease, background 0.15s ease;
  }
 
  .contact-right input::placeholder,
  .contact-right textarea::placeholder {
    color: var(--gray-warm);
  }
 
  .contact-right input:focus,
  .contact-right select:focus,
  .contact-right textarea:focus {
    background: var(--white);
    border-color: var(--blue-light);
  }
 
  .contact-right select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8a8a' stroke-width='1.6' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.9em center;
    cursor: pointer;
  }
 
  #contact-form textarea {
    height: 110px;
    resize: vertical;
  }
 
  #contact-form button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6em;
    padding: 0.85em 1em;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    background: var(--navy-deep);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }
 
  #contact-form button:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-card);
  }
 
  #contact-form button i {
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.25);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
  }


 
  @media (max-width: 700px) {
    .sectionn{ padding: 2.5em 6%; }
    .contact-right { padding: 1.6em; }
  }
/* ===================== FOOTER ===================== */

footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 5%;
  text-align: center;
}

footer .footer-logo {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: white;
  margin-bottom: 0.5rem;
}

footer p {
  font-size: 0.85rem;
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.4);
}

footer a {
  font-family: sans-serif;
  font-size: 1em;
}

/* ===================== ANIMATIONS ===================== */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

  .frame {
    
    width: 100%;
    height: 100vh;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    position: fixed;
    backdrop-filter: blur(10px);
    top: 7%;
    padding: 10px;
    z-index: 1500;
  }
 
  .modal-card {
    width: 700px;
    /* width: 100%; */
    background: var(--white);
    border-radius: var(--radius);
    display: grid;
    position: relative;
    grid-template-columns: 220px 1fr;
    box-shadow: var(--shadow-card);
    height: 90vh;
    overflow-y: scroll;
  }
 
  .sidebar {
    background: var(--gray-light);
    height: 90vh;
    width: 17vw;
    border-radius: var(--radius) 0 0 var(--radius);
    padding: 32px 28px;
    border-right: 1px solid rgba(26,42,74,0.08);
  }
 
  .title {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy-deep);
    margin: 0 0 24px;
  }
 
  .steps { list-style: none; margin: 0; padding: 0; position: relative; }
  .step { display: flex; align-items: flex-start; gap: 12px; position: relative; padding-bottom: 28px; }
  .step:last-child { padding-bottom: 0; }
  
  .step-line {
    position: absolute; left: 13px; top: 28px; bottom: 0; width: 2px;
    background: rgba(26,42,74,0.12);
  }
  .step.done .step-line, .step.active .step-line { background: var(--blue-light); }
 
  .step-marker {
    width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; z-index: 1;
    background: var(--white); border: 2px solid rgba(26,42,74,0.18); color: var(--gray-warm);
  }
  .step.done .step-marker { background: var(--blue-light); border-color: var(--blue-light); color: var(--white); }
  .step.active .step-marker { background: var(--navy); border-color: var(--navy); color: var(--white); }
 
  .step-label { font-size: 14px; font-weight: 500; color: var(--gray-warm); padding-top: 4px; }
  .step.active .step-label { color: var(--navy-deep); font-weight: 700; }
  .step.done .step-label { color: var(--text-mid); }
 
  .content { padding: 32px 36px; }
 
  .section-label {
    font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--gray-warm); margin: 0 0 12px;
  }
  .section-label:not(:first-child) { margin-top: 24px; }
 
  .field { margin-bottom: 12px; }
  .field label { display: block; font-size: 12px; color: var(--gray-warm); margin-bottom: 6px; }
 
  .field input:not([type="checkbox"]), .field select {
    width: 100%; padding: 12px 14px; border-radius: var(--radius-sm); border: 1px solid rgba(26,42,74,0.12);
    background: var(--white); font-size: 14px; color: var(--text-dark); outline: none; box-sizing: border-box;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
  }
 
  .field input:not([type="checkbox"]):focus, .field select:focus {
    border-color: var(--navy-mid); box-shadow: 0 0 0 3px rgba(30, 53, 96, 0.12);
  }
 
  /* Checkbox styling */
  .checkbox-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
  .checkbox-row input[type="checkbox"] { margin-top: 4px; width: 16px; height: 16px; accent-color: var(--navy); }
  .checkbox-row label { font-size: 13px; color: var(--text-dark); line-height: 1.5; margin: 0; }
  .checkbox-row .hint { display: block; margin-top: 4px; font-size: 12px; }

  .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
 
  .select-wrap { position: relative; }
  .select-wrap::after {
    content: ""; position: absolute; right: 14px; top: 50%; width: 8px; height: 8px;
    border-right: 2px solid var(--gray-warm); border-bottom: 2px solid var(--gray-warm);
    transform: translateY(-65%) rotate(45deg); pointer-events: none;
  }
  .select-wrap select { appearance: none; -webkit-appearance: none; color: var(--text-dark); cursor: pointer; }
 
  .footer-row {
    display: flex; justify-content: space-between; align-items: center; margin-top: 28px;
    padding-top: 20px; border-top: 1px solid rgba(26,42,74,0.08);
  }
 
  .btn-back {
    background: transparent; color: var(--text-mid); border: 1px solid rgba(26,42,74,0.15);
    padding: 12px 24px; border-radius: 24px; font-size: 14px; font-weight: 600; cursor: pointer;
  }
  .btn-next {
    margin-left: auto; background: var(--navy); color: var(--white); border: none;
    padding: 12px 28px; border-radius: 24px; font-size: 14px; font-weight: 600; cursor: pointer;
  }
 

  #client_modal_close{
    font-size: 1.5em;
    color: var(--gray-warm);
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;

  }
  @media (max-width: 640px) {
    .modal-card { grid-template-columns: 1fr; }
    .sidebar { border-radius: var(--radius) var(--radius) 0 0; border-right: none; border-bottom: 1px solid rgba(26,42,74,0.08); }
    .row { grid-template-columns: 1fr; }
  }
/* ===================== RESPONSIVE BREAKPOINTS ===================== */

/* Large tablets & small desktops */
@media (max-width: 1100px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    padding: 100px 4% 4rem;
  }
}

/* Tablets */
@media (max-width: 850px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 5% 4rem;
    min-height: auto;
  }

 

  .modal-card{
    width: 90vw;
  }
  
  .feat-card{
    width: 90vw;
  }

  .sidebar{
    width: 90vw;
    height: fit-content;
  }
  .steps{
    display: flex;
    justify-content: space-between;
  }

  .step{
    
  }
  .step-label{
    display: none;
  }
  .hero-image {
    display: none;
  }

  .hero-content {
    width: 100%;
  }

  .hero p {
    max-width: 100%;
  }

  .about {
    padding: 0 1.5em;
    flex-direction: column;
    align-items: stretch;
  }

  .about-left {
    max-width: 100%;
    min-height: 280px;
  }

  .about-right {
    padding: 1.5em;
  }

  .cta {
    justify-content: center;
    padding: 5rem 5% 4rem;
  }

  .cta div {
    align-items: center;
    text-align: center;
  }

  .cta h1,
  .cta p {
    text-align: center;
  }

  .contact-right {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 720px) {
  #main_header {
    justify-content: space-between;
    padding: 10px 15px;
    position: fixed;
  }

  #main_header_nav {
    display: none;
    position: fixed;
    /* position: absolute; */
    top: 0;
    left: 0;
    width: 100%;
    height: fit-content;
    background-color: var(--blue-pale);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
  }

  #main_header_nav.open {
    display: grid;
    place-items: center;
    padding: 0.5em;
  }

  .bi-menu-button.open {
    display: none;
  }

  #menu-controls {
    display: block;
  }
  .bi-x.open {
    display: block;
    z-index: 1001;
    position: absolute;
    right: 0;
    top: 0.2em;
  }

  .features {
    grid-template-columns: 1fr;
    margin: 0.5em;
  }

  .feat-img {
    height: 220px;
  }

  .hero-stats {
    position: static;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    padding: 1rem;
    background: white;
    gap: 1rem;
  }

  .about {
    padding: 0 1em;
    margin-bottom: 2em;
    height: fit-content;
  }

  .about-right h2::after {
    left: 0;
    width: 40%;
  }

  .about-right {
    width: fit-content;
  }

  .section {
    flex-direction: column;
    align-items: stretch;
    padding: 1em;
  }

  .contact-left {
    margin: 1em 0;
  }

  .contact-right {
    margin: 1em 0;
    grid-template-columns: 1fr 1fr;
  }

  .contact-right div {
    width: 100%;
    margin: 0.5em;
  }

  footer {
    padding: 2.5rem 1.5rem;
  }
  #modal-form input,
  #symptomdescription,
  #submit_btn {
    font-size: 0.7em;
    width: 70vw;
  }

  #symptomdescription {
    height: 15vh;
  }

  #modal {
    padding: 0.5em;
  }
}

/* Small mobile */
@media (max-width: 420px) {
  .hero-badge {
    font-size: 0.65rem;
    padding: 5px 12px;
  }

  .btn-primary {
    width: 100%;
    font-size: 0.875rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .contact-right {
    grid-template-columns: 1fr;
  }

  .cta {
    min-height: auto;
    padding: 5rem 4% 3rem;
  }
}
