:root {
  --navy-950: #00152d;
  --navy-900: #002044;
  --navy-850: #072b55;
  --navy-800: #0a3768;
  --green: #61e824;
  --green-strong: #27bd2e;
  --green-dark: #148f28;
  --cyan: #16b5e8;
  --text: #10284a;
  --muted: #5f718b;
  --line: #dce5ef;
  --surface: #ffffff;
  --surface-soft: #f6f9fc;
  --shadow: 0 18px 48px rgba(3, 34, 69, .12);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.section { padding: 92px 0px; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(0, 21, 45, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled {
  box-shadow: 0 10px 35px rgba(0,0,0,.24);
  background: rgba(0, 18, 39, .98);
}
.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand img {
  width: 100px;
  height: 90px;
  object-fit: contain;
  margin-block: -22px;
  filter: drop-shadow(0 8px 12px rgba(0,0,0,.28));
  padding-top: 10px;
  padding-bottom: 10px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 38px;
}
.main-nav a {
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  padding: 32px 0 25px;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 20px;
  height: 3px;
  border-radius: 4px;
  background: var(--green);
  transition: right .25s ease;
}
.main-nav a:hover,
.main-nav a.active { color: var(--green); }
.main-nav a:hover::after,
.main-nav a.active::after { right: 0; }
.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 9px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  transition: .25s ease;
}

/* Hero */
.hero {
  min-height: 680px;
  padding-top: 88px;
  position: relative;
  display: flex;
  align-items: center;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(0,18,39,.98) 0%, rgba(0,26,56,.90) 36%, rgba(0,23,48,.28) 68%, rgba(0,18,39,.14) 100%),
    url("../assets/hero-trader.webp") center/cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  z-index: -1;
  background: linear-gradient(to bottom, transparent, rgba(0, 14, 31, .38));
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 42%, rgba(22,181,232,.16), transparent 33%),
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.10));
}
.hero-content { position: relative; z-index: 2; }
.hero-copy { max-width: 590px; color: #fff; padding: 74px 0 88px; }
.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--green);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0 0 18px;
  font-size: 50px;
  line-height: .98;
  letter-spacing: -.055em;
  text-shadow: 0 10px 25px rgba(0,0,0,.25);
}
.hero h1 span { color: var(--green); }
.hero-copy > p:not(.eyebrow) {
  max-width: 555px;
  margin: 0;
  color: rgba(255,255,255,.89);
  font-size: 1.05rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn svg { width: 20px; height: 20px; }
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #5ee51f, #139f2f);
  border-color: rgba(255,255,255,.3);
  box-shadow: 0 12px 28px rgba(38,190,48,.3);
}
.btn-primary:hover { box-shadow: 0 16px 34px rgba(38,190,48,.42); }
.btn-outline { color: #fff; border-color: #1bb9ea; background: rgba(0,31,68,.46); }
.btn-outline:hover { background: rgba(14,102,151,.48); }

/* Shared headings */
.section-heading { text-align: center; margin-bottom: 42px; }
.section-heading.align-left { text-align: left; margin-bottom: 24px; }
.section-heading h2 {
  position: relative;
  display: inline-block;
  margin: 0;
 color: #213d91;
    font-size: 25px;
    font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.section-heading h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -11px;
  width: 48px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-strong));
}
.section-heading:not(.align-left) h2::after { left: 50%; transform: translateX(-50%); }

/* About */
.about-section { background: linear-gradient(180deg, #fff, #f8fbfe 100%); }
.about-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 58px;
}
.about-visual {
  border-radius: 28px;
  overflow: hidden;
  background: #f3f7fb;
  box-shadow: var(--shadow);
}
.about-visual img { width: 100%; aspect-ratio: 1.38; object-fit: cover; }
.about-copy > p { margin: 0 0 18px; color: #405878; }

.purpose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.purpose-card {
  min-height: 280px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  padding: 28px 25px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 10%, rgba(17,181,226,.12), transparent 32%),
    linear-gradient(145deg, #052b55, #001d3d);
  box-shadow: 0 15px 30px rgba(0,33,70,.18);
}
.purpose-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #6bf329, #0aa33d);
  box-shadow: 0 8px 20px rgba(38,206,57,.28);
}
.purpose-icon svg { width: 29px; height: 29px; }
.purpose-card h3 { margin: 2px 0 10px; font-size: 1.25rem; }
.purpose-card p { margin: 0; color: rgba(255,255,255,.87); font-size: .9rem; line-height: 1.65; }
.values-card { grid-template-columns: 58px 1fr; }
.values-list { list-style: none; margin: 0; padding: 0; }
.values-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(255,255,255,.9);
  font-size: .82rem;
  line-height: 1.48;
  margin-bottom: 4px;
}
.values-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green-strong);
  font-size: .68rem;
  font-weight: 900;
}

