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

    :root {
      --blue:       #0A3D8F;
      --blue-mid:   #1A5CCC;
      --light-blue: #A8CAFF;
      --sky:        #D6E8FF;
      --white:      #FFFFFF;
      --text-dark:  #071E4A;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--white);
      color: var(--text-dark);
      overflow-x: hidden;
    }

    button {
      cursor: pointer;
    }

    /* ── NAV ─────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 5%;
      height: 72px;
      background: rgba(255,255,255,0.85);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(10,61,143,0.08);
      animation: slideDown 0.7s ease both;
    }

    @keyframes slideDown {
      from { transform: translateY(-100%); opacity: 0; }
      to   { transform: translateY(0);     opacity: 1; }
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .logo-icon {
      width: 38px; height: 38px;
      background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
      border-radius: 10px;
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }

    .logo-icon svg { width: 22px; height: 22px; fill: var(--white); }

    .logo-text {
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--blue);
      letter-spacing: -0.01em;
    }

    .logo-text span { color: var(--blue-mid); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none;
    }

    .nav-links a {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--text-dark);
      text-decoration: none;
      position: relative;
      transition: color 0.2s;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -3px; left: 0;
      width: 0; height: 2px;
      background: var(--blue-mid);
      transition: width 0.25s ease;
    }

    .nav-links a:hover { color: var(--blue); }
    .nav-links a:hover::after { width: 100%; }

    .nav-cta {
      background: var(--blue);
      color: var(--white) !important;
      padding: 10px 22px;
      border-radius: 50px;
      font-weight: 500 !important;
      transition: background 0.2s, transform 0.2s !important;
      border: none;
    }

    .nav-cta::after { display: none !important; }
    .nav-cta:hover { background: var(--blue-mid) !important; transform: translateY(-1px); }


    /* MODAL OVERLAY */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(168, 202, 255, 0.15); /* hint of light-blue */
  backdrop-filter: blur(5px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* MODAL BOX */
.modal {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  width: 90%;
  max-width: 450px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  position: relative;
  animation: fadeIn 0.3s ease;
}

.modal h2 {
  margin-bottom: 1.5rem;
  color: var(--blue);
  text-align: center;
}

/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border-radius: 8px;
  border: 1px solid var(--light-blue);
  font-family: inherit;
  font-size: 0.9rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue-mid);
}

