/* =====================
   VARIABLES
===================== */
:root {
  --dark: #020617;
  --blue: #1e3a8a;
  --teal: #2dd4bf;
  --gray: #64748b;
  --light: #f8fafc;

  --brand-blue: #2596be;
  --brand-green: #7fc353;
}

/* =====================
   RESET & BASE
===================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: #0f172a;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

/* =====================
   CONTAINER
===================== */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* =====================
   TYPOGRAPHY
===================== */
h1, h2, h3, h4 {
  margin: 0 0 14px;
  font-weight: 700;
}

h1 span,
h2 span {
  color: var(--brand-green);
}

p {
  margin: 0 0 16px;
  /* color: #475569; */
  color:white;
}

.lead {
  font-size: 17px;
  font-weight: 500;
}

.center {
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

/* =====================
   HEADER
===================== */
.site-header {
  position: sticky;
  top: 0;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  z-index: 1000;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 70px;
}

.brand-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--blue);
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  padding: 0;
  margin: 0;
}

.main-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
}

/* =====================
   HERO
===================== */
.hero {
  position: relative;
  padding: 120px 0;
  color: #ffffff;
}

.hero-bg {
  background: url("../assets/images/head.png") center/cover fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
 background: linear-gradient(135deg, rgba(30, 58, 138, .85), rgb(126 129 143 / 90%));
}

.hero-content {
  position: relative;
  max-width: 900px;
}


.hero h1 {
  font-size: 32px;
  line-height: 1.1;
}

.hero h1 span {
  color: var( --brand-green);
}

/* Typography helpers */
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 12px;
}

.lead {
  font-size: 18px;
  font-weight: 500;
  color: #cbd5f5;
}

/* =====================================================
   CONTACT SECTION
===================================================== */
.section {
  padding: 100px 0;
}

/* Two-column layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

/* Contact info */
.contact-info h2 {
  margin-bottom: 16px;
}

.info-block {
  margin-top: 28px;
}

.info-block h4 {
  margin-bottom: 6px;
  color: var(--blue);
}

.info-block p,
.info-block a {
  color: var(--gray);
}

/* Contact form */
.contact-form {
  background: var(--light);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(2,6,23,.08);
}

.form-note {
  color: var(--gray);
  margin-bottom: 28px;
}

.form-row {
  margin-bottom: 18px;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid #cbd5f5;
  font-family: inherit;
}

button {
  width: 100%;
  padding: 16px;
  background: var(--blue);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

button:hover {
  background: #172554;
}

/* =====================================================
   CTA
===================================================== */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--blue), var(--dark));
  color: #ffffff;
  text-align: center;
}

/* =====================================================
   FOOTER
===================================================== */
.footer {
  background: var(--dark);
  color: #94a3b8;
  padding: 32px 20px;
  text-align: center;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1024px) {
  .split {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero h1 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 16px;
  }

  .main-nav .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
    /* gap: 16px; */
  }

  .hero {
    padding: 100px 0;
  }

  .hero h1 {
    font-size: 32px;
  }

  .contact-form {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .brand-name {
    font-size: 20px;
  }

  .hero h1 {
    font-size: 28px;
  }
}
/* =====================
   VARIABLES
===================== */
:root {
  --dark: #020617;
  --blue: #1e3a8a;
  --teal: #2dd4bf;
  --gray: #64748b;
  --light: #f8fafc;

  --brand-blue: #2596be;
  --brand-green: #7fc353;
}

/* =====================
   RESET & BASE
===================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: #0f172a;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}


/* =====================
   TYPOGRAPHY
===================== */
h1, h2, h3, h4 {
  margin: 0 0 14px;
  font-weight: 700;
}

h1 span,
h2 span {
  color: var(--brand-green);
}

p {
  margin: 0 0 16px;
  /* color: #475569; */
  color:white;
}

.lead {
  font-size: 17px;
  font-weight: 500;
}

.center {
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

/* =====================
   HEADER
===================== */
.site-header {
  position: sticky;
  top: 0;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  z-index: 1000;
}



.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 70px;
}

.brand-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--blue);
}



.main-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
}

/* =====================
   HERO
===================== */
.hero {
  position: relative;
  padding: 120px 0;
  color: #ffffff;
}

.hero-bg {
  background: url("../assets/images/head.png") center/cover fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
 background: linear-gradient(135deg, rgba(30, 58, 138, .85), rgb(126 129 143 / 90%));
}

.hero-content {
  position: relative;
  max-width: 900px;
}