/* Services */
.services-section { background: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  padding: 34px 28px 40px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(7,43,85,.09);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, #64ed26, #18a936);
}
.service-card:hover { transform: translateY(-7px); box-shadow: 0 20px 45px rgba(7,43,85,.15); }
.service-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #0b447b, #001f42);
  box-shadow: 0 10px 24px rgba(0,31,66,.22);
}
.service-icon svg { width: 34px; height: 34px; }
.service-card h3 { margin: 0 0 14px; color: var(--navy-900); font-size: 1.23rem; line-height: 1.25; }
.service-card p { margin: 0; color: #526881; font-size: .93rem; }

/* Why us */
.why-section {
  position: relative;
  overflow: hidden;
  padding: 70px 0 74px;
  color: #fff;
  background:
    linear-gradient(rgba(0,31,66,.94), rgba(0,31,66,.96)),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(97,232,36,.07) 43px 44px),
    linear-gradient(135deg, #002b55, #00162f);
}
.why-section::before {
  content: "";
  position: absolute;
  right: -5%;
  bottom: -40px;
  width: 420px;
  height: 180px;
  opacity: .17;
  background: linear-gradient(125deg, transparent 48%, var(--green) 49% 52%, transparent 53%);
  transform: rotate(-5deg);
}
.light-heading h2 { color: #fff; }
.light-heading .section-kicker { color: var(--green); }
.why-grid { display: grid; grid-template-columns: repeat(6, 1fr); position: relative; z-index: 2; }
.why-item {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.22);
}
.why-item:last-child { border-right: 0; }
.why-item svg { width: 56px; height: 56px; color: var(--green); stroke-width: 1.55; }
.why-item svg text { fill: #fff; stroke: none; font-size: 5px; font-weight: 900; }
.why-item span { font-weight: 800; line-height: 1.35; font-size: .9rem; }

/* Contact */
.contact-section { background: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.05fr .8fr;
  gap: 34px;
  align-items: stretch;
}
.compact-heading { margin-bottom: 28px !important; }
.contact-info { padding-right: 26px; border-right: 1px solid var(--line); }
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 19px 0;
}
a.contact-row:hover strong { color: var(--green-dark); }
.contact-icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--green-strong);
}
.contact-icon svg { width: 28px; height: 28px; stroke-width: 1.8; }
.contact-row strong { display: block; margin-bottom: 1px; color: var(--navy-900); }
.contact-row small { display: block; color: #526881; line-height: 1.45; font-size: .86rem; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form label { display: block; }
.contact-form label > span { position: absolute; left: -9999px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cad7e4;
  border-radius: 9px;
  padding: 13px 14px;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border .2s ease, box-shadow .2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green-strong);
  box-shadow: 0 0 0 4px rgba(61,201,52,.11);
}
.contact-form textarea { resize: vertical; min-height: 145px; }
.submit-btn { width: max-content; border-radius: 8px; min-height: 43px; padding: 10px 18px; }