/* ANIMATION */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}





    /* ── HERO ─────────────────────────────────────── */
    .hero {
      min-height: 100vh;
      padding-top: 72px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    /* Background layers */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--sky) 0%, var(--white) 55%);
      z-index: 0;
    }

    /* Decorative circle blob */
    .hero::after {
      content: '';
      position: absolute;
      right: -120px; top: 50%;
      transform: translateY(-50%);
      width: 680px; height: 680px;
      border-radius: 50%;
      background: radial-gradient(circle, var(--light-blue) 0%, rgba(168,202,255,0.15) 70%, transparent 100%);
      z-index: 0;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      padding: 80px 0 80px 8%;
      animation: fadeUp 0.9s 0.3s ease both;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(32px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(10,61,143,0.08);
      color: var(--blue);
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 50px;
      margin-bottom: 28px;
    }

    .hero-badge::before {
      content: '';
      width: 7px; height: 7px;
      background: var(--blue-mid);
      border-radius: 50%;
    }

    h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.8rem, 5vw, 4.4rem);
      font-weight: 900;
      line-height: 1.08;
      color: var(--blue);
      margin-bottom: 24px;
    }

    h1 em {
      font-style: italic;
      color: var(--blue-mid);
    }

    .hero-desc {
      font-size: 1.05rem;
      font-weight: 300;
      line-height: 1.75;
      color: #3a5080;
      max-width: 480px;
      margin-bottom: 44px;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--blue);
      color: var(--white);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem;
      font-weight: 500;
      padding: 14px 30px;
      border-radius: 50px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 8px 24px rgba(10,61,143,0.25);
    }

    .btn-primary:hover {
      background: var(--blue-mid);
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(10,61,143,0.35);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--blue);
      font-size: 0.95rem;
      font-weight: 500;
      text-decoration: none;
      transition: gap 0.2s;
    }

    .btn-secondary:hover { gap: 12px; }
    .btn-secondary svg { width: 18px; height: 18px; stroke: var(--blue); }

    /* Hero visual */
    .hero-visual {
      position: relative;
      z-index: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 80px 8% 80px 0;
      animation: fadeUp 0.9s 0.55s ease both;
    }

    .card-stack {
      position: relative;
      width: 340px; height: 380px;
    }

    .card {
      position: absolute;
      border-radius: 24px;
      background: var(--white);
      box-shadow: 0 20px 60px rgba(10,61,143,0.12);
      padding: 28px;
    }

    .card-back {
      width: 280px; height: 320px;
      top: 30px; left: 50px;
      background: linear-gradient(145deg, var(--blue) 0%, var(--blue-mid) 100%);
      transform: rotate(6deg);
    }

    .card-main {
      width: 300px; height: 340px;
      top: 10px; left: 20px;
    }

    .card-dot {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: var(--sky);
      display: grid;
      place-items: center;
      margin-bottom: 20px;
    }

    .card-dot svg { width: 20px; height: 20px; stroke: var(--blue); fill: none; stroke-width: 2; }

    .card-label {
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: #7a99cc;
      margin-bottom: 6px;
    }

    .card-value {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--blue);
      margin-bottom: 20px;
    }

    .card-bar-row { display: flex; flex-direction: column; gap: 10px; }

    .bar-item { display: flex; flex-direction: column; gap: 4px; }

    .bar-label {
      display: flex;
      justify-content: space-between;
      font-size: 0.78rem;
      color: #7a99cc;
    }

    .bar-track {
      height: 6px;
      background: var(--sky);
      border-radius: 99px;
      overflow: hidden;
    }

    .bar-fill {
      height: 100%;
      border-radius: 99px;
      background: linear-gradient(90deg, var(--blue) 0%, var(--blue-mid) 100%);
      animation: grow 1.5s 1s ease both;
      transform-origin: left;
    }

    @keyframes grow {
      from { transform: scaleX(0); }
      to   { transform: scaleX(1); }
    }

    /* ── STATS ROW ───────────────────────────────── */
    .stats-row {
      display: flex;
      gap: 40px;
      margin-top: 48px;
      padding-top: 36px;
      border-top: 1px solid rgba(10,61,143,0.1);
    }

    .stat-item,
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--blue);
      line-height: 1;
    }
    .stat-label {
      font-size: 0.78rem;
      color: #7a99cc;
      margin-top: 4px;
    }

    /* ── RESPONSIVE ───────────────────────────────── */
    @media (max-width: 768px) {
      .hero { grid-template-columns: 1fr; }
      .hero-visual { display: none; }
      .hero-content { padding: 60px 6%; }
      .nav-links { display: none; }
    }

   
   
   /* SERVICES SECTION */
.services {
  padding: 5rem 0;
  background: var(--sky);
}
   
    /* CONTAINER */
.container {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}


.services h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--blue);
}

.section-subtext {
  margin-bottom: 3rem;
  font-size: 1.1rem;
  color: var(--text-dark);
}

/* CARD GRID */
.card-grid {
  display: grid;
  height: 100%;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card1 {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.card1:hover {
  transform: translateY(-8px);
}

.card1-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.card1 h3 {
  margin-bottom: 1rem;
  color: var(--blue-mid);
}

.card1 p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.card1 ul {
  list-style: none;
  text-align: left;
  font-size: 0.9rem;
}

.card ul li {
  margin-bottom: 0.5rem;
}

/* PRICING SECTION */
.pricing {
  padding: 5rem 0;
  background: var(--white);
  display: flex;
  justify-content: center;
}

.pricing-box {
  background: var(--blue);
  color: var(--white);
  padding: 3rem;
  border-radius: 16px;
  text-align: center;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.pricing-box h2 {
  margin-bottom: 1rem;
}

.price {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.price span {
  font-size: 1rem;
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.pricing-features li {
  margin-bottom: 0.75rem;
}

.btn-primary {
  display: inline-block;
  background: var(--light-blue);
  color: var(--text-dark);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: var(--sky);
}

/* WHY CHOOSE US SECTION */
.why-choose-us {
  padding: 5rem 0;
  background: var(--white);
  text-align: center;
}

.why-choose-us h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--blue);
}

.why-intro {
  max-width: 750px;
  margin: 0 auto 3rem auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.benefit {
  padding: 1.5rem;
}

.benefit h3 {
  margin-bottom: 1rem;
  color: var(--blue-mid);
}

.benefit p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CTA */
.cta-wrapper {
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 900px) {
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .benefit-grid {
    grid-template-columns: 1fr;
  }
}


/* FOOTER */
.footer {
  background: var(--blue);
  color: var(--white);
  padding: 3rem 0 1.5rem 0;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  color: wheat
}

.footer-logo h3 {
  font-size: 1.2rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  color: var(--white);
  transition: opacity 0.3s ease;
}

.footer-socials a:hover {
  opacity: 0.7;
}

.footer-links a {
  color: var(--light-blue);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}
  