@import"https://www.nerdfonts.com/assets/css/webfont.css";@import"https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap";/**

/* ---------- Theme Tokens (Light Mode Only) ---------- */
:root {
  --bg: #ffffff;
  --text: #0B1220;
  --muted: #475467;

  --primary: #0B3B8F;
  --primary-2: #0A2C6B;
  --accent: #16A34A;

  --soft: #F5F7FB;
  --card: rgba(255,255,255,0.88);

  --border: rgba(16,24,40,0.12);
  --shadow: 0 18px 40px rgba(16,24,40,0.12);
  --shadow-2: 0 10px 24px rgba(16,24,40,0.10);

  --radius: 20px;
  --max: 1300px;

  --input-bg: rgba(255,255,255,0.95);
  --input-border: rgba(16,24,40,0.18);
  --focus-ring: rgba(11,59,143,0.14);
}



/* ---------- Global ---------- */
* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

/* ---------- Global ---------- */
*{ box-sizing: border-box; }

html, body{
  margin: 0;
  padding: 0;
  html, body{
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

a{ color: inherit; text-decoration: none; }
p{ color: var(--muted); line-height: 1.65; }

h1,h2,h3{
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

/* ---------- Layout ---------- */
.container{
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

/* ---------- Navbar ---------- */
.nav{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(16,24,40,0.08);
}

html[data-theme="dark"] .nav,
@media (prefers-color-scheme: dark){
  html:not([data-theme]) .nav{
    background: rgba(11,18,32,0.78);
    border-bottom: 1px solid rgba(255,255,255,0.10);
  }
}

.nav-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 12px;
}

.brand{
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-row{
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.brand-text{
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand strong{
  font-size: 16px;
  letter-spacing: 0.02em;
}

.brand span{
  font-size: 12px;
  color: var(--muted);
}

.tagline{
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.2;
}

.logo{
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav-links{
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a{
  font-size: 14px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 10px;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-links a:hover{
  background: rgba(11,59,143,0.08);
  color: var(--text);
}

.nav-links a.active{
  color: var(--text);
  font-weight: 600;
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  font-size: 14px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.btn.primary{
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 10px 18px rgba(11,59,143,0.18);
}

.btn.primary:hover{
  background: var(--primary-2);
  border-color: var(--primary-2);
  transform: translateY(-1px);
}

.btn.ghost:hover{
  background: var(--soft);
}

.btn.full{ width: 100%; }

/* ---------- Hero ---------- */
.hero{
  padding: 70px 0 36px;
  position: relative;
  overflow: hidden;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 400px at 10% 10%, rgba(11,59,143,0.18), transparent 60%),
    radial-gradient(700px 350px at 90% 0%, rgba(22,163,74,0.14), transparent 55%),
    radial-gradient(650px 400px at 70% 90%, rgba(11,59,143,0.10), transparent 55%);
  pointer-events:none;
}

.hero::after{
  content:"";
  position:absolute;
  right:-120px;
  top:-140px;
  width:420px;
  height:420px;
  border-radius: 60px;
  transform: rotate(12deg);
  background: linear-gradient(135deg, rgba(11,59,143,0.92), rgba(10,44,107,0.92));
  opacity: 0.14;
  pointer-events:none;
}

.kicker{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(16,24,40,0.10);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
}

.hero-grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: start;
}

.hero h1{
  font-size: 42px;
  line-height: 1.08;
}

.hero p{
  font-size: 18px;
  max-width: 56ch;
}

.hero-actions{
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

/* Hero media */
.hero-image-wrap{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(16,24,40,0.10);
  box-shadow: var(--shadow);
  background: #fff;
}

.hero-image{
  width: 100%;
  height: 310px;
  object-fit: cover;
  display: block;
}

/* Why card */
.why-card{
  background: var(--card);
  border: 1px solid rgba(16,24,40,0.10);
  border-radius: 18px;
  box-shadow: var(--shadow-2);
  padding: 16px;
}

.why-card h3{
  margin: 0 0 10px;
  font-size: 18px;
}

.why-card ul{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

/* ---------- Sections ---------- */
.section{ padding: 28px 0; }

.section.alt{
  background: var(--soft);
  border-top: 1px solid rgba(16,24,40,0.06);
  border-bottom: 1px solid rgba(16,24,40,0.06);
}

.section-head{
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.section-head h2{ font-size: 22px; }

.section-head p{
  margin: 0;
  max-width: 60ch;
}

/* ---------- Grid + Cards ---------- */
.grid{
  display: grid;
  gap: 14px;
}

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

.card{
  background: var(--card);
  border: 1px solid rgba(16,24,40,0.10);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-2);
  backdrop-filter: blur(10px);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card h3{ font-size: 16px; margin-bottom: 8px; }

.meta{
  font-size: 12px;
  color: var(--muted);
}

.badges{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.badge{
  font-size: 12px;
  border: 1px solid var(--border);
  background: var(--soft);
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--muted);
}

/* ---------- CTA ---------- */
.cta{
  border: 1px solid var(--border);
  background: var(--soft);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.cta h2{ font-size: 20px; }
.cta p{ margin: 0; }

/* ---------- Footer ---------- */
.footer{
  border-top: 1px solid var(--border);
  padding: 26px 0;
  margin-top: 24px;
}

.footer-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}

.footer a{ color: var(--muted); }
.footer a:hover{ color: var(--text); }

/* ---------- Forms ---------- */
.form{
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.field{
  display: grid;
  gap: 6px;
}

label{
  font-size: 13px;
  color: var(--muted);
}

input, textarea, select{
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--input-border);
  font-size: 14px;
  outline: none;
  background: var(--input-bg);
  color: var(--text);
}

textarea{
  min-height: 110px;
  resize: vertical;
}

input:focus, textarea:focus, select:focus{
  border-color: rgba(11,59,143,0.7);
  box-shadow: 0 0 0 4px var(--focus-ring);
}

.small{
  font-size: 12px;
  color: var(--muted);
}

/* ---------- Banners ---------- */
.page-banner{
  margin-top: 18px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(16,24,40,0.10);
  box-shadow: var(--shadow-2);
  background: #fff;
}

.page-banner-img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* ---------- Contact Page Layout ---------- */
.contact-grid{
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  align-items: start;
}

.contact-side{
  display: grid;
  gap: 14px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .grid.cols-3{ grid-template-columns: 1fr; }
  .grid.cols-2{ grid-template-columns: 1fr; }
  .hero h1{ font-size: 34px; }
  .hero-image{ height: 220px; }
  .contact-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 768px){
  .hero::after{ display: none; }
  .hero{ padding-top: 34px; }

  .nav-inner{
    flex-wrap: wrap;
    gap: 10px;
  }

  .brand{
    flex: 1 1 100%;
  }

  .brand-text strong{
    font-size: 14px;
  }

  .brand-text span{
    display: none; /* keeps mobile clean */
  }

  .tagline{
    font-size: 11px;
    max-width: 38ch;
  }

  .nav-links{
    flex: 1 1 auto;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .nav-links a{
    padding: 6px 8px;
    font-size: 13px;
  }

  .nav .btn.primary{
    margin-left: auto;
    padding: 9px 12px;
    font-size: 13px;
  }
}

@media (max-width: 600px){
  .container{
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* Theme toggle button */
.theme-toggle{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(16,24,40,0.12);
  background: rgba(255,255,255,0.7);
  color: var(--text);
  cursor: pointer;
  font-size: 13px;
  backdrop-filter: blur(12px);
}

.theme-toggle:hover{
  background: rgba(11,59,143,0.08);
}

.toggle-icon{
  font-size: 14px;
}

.toggle-text{
  font-weight: 600;
}

/* Dark mode toggle look */
html[data-theme="dark"] .theme-toggle{
  background: rgba(16,24,40,0.75);
  border: 1px solid rgba(255,255,255,0.12);
}

/* Full-bleed hero image on the right */
.hero-media{
  width: 100%;
  height: 360px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(16,24,40,0.10);
  box-shadow: var(--shadow);
  background: #fff;
}

.hero-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-left{
  padding-right: 4px;
}

.hero-left{
  padding-left: 100px;
}


.hero-actions{
  margin-bottom: 16px;
}

.hero-why{
  max-width: 520px;
}

@media (max-width: 900px){
  .hero-left{
    padding-right: 100px;
  }

  .hero-why{
    max-width: 100%;
  }
}


body{
  'Poppins', sans-serif;
}

h1, h2, h3{
  font-family: Inter, system-ui, Arial, sans-serif;
}
strong{
  font-weight: 600;
}

h1, h2, h3{
  letter-spacing: -0.015em;
}

h1{
  font-weight: 700;
  line-height: 1.12;
}

h2{
  font-weight: 600;
}

p{
  font-weight: 400;
  line-height: 1.7;
}

.nav-links a,
.btn{
  font-weight: 500;
}


/* Creates space below the navbar on the thank you page */
.extra-space {
  padding-top: 80px; /* Adjust this number to increase/decrease the gap */
  padding-bottom: 80px;
}

/* Ensure the heading is centered */
.card h1 {
  text-align: center;
  margin-bottom: 20px;
}