.support-card {
  align-self: center;
  display: grid;
  grid-template-columns: 115px 1fr;
  align-items: center;
  gap: 16px;
  padding: 28px 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(145deg, #fff, #f6f9fc);
  box-shadow: 0 14px 35px rgba(7,43,85,.08);
}
.support-card img { width: 115px; height: 115px; object-fit: contain; }
.support-card h3 { margin: 0 0 10px; color: var(--navy-900); line-height: 1.25; font-size: 1.05rem; }
.support-card p { margin: 0; color: #5c7088; font-size: .84rem; }

/* Footer */
.site-footer {
  color: #fff;
  background:
    radial-gradient(circle at 92% 30%, rgba(31,187,226,.12), transparent 27%),
    linear-gradient(145deg, #001f42, #00142c);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .9fr .7fr;
  gap: 50px;
  padding: 42px 0 30px;
}
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand img { width: 86px; height: 86px; object-fit: contain; }
.footer-brand h3 { margin: 0 0 3px; font-size: 1rem; }
.footer-brand p { margin: 0; max-width: 250px; color: rgba(255,255,255,.7); font-size: .82rem; line-height: 1.45; }
.footer-links h4,
.footer-social h4 { margin: 0 0 14px; color: var(--green); font-size: .9rem; }
.footer-links > div { display: grid; grid-template-columns: repeat(2, minmax(90px, 1fr)); gap: 7px 22px; }
.footer-links a { color: rgba(255,255,255,.78); font-size: .82rem; }
.footer-links a:hover { color: var(--green); }
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(97,232,36,.5);
  border-radius: 50%;
  font-weight: 800;
  color: #fff;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.social-row a:hover { color: var(--navy-950); background: var(--green); transform: translateY(-3px); }
.footer-bottom {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.64);
  font-size: .76rem;
}
.footer-bottom p { margin: 0; }
.footer-bottom > div { display: flex; gap: 24px; }
.footer-bottom a:hover { color: var(--green); }

/* Animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1050px) {
  .purpose-grid,
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-card { grid-column: 1 / -1; }
  .why-grid { grid-template-columns: repeat(3, 1fr); gap: 22px 0; }
  .why-item:nth-child(3) { border-right: 0; }
  .why-item:nth-child(-n+3) { border-bottom: 1px solid rgba(255,255,255,.18); padding-bottom: 20px; }
  .contact-grid { grid-template-columns: .8fr 1.2fr; }
  .support-card { grid-column: 1 / -1; grid-template-columns: 120px 1fr; max-width: 560px; justify-self: center; }
}

@media (max-width: 820px) {
  .section { padding: 72px 0; }
  .nav-wrap { min-height: 74px; }
  .brand img { width: 112px; height: 104px; margin-block: -16px; }
  .nav-toggle { display: block; position: relative; z-index: 1100; }
  .main-nav {
    position: fixed;
    inset: 74px 0 auto;
    display: grid;
    gap: 0;
    padding: 12px 20px 24px;
    background: rgba(0, 21, 45, .99);
    border-top: 1px solid rgba(255,255,255,.1);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: .28s ease;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { padding: 14px 4px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .main-nav a::after { bottom: 7px; width: 38px; right: auto; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { min-height: 650px; padding-top: 74px; background-position: 58% center; }
  .hero-copy { max-width: 540px; padding: 70px 0; }
  .hero h1 { font-size: clamp(3rem, 11vw, 5rem); }
  .about-grid { grid-template-columns: 1fr; gap: 38px; }
  .purpose-grid,
  .services-grid { grid-template-columns: 1fr; }
  .values-card { grid-column: auto; }
  .purpose-card { min-height: auto; }
  .service-card { min-height: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { padding-right: 0; border-right: 0; }
  .support-card { grid-column: auto; width: 100%; max-width: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 580px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 62px 0; }
  .hero {
    min-height: 690px;
    align-items: flex-end;
    background-position: 57% center;
  }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(0,17,37,.48), rgba(0,17,37,.96) 72%);
  }
  .hero-copy { padding: 120px 0 58px; }
  .hero-copy > p:not(.eyebrow) { font-size: .96rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .purpose-card { grid-template-columns: 1fr; }
  .purpose-icon { width: 52px; height: 52px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-item { min-height: 135px; border-bottom: 1px solid rgba(255,255,255,.18); }
  .why-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.22); }
  .why-item:nth-child(even) { border-right: 0; }
  .why-item:nth-last-child(-n+2) { border-bottom: 0; }
  .form-row { grid-template-columns: 1fr; }
  .support-card { grid-template-columns: 90px 1fr; padding: 22px 18px; }
  .support-card img { width: 90px; height: 90px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; padding: 18px 0; }
  .footer-bottom > div { flex-wrap: wrap; gap: 10px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
/* =========================
   Vision & Mission Section
========================= */

.vision-mission-section {
  position: relative;
  overflow: hidden;
  padding: 60px 20px;
  background:
    radial-gradient(circle at 10% 20%, rgba(213, 175, 87, 0.11), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(213, 175, 87, 0.08), transparent 28%),
    #05172b;
  font-family: "Inter", "Arial", sans-serif;
}

.vision-mission-section::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -160px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.vision-mission-section::after {
  content: "";
  position: absolute;
  bottom: -220px;
  left: -180px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(213, 175, 87, 0.08);
  border-radius: 50%;
}

.vm-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.vm-heading {
  max-width: 680px;
  margin: 0 auto 55px;
  text-align: center;
}

.vm-heading span {
  display: inline-block;
  margin-bottom: 14px;
  color: #d5af57;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
}

.vm-heading h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
}

.vm-heading p {
  margin: 0;
  color: #aeb8c7;
  font-size: 16px;
  line-height: 1.8;
}

.vm-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.vm-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.075),
    rgba(255, 255, 255, 0.025)
  );
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
  transition: transform 0.35s ease, border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.vm-card:hover {
  transform: translateY(-8px);
  border-color: rgba(213, 175, 87, 0.5);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.vm-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 42px;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #61e824, #61e824);
}

