
/* =========
   Design Tokens
   ========= */
:root {
  --color-bg: #f5f7fb;
  --color-bg-alt: #ffffff;
  --color-surface: #ffffff;
  --color-border: #e2e6f0;

  --color-primary: #1f4f9c;      /* Deep, trustworthy blue */
  --color-primary-soft: #e5edf9; /* Soft background accent */
  --color-accent: #1ea99a;       /* Muted teal for subtle emphasis */

  --color-text: #111827;
  --color-text-muted: #6b7280;
  --color-text-soft: #9ca3af;

  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.06);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;

  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI",
    sans-serif;

  --transition-fast: 150ms ease-out;
  --transition-med: 220ms ease-out;

  --max-width: 1160px;
}

/* =========
   Global Reset & Base
   ========= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0px;
  padding: 0px;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: radial-gradient(circle at top left, #eef2ff 0, #f5f7fb 38%, #f9fafb 100%);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: calc(var(--max-width) + 50px);
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  /* transition: color var(--transition-fast); */
}

a:hover,
a:focus-visible {
  color: var(--color-accent);
}

/* =========
   Layout Helpers
   ========= */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4.5rem 0;
}

.section--tight {
  padding: 2.5rem 0;
}

.section--alt {
  background-color: var(--color-bg-alt);
}

/* =========
   Header & Navigation
   ========= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #333;
  /* backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 230, 240, 0.7); */
  color: white
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  /* letter-spacing: 0.05em; */
  /* text-transform: uppercase; */
  font-size: 1.8rem;
  color: var(--color-text); 
}

.logo a:hover {
color: #fff;
}

.logo-mark {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(31, 79, 156, 0.15);
  background: radial-gradient(circle at 20% 0, #4f46e5 0, #1f4f9c 45%, #020617 100%);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  font-size: 0.92rem;
}

.nav a {
  position: relative;
  color: var(--color-text-muted);
  font-weight: 500;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  /* background: linear-gradient(90deg, #1f4f9c, #1ea99a);
  transition: width var(--transition-med); */
}

.nav a:hover {
  color: white;
}

.nav a:hover::after {
  width: 100%;
}

/* CTA in nav */
.nav-cta {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(31, 79, 156, 0.18);
  background: linear-gradient(135deg, #1f4f9c, #1e3a8a);
  color: #f9fafb !important;
  font-size: 0.9rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.18);
}

.nav-cta:hover {
  filter: brightness(1.05);
}

/* =========
   Hero
   ========= */
/* .hero {
  padding: 4.5rem 0 4rem;
} */

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-text-soft);
  margin-bottom: 0.8rem;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0 0 1.1rem;
  letter-spacing: -0.04em;
}

.hero-title span {
  background: linear-gradient(135deg, #1f4f9c, #1ea99a);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 36rem;
  margin-bottom: 1.8rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: var(--color-text-soft);
}

/* =========
   Buttons
   ========= */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition-med),
    border-color var(--transition-med),
    color var(--transition-med),
    box-shadow var(--transition-med),
    transform var(--transition-fast);
  text-decoration: none;
}

.button-primary {
  background: linear-gradient(135deg, #1f4f9c, #1e3a8a);
  color: #f9fafb;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.22);
}

/* .button-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.25);
} */

/* .button-outline {
  background: rgba(255, 255, 255, 0.7);
  color: var(--color-text);
  border-color: rgba(148, 163, 184, 0.45);
}

.button-outline:hover {
  background: #ffffff;
  border-color: rgba(31, 79, 156, 0.65);
}

.button-ghost {
  background: transparent;
  color: var(--color-text-muted);
  border-color: transparent;
}

.button-ghost:hover {
  color: var(--color-text);
  background-color: rgba(226, 232, 240, 0.5);
} */

/* =========
   Typography Blocks
   ========= */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.4rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 0.9rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.lead {
  font-size: 1.02rem;
  color: var(--color-text-muted);
  max-width: 40rem;
}

/* Section header */
.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 2.2rem;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.23em;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-text-soft);
}