.vm-card::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(213, 175, 87, 0.12);
  border-radius: 50%;
}

.vm-number {
  position: absolute;
  top: 28px;
  right: 34px;
  color: rgba(255, 255, 255, 0.055);
  font-size: 82px;
  font-weight: 800;
  line-height: 1;
}

.vm-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin-bottom: 34px;
  border: 1px solid rgba(97, 232, 36, 0.3);
  border-radius: 18px;
  background: rgba(213, 175, 87, 0.1);
}

.vm-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: #5bdb24;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vm-content {
  position: relative;
  z-index: 2;
}

.vm-label {
  display: block;
  margin-bottom: 13px;
  color: #d5af57;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
}

.vm-content h3 {
  max-width: 430px;
  margin: 0 0 20px;
  color: #ffffff;
  font-size: 27px;
  font-weight: 650;
  line-height: 1.35;
}

.vm-content p {
  margin: 0;
  color: #b5bfcd;
  font-size: 15.5px;
  line-height: 1.9;
}


/* Tablet */
@media (max-width: 900px) {
  .vision-mission-section {
    padding: 80px 20px;
  }

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

  .vm-card {
    min-height: auto;
  }

  .mission-card {
    margin-top: 0;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .vision-mission-section {
    padding: 65px 16px;
  }

  .vm-heading {
    margin-bottom: 38px;
  }

  .vm-heading h2 {
    font-size: 34px;
  }

  .vm-heading p {
    font-size: 15px;
  }

  .vm-card {
    padding: 34px 25px;
    border-radius: 18px;
  }

  .vm-card::before {
    left: 25px;
  }

  .vm-number {
    top: 25px;
    right: 22px;
    font-size: 64px;
  }

  .vm-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 28px;
  }

  .vm-content h3 {
    font-size: 23px;
  }

  .vm-content p {
    font-size: 15px;
    line-height: 1.8;
  }
}
/* ==============================
   Our Core Values
================================= */

.core-values-section {
  padding: 75px 20px;
  background: #ffffff;
  font-family: "Arial", sans-serif;
  padding-bottom: 0px;
}

.core-values-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

/* Heading */

.core-values-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 45px;
}

.core-values-heading h2 {
  flex-shrink: 0;
  margin: 0;
  color: #213d91;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.heading-line {
  width: 100%;
  height: 1px;
  background: #e0e5ec;
}

.heading-accent {
  flex-shrink: 0;
  width: 42px;
  height: 3px;
  border-radius: 10px;
  background: #68b74a;
}

/* Values Grid */

.core-values-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: stretch;
  width: 100%;
}

/* Single Item */

.core-value-item {
  position: relative;
  display: flex;
  min-height: 145px;
  padding: 0 18px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.core-value-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  width: 1px;
  height: 105px;
  background: #dce1e8;
}

/* Icon */

.core-value-icon {
  position: relative;
  display: flex;
  width: 62px;
  height: 62px;
  margin-bottom: 17px;
  align-items: center;
  justify-content: center;
  color: #294ca5;
  font-size: 39px;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.core-value-item:hover .core-value-icon {
  color: #68b74a;
  transform: translateY(-5px);
}

.icon-tick {
  position: absolute;
  top: 25px;
  left: 27px;
  display: flex;
  width: 19px;
  height: 19px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #68b74a;
  font-size: 14px;
}

.icon-dot {
  position: absolute;
  right: 4px;
  bottom: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #68b74a;
}

/* Title */

.core-value-item h3 {
  margin: 0;
  color: #181818;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

/* Hover Underline */

.core-value-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  border-radius: 20px;
  background: #68b74a;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.core-value-item:hover::before {
  width: 45px;
}

/* ==============================
   Laptop
================================= */

@media (max-width: 1200px) {
  .core-values-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 35px 0;
  }

  .core-value-item:nth-child(4)::after {
    display: none;
  }
}

/* ==============================
   Tablet
================================= */

@media (max-width: 850px) {
  .core-values-section {
    padding: 60px 20px;
  }

  .core-values-heading {
    gap: 10px;
    margin-bottom: 40px;
  }

  .core-values-heading h2 {
    font-size: 22px;
  }

  .heading-accent {
    width: 28px;
  }

  .core-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 0;
  }

  .core-value-item:nth-child(even)::after {
    display: none;
  }

  .core-value-item:nth-child(4)::after {
    display: none;
  }

  .core-value-item:nth-child(7)::after {
    display: none;
  }
}

/* ==============================
   Mobile
================================= */

@media (max-width: 520px) {
  .core-values-section {
    padding: 50px 15px;
  }

  .core-values-heading {
    gap: 8px;
    margin-bottom: 35px;
  }

  .core-values-heading h2 {
    font-size: 18px;
  }

  .heading-line {
    display: none;
  }

  .heading-accent {
    width: 30px;
  }

  .core-values-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .core-value-item {
    min-height: auto;
    padding: 25px 15px;
    border-bottom: 1px solid #e2e6eb;
  }

  .core-value-item:last-child {
    border-bottom: 0;
  }

  .core-value-item::after {
    display: none !important;
  }

  .core-value-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 12px;
    font-size: 36px;
  }

  .core-value-item h3 {
    font-size: 14px;
  }
}
/* ==================================
   What We Cover
================================== */

.cover-section {
  padding: 90px 20px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(33, 61, 145, 0.06),
      transparent 28%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(104, 183, 74, 0.06),
      transparent 28%
    ),
    #f6f7f9;
  font-family: Arial, Helvetica, sans-serif;
}

.cover-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

/* Heading */

.cover-heading {
  max-width: 760px;
  margin: 0 auto 65px;
  text-align: center;
}

.cover-heading > span {
  display: inline-block;
  margin-bottom: 12px;
  color: #68b74a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.cover-heading h2 {
  margin: 0 0 18px;
  color: #213d91;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
}

.cover-heading h2::after {
  content: "";
  display: block;
  width: 65px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 20px;
  background: #68b74a;
}

.cover-heading p {
  margin: 0;
  color: #606875;
  font-size: 16px;
  line-height: 1.8;
}

/* Desktop six-column layout */

.cover-scroll {
  width: 100%;
}

.cover-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.cover-item {
  position: relative;
  display: flex;
  min-width: 0;
  padding: 20px 10px 25px;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

/* Circle */

.cover-circle-wrap {
  position: relative;
  display: flex;
  width: 178px;
  height: 178px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Outer incomplete black ring */

.cover-circle-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 220deg,
    #151515 0deg,
    #151515 285deg,
    transparent 285deg,
    transparent 360deg
  );

  -webkit-mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 5px),
    #000 calc(100% - 4px)
  );

  mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 5px),
    #000 calc(100% - 4px)
  );

  transition: background 0.35s ease;
}