.section-title {
  font-size: 1.7rem;
}

.section-subtitle {
  max-width: 36rem;
}

/* =========
   Cards & Grids
   ========= */
.grid {
  display: grid;
  gap: 1.6rem;
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid rgba(226, 230, 240, 0.9);
  padding: 1.6rem 1.7rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(31, 79, 156, 0.09), transparent 55%);
  opacity: 0;
  transition: opacity var(--transition-med);
  pointer-events: none;
}

.card:hover::before {
  opacity: 1;
}

.card-title {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.card-meta {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-text-soft);
  margin-bottom: 0.6rem;
}

.card-body {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* Highlighted card, e.g. flagship offering */
.card--highlight {
  border-color: rgba(31, 79, 156, 0.4);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
}

/* =========
   Data / Credibility Blocks
   ========= */
.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.metric {
  min-width: 120px;
}

.metric-value {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-primary);
}

.metric-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-text-soft);
}

/* =========
   Tables (for deal summaries, case studies, etc.)
   ========= */
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.table th,
.table td {
  padding: 0.75rem 0.9rem;
  text-align: left;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.table th {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  background: #f8fafc;
}

.table-striped tr:nth-child(even) td {
  background-color: #f9fafb;
}

/* =========
   Forms (Contact / DD request)
   ========= */
.form {
  max-width: 520px;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-row > * {
  flex: 1;
}

.label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-text-soft);
}

.input,
.textarea,
/* .select {
  width: 100%;
  padding: 0.75rem 0.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(148, 163, 184, 0.7);
  font: inherit;
  background-color: #ffffff;
  color: var(--color-text);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast),
    background-color var(--transition-fast);
} */

.input:focus,
.textarea:focus,
.select:focus {
  outline: none;
  border-color: rgba(31, 79, 156, 0.85);
  box-shadow: 0 0 0 1px rgba(31, 79, 156, 0.3);
}

.textarea {
  min-height: 140px;
  resize: vertical;
}

.coming-soon {
    height: 50px;
    background: red; 
    max-width: 100%;
}

/* =========
   Footer
   ========= */
.footer {
    height: 50px;
    background: #333; 
    margin-top: 50px;
    max-width: 100%;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color:white;
  }

.footer a {
  color: white;
}


.site-footer {
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  background-color: #f9fafb;
  margin-top: 3rem;
}

.site-footer-inner {
  padding: 2rem 1.5rem 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--color-text-soft);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.footer-links a {
  color: white;
}

.footer-links a:hover {
  color: white;
}

/* =========
   Responsive
   ========= */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  /* .hero {
    padding-top: 3rem;
  } */

  .grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-header-inner {
    padding-inline: 1.2rem;
  }
}

@media (max-width: 640px) {
  .site-header-inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .nav {
    display: none; /* You can replace this with a mobile menu later */
  }

  /* .hero {
    padding: 2.8rem 0 2.5rem;
  } */

  .section {
    padding: 3rem 0;
  }

  .grid--3,
  .grid--2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-row {
    flex-direction: column;
  }

  .site-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}





header {
/*background: #ffffff;*/
/* border-bottom: 2px solid #ccc; */
margin: 0 0 0 0;
}

.nav {
max-width: 1200px;
margin: 0 0 50px 0 auto;
padding: 0rem;
display: flex;
align-items: center;
justify-content: space-between;
}

.nav a {
text-decoration: none;
color: #ffffff;
font-weight: 500;
}

.nav-links {
list-style: none;
display: flex;
gap: 1.5rem;
padding-right: 20px;
}

.nav-links a:hover {
color: #fff;
}

.main-content {
    margin: 0px 20px 20px 20px;
    max-width: var(--max-width);
}

.header-logo {
   padding: 10px 10px 10px 20px;
}