.cover-circle {
  position: relative;
  z-index: 2;
  display: flex;
  width: 142px;
  height: 142px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 12px solid #ffffff;
  border-radius: 50%;
  background: linear-gradient(145deg, #05172b, #05172b);
  color: #fff;
  box-shadow:
    0 18px 24px rgba(28, 35, 50, 0.2),
    inset 0 0 20px rgba(255, 255, 255, 0.18);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.cover-circle strong {
  display: block;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.cover-circle span {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Connector */

.cover-line {
  position: relative;
  width: 2px;
  height: 52px;
  margin-top: -1px;
  background: #171717;
}

.cover-line span {
  position: absolute;
  bottom: -13px;
  left: 50%;
  width: 22px;
  height: 22px;
  border: 4px solid #171717;
  border-radius: 50%;
  background: #f6f7f9;
  transform: translateX(-50%);
}

/* Content */

.cover-content {
  margin-top: 32px;
}

.cover-content h3 {
  min-height: 50px;
  margin: 0 0 12px;
  color: #151515;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
}

.cover-content p {
  margin: 0;
  color: #555e69;
  font-size: 14px;
  line-height: 1.7;
}

/* Hover */

.cover-item:hover .cover-circle {
  transform: translateY(-6px) scale(1.03);
  box-shadow:
    0 24px 32px rgba(28, 35, 50, 0.24),
    inset 0 0 20px rgba(255, 255, 255, 0.18);
}

.cover-item:hover .cover-circle-wrap::before {
  background: conic-gradient(
    from 220deg,
    #213d91 0deg,
    #213d91 210deg,
    #68b74a 285deg,
    transparent 285deg,
    transparent 360deg
  );
}

.cover-item:hover .cover-content h3 {
  color: #213d91;
}

/* Mobile swipe label */

.cover-swipe {
  display: none;
}

/* Medium desktop */

@media (max-width: 1250px) {
  .cover-section {
    padding-right: 0;
    padding-left: 0;
  }

  .cover-heading {
    padding-right: 25px;
    padding-left: 25px;
  }

  .cover-scroll {
    overflow-x: auto;
    padding: 10px 25px 30px;
    scrollbar-width: thin;
    scrollbar-color: #213d91 #dfe3e8;
  }

  .cover-grid {
    grid-template-columns: repeat(6, 225px);
    width: max-content;
  }

  .cover-scroll::-webkit-scrollbar {
    height: 7px;
  }

  .cover-scroll::-webkit-scrollbar-track {
    border-radius: 20px;
    background: #dfe3e8;
  }

  .cover-scroll::-webkit-scrollbar-thumb {
    border-radius: 20px;
    background: #213d91;
  }
}

/* Tablet and mobile */

@media (max-width: 768px) {
  .cover-section {
    padding: 65px 0 50px;
  }

  .cover-heading {
    margin-bottom: 30px;
    padding: 0 20px;
  }

  .cover-heading h2 {
    font-size: 34px;
  }

  .cover-heading p {
    font-size: 15px;
    line-height: 1.7;
  }

  .cover-scroll {
    padding: 10px 20px 25px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .cover-grid {
    grid-template-columns: repeat(6, 270px);
    gap: 14px;
  }

  .cover-item {
    padding: 25px 20px 30px;
    border: 1px solid rgba(33, 61, 145, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.65);
    box-shadow: 0 10px 30px rgba(25, 35, 50, 0.06);
    scroll-snap-align: center;
  }

  .cover-circle-wrap {
    width: 160px;
    height: 160px;
  }

  .cover-circle {
    width: 126px;
    height: 126px;
    border-width: 10px;
  }

  .cover-circle strong {
    font-size: 37px;
  }

  .cover-content h3 {
    min-height: auto;
    font-size: 19px;
  }

  .cover-content p {
    font-size: 14px;
  }

  .cover-swipe {
    display: flex;
    margin-top: 8px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #213d91;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .cover-swipe span {
    font-size: 21px;
    animation: coverArrow 1s infinite alternate;
  }
}

@keyframes coverArrow {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(7px);
  }
}

/* Small mobile */

@media (max-width: 480px) {
  .cover-grid {
    grid-template-columns: repeat(6, calc(100vw - 55px));
  }

  .cover-heading h2 {
    font-size: 30px;
  }

  .cover-item {
    padding-right: 18px;
    padding-left: 18px;
  }
}
/* =====================================
   Why Choose Us Section
===================================== */

.why-choose-section {
  position: relative;
  overflow: hidden;
  padding: 100px 20px;
  background-color: #f9fbfd;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.18),
      rgba(255, 255, 255, 0.18)
    ),
    url("assets/images/why-choose-us-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  font-family: Arial, Helvetica, sans-serif;
}

.why-choose-section * {
  box-sizing: border-box;
}

.why-choose-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

/* =====================================
   Section Heading
===================================== */

.why-choose-heading {
  max-width: 800px;
  margin: 0 auto 55px;
  text-align: center;
}

.why-small-title {
  display: inline-block;
  margin-bottom: 12px;
  color: #159447;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.why-choose-heading h2 {
  margin: 0;
  color: #08205d;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
}

.why-heading-line {
  display: flex;
  margin: 22px auto 18px;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.why-heading-line span {
  width: 68px;
  height: 3px;
  border-radius: 20px;
  background: #0ba34b;
}

.why-heading-line i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0ba34b;
}

.why-choose-heading p {
  margin: 0;
  color: #3f4a61;
  font-size: 17px;
  line-height: 1.75;
}

/* =====================================
   Card Grid
===================================== */

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* =====================================
   Individual Card
===================================== */

.why-card {
  position: relative;
  display: flex;
  min-height: 335px;
  padding: 34px 30px;
  overflow: hidden;
  align-items: center;
  flex-direction: column;
  border: 1px solid rgba(16, 52, 113, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.91);
  box-shadow:
    0 14px 35px rgba(14, 36, 75, 0.09),
    0 3px 10px rgba(14, 36, 75, 0.04);
  text-align: center;
  backdrop-filter: blur(5px);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 4px;
  border-radius: 0 0 10px 10px;
  background: linear-gradient(90deg, #13388e, #0da44f);
  transform: translateX(-50%);
  transition: width 0.35s ease;
}

.why-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: rgba(14, 163, 75, 0.045);
  transition: transform 0.35s ease;
}

.why-card:hover {
  border-color: rgba(13, 164, 79, 0.26);
  box-shadow:
    0 22px 48px rgba(14, 36, 75, 0.14),
    0 5px 14px rgba(14, 36, 75, 0.05);
  transform: translateY(-8px);
}

.why-card:hover::before {
  width: 100%;
}

.why-card:hover::after {
  transform: scale(1.25);
}

/* =====================================
   Icons
===================================== */

.why-icon {
  position: relative;
  z-index: 2;
  display: flex;
  width: 94px;
  height: 94px;
  margin-bottom: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background:
    linear-gradient(
      145deg,
      rgba(13, 164, 79, 0.1),
      rgba(19, 56, 142, 0.06)
    );
  color: #173c97;
  font-size: 43px;
  transition:
    color 0.35s ease,
    transform 0.35s ease,
    background 0.35s ease;
}

.why-icon::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(13, 164, 79, 0.16);
  border-radius: 50%;
}

.why-icon i {
  position: relative;
  z-index: 2;
}

.why-card:hover .why-icon {
  background:
    linear-gradient(
      145deg,
      rgba(19, 56, 142, 0.1),
      rgba(13, 164, 79, 0.14)
    );
  color: #0da44f;
  transform: rotate(-3deg) scale(1.06);
}

/* =====================================
   Card Content
===================================== */

.why-card h3 {
  position: relative;
  z-index: 2;
  min-height: 58px;
  margin: 0;
  color: #08205d;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
}

.why-card-line {
  position: relative;
  z-index: 2;
  display: block;
  width: 44px;
  height: 3px;
  margin: 17px auto;
  border-radius: 20px;
  background: #0da44f;
  transition: width 0.35s ease;
}

.why-card:hover .why-card-line {
  width: 75px;
}

.why-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #48546a;
  font-size: 15px;
  line-height: 1.75;
}

/* =====================================
   Tablet
===================================== */

@media (max-width: 991px) {
  .why-choose-section {
    padding: 80px 20px;
    background-position: top center;
  }

  .why-choose-heading {
    margin-bottom: 45px;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-card {
    min-height: 325px;
  }
}

/* =====================================
   Mobile
===================================== */

@media (max-width: 650px) {
  .why-choose-section {
    padding: 65px 15px;
    background-image:
      linear-gradient(
        rgba(255, 255, 255, 0.45),
        rgba(255, 255, 255, 0.45)
      ),
      url("assets/images/why-choose-us-bg.png");
    background-position: center top;
  }

  .why-choose-heading {
    margin-bottom: 35px;
  }

  .why-small-title {
    font-size: 11px;
  }

  .why-choose-heading h2 {
    font-size: 36px;
  }

  .why-heading-line {
    margin-top: 17px;
  }

  .why-heading-line span {
    width: 45px;
  }

  .why-choose-heading p {
    font-size: 15px;
    line-height: 1.7;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .why-card {
    min-height: auto;
    padding: 30px 23px;
    border-radius: 16px;
  }

  .why-icon {
    width: 82px;
    height: 82px;
    margin-bottom: 20px;
    font-size: 37px;
  }

  .why-card h3 {
    min-height: auto;
    font-size: 20px;
  }

  .why-card p {
    font-size: 14px;
    line-height: 1.7;
  }
}

/* =====================================
   Small Mobile
===================================== */

@media (max-width: 400px) {
  .why-choose-heading h2 {
    font-size: 31px;
  }

  .why-card {
    padding: 28px 18px;
  }
}