/* =========================
   MEP Website Styles (Multi‑page)
   Primary:   #1BA3C6
   Secondary: #BFC5C9
   Background:#F4F5F7
========================= */

:root{
  --primary:#1BA3C6;
  --secondary:#BFC5C9;
  --bg:#F4F5F7;
  --text:#0A1A34;
  --muted:#42526E;
  --white:#ffffff;
  --border: rgba(10,26,52,0.12);
  --shadow: 0 8px 24px rgba(10,26,52,0.10);
  --radius: 10px;
}

*{ box-sizing:border-box; }

html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height:1.55;
}

img{
  max-width: 100%;
  height: auto;
  display: block;
}

.logo-slot{
  max-width: 100%;
  height: auto;
  display:block;
}

p{
  margin: 0 0 1.25rem 0;
}

h1, h2, h3, h4, h5, h6{
  margin: 0 0 0.9rem 0;
}

p + p{
  margin-top: 0.65rem;
}

a{ color:inherit; }

.container{
  width:92%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ================= HEADER ================= */
.site-header{
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top:0;
  z-index:1000;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:80px;   /* ✅ fixes header height properly */
  padding:0 24px; /* ✅ removes vertical gap entirely */
  gap:18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  margin-left: 0;
}

.logo-slot{
  max-width: 288px;
  height: auto;
  display:block;
}

/* If you have a logo image, use this class:
.logo-img { height:56px; width:auto; display:block; }
*/

.nav{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}

@media (min-width: 921px){
  .nav{
    position: relative;
    left: -3cm;
  }
}.mobile-menu-toggle {
  display: none;   /* ✅ hide on desktop */
}

.nav a{
  text-decoration:none;
  font-weight:800;
  color: var(--text);
  padding:8px 10px;
  border-radius:8px;
  border: 1px solid transparent;
}

.nav a:hover{
  background: rgba(27,163,198,0.10);
  border-color: rgba(27,163,198,0.15);
}

.nav a.active{
  background: rgba(27,163,198,0.16);
  border-color: rgba(27,163,198,0.22);
}

@media (max-width: 920px){
  .header-inner{ flex-direction:column; align-items:flex-start; }
  .nav{ width:100%; }
}

@media (min-width: 921px){
  .site-header .container{
    width: 100%;
    max-width: none;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .brand{
    margin-left: 0;
    padding-left: 18px;
  }
}



/* ================= HERO ================= */

.hero {
  position: relative;
  height: 100vh;

  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;

  background-repeat: no-repeat;
  background-size: cover;
  background-position: 44% center;
}

.home-page .hero {
  background-image: url("assets/images/F35 assembly hanger.png");
  background-color: #111;
}



.home-page .hero::before {
  background: radial-gradient(
    circle at center,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.35) 50%,
    rgba(0,0,0,0.2) 100%
  );
}

/* Content */
.hero-inner {
  position: relative;
  z-index: 2;

  max-width: 900px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.08) 40%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* Paragraph */
.hero p.lead {
  max-width: 680px;
  margin: 0 auto;
}

/* CTAs */
.hero-ctas {
  display: flex;
  gap: 28px;             /* improved spacing */
  margin-top: 28px;
  justify-content: center;
  flex-wrap: wrap;
}

.intervention-page .hero {
  height: 520px;
  align-items: center;
  padding-top: 0;
  background-position: right center;
}

.badge{
  display:inline-block;
  padding: 12px 21px;
  border-radius: 999px;
  background: #1BA3C6;
  border: 1px solid #1BA3C6;
  color:#fff;
  font-weight:900;
  font-size: 18px;
  margin-bottom: 10px;
}

.hero h1{
  margin: 0 0 32px 0;
  font-size: 3.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height:1.1;
  color: #fff;
  text-shadow:
    0 4px 20px rgba(0,0,0,0.6),
    0 0 2px rgba(0,0,0,0.8);
  white-space: normal;
  overflow-wrap: break-word;
  max-width: 900px;
}

.hero p.lead{
  margin: 0 0 32px 0;
  font-size:24px;
  line-height:1.6;
  letter-spacing: 0.3px;
  font-weight: 600;
  color: rgba(255,255,255,1);
  max-width: 680px;
  text-shadow: 0 3px 18px rgba(0,0,0,0.76), 0 1px 6px rgba(0,0,0,0.32);
  background: transparent;
}

.hero-ctas {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero .btn-primary{
  background:#fff;
  color: var(--text);
  box-shadow: 0 6px 24px rgba(0,0,0,0.16);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.hero .btn-primary:hover{
  filter: brightness(0.96);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
}

.btn{
  display:inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration:none;
  font-weight:900;
  border: 2px solid transparent;
}

.btn-primary{
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 6px 22px rgba(10,26,52,0.24);
  border-color: rgba(255,255,255,0.14);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.btn-primary:hover{
  filter: brightness(1.04);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(10,26,52,0.22);
}

@media (max-width: 960px){
  .hero h1{ font-size: 46px; }
}

.section:first-of-type {
  margin-top: 0;
}

/* ================= SECTIONS ================= */
.section{
  padding: 88px 0;
  background: linear-gradient(180deg, #f8f9fb 0%, #f5f8fb 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 1px 3px rgba(10,26,52,0.03);
}


.card {
  background: #ffffff; /* pure white */
  border: 1px solid rgba(10,26,52,0.08);
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 14px 40px rgba(10,26,52,0.10);
}


.card ul li {
  margin-bottom: 10px;
}

.image-slot--media img {
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card:hover {
  transform: translateY(-3px);
  transition: all 0.25s ease;
}

.section .intro {
  font-size: 18px;
  font-weight: 500;
  color: #1a2a44;
}


.section.alt {
  background: #e6ebf1;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

/* Add this here */

.section-dark {
  background: #16263a;
}


.section-dark h2 {
  color: #ffffff;
}

.section-dark h3 {
  color: #ffffff;
}


section-dark p {
  color: rgba(255,255,255,0.9);
}

.section-dark .card {
  background: rgba(255,255,255,0.12); /* stronger contrast */
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: none;
}

.section-dark li {
  color: rgba(255,255,255,0.85);
}

section.alt {
  background: #eef2f6; /* subtle cool grey */
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}


.contact-page .split{
  gap: 20px;
}

.contact-page .contact-form{
  gap: 10px;
}

.contact-page .contact-form .form-row{
  gap: 8px;
}

.contact-page .contact-form .form-group{
  gap: 6px;
}

.contact-page .contact-form .form-note{
  margin: 4px 0 0;
}

.contact-page .contact-form,
.contact-page .image-slot--media{
  min-height: auto;
}

.section h2{
  margin:0 0 32px 0;
  font-size: 30px;
  font-weight: 700;
}

..contact-page .section h2{
  margin-bottom: 18px;
}

.intro{
  margin:0 0 36px 0;
  color: var(--muted);
  max-width: 80ch;
}

.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:32px;
}

.split{
  display:grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap:40px;
  align-items: start;
}
@media (max-width: 960px){
  .split{ grid-template-columns: 1fr; }
}

.card {
  max-width: 520px;
  background: #ffffff;
  border: 1px solid rgba(10,26,52,0.08);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(10,26,52,0.12);
}

.card h3{
  margin:0 0 18px 0;
  font-size:18px;
}

.card p {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
  color: #1a2a44;
}

.card p:last-child{
  margin-bottom: 0;
}

ard p {
  position: relative;
  padding-left: 18px;
}

.card p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 80%;
  background: #2d6cdf; /* your brand blue */
  border-radius: 2px;
}

ul, ol{ margin: 10px 0 0 18px; }

.image-slot{
  width:100%;
  min-height: 240px;
  border-radius: var(--radius);
  border: 1px dashed var(--secondary);
  background: #fafafa;
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--muted);
  text-align:center;
  padding:16px;
}

.image-slot--media{
  border: none;
  background: transparent;
  padding: 0;
  overflow: hidden;
  min-height: 560px;
  align-self: stretch;
}

.image-slot--media img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border: none;
  border-radius: var(--radius);
}

/* ================= CTA BAND ================= */
.cta-band{
  background: linear-gradient(135deg, rgba(27,163,198,0.24), rgba(235,242,247,1));
  border-top: 1px solid rgba(10,26,52,0.08);
  border-bottom: 1px solid rgba(10,26,52,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.75), 0 2px 10px rgba(10,26,52,0.04);
}

.cta-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding: 40px 0;
  flex-wrap:wrap;
}

.cta-inner strong{ font-size: 16px; }
.cta-inner span{ color: var(--muted); }

/* ================= FORMS ================= */
form{
  display:grid;
  gap:24px;
  max-width: 680px;
}

.contact-form{
  display:grid;
  gap:24px;
  align-content: stretch;
}

.contact-form .form-row{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:20px;
  align-items: start;
}

.contact-form .form-group{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.contact-form .form-group.full-width{
  grid-column: 1 / -1;
}

.contact-form button{
  grid-column: 1 / -1;
  width: 100%;
  min-height: 48px;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 10px;
  border: none;
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(10,26,52,0.20);
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
}

.contact-form button:hover{
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(10,26,52,0.22);
}

input, textarea, select{
  width:100%;
  padding: 14px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font: inherit;
  background: var(--white);
}

input{
  min-height: 42px;
}

textarea{ min-height: 120px; resize: vertical; }

.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:20px;
}
@media (max-width: 720px){
  .form-row{ grid-template-columns: 1fr; }
}

.small{
  font-size: 12px;
  color: var(--muted);
}

/* ================= FOOTER ================= */
.site-footer{
  background: var(--text);
  color: var(--white);
  padding: 40px 0;
  margin-top: 20px;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:14px;
  flex-wrap:wrap;
}

.footer-inner a{
  color: var(--white);
  text-decoration:none;
  opacity:0.92;
}

.footer-inner a:hover{ text-decoration:underline; }
.footer-tag{ opacity:0.92; font-weight:800; }


/* ============================
   INTERVENTION HERO OVERRIDE
============================ */

.intervention-page .hero-intervention {
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  position: relative;
}

/* Overlay for readability */
.intervention-page .hero-intervention::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 26, 52, 0.55);
}

/* Ensure text sits above overlay */
.intervention-page .hero-intervention .hero-inner {
  position: relative;
  z-index: 2;
}

/* ============================
   INTERVENTION HERO POLISH
============================ */

.intervention-page .hero h1 {
  line-height: 1.1;
  letter-spacing: -0.5px;
  text-shadow: 0 3px 12px rgba(0,0,0,0.5);
}

.intervention-page .hero .lead {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}

.intervention-page .hero {
  height: 480px; /* slightly tighter hero */
}
/* ============================
   WHO WE WORK WITH HERO
============================ */

.who-page .hero-who {
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* Overlay for readability */
.who-page .hero-who::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 26, 52, 0.55);
}

/* Ensure content sits above overlay */
.who-page .hero-who .hero-inner {
  position: relative;
  z-index: 2;
}

/* ============================
   WHO PAGE PANEL STYLING
============================ */

.who-page .card-emphasis {
  background: #ffffff;
  border: 1px solid rgba(10,26,52,0.08);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(10,26,52,0.12);
}

.who-page .card-emphasis ul {
  list-style: none;
  padding-left: 0;
}

.who-page .card-emphasis ul li {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.5;
  position: relative;
  padding-left: 18px;
}

.who-page .card-emphasis ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  background: #2d6cdf;
  border-radius: 50%;
}

   HOW WE DELIVER HERO
============================ */

.delivery-page .hero-delivery {
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  position: relative;
}

/* overlay */
.delivery-page .hero-delivery::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 26, 52, 0.55);
}

/* text above overlay */
.delivery-page .hero-delivery .hero-inner {
  position: relative;
  z-index: 2;
}
``
/* ============================
   CONTACT PAGE CLEAN LAYOUT
============================ */

.hero-contact {
  background: #f4f6f9;
  padding: 60px 0;
  text-align: center;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 6px;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.form-note {
  margin-top: 15px;
  font-size: 13px;
  color: #666;
}

/* mobile */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
}

/* CONTACT PAGE CLEAN HEADER */

.contact-intro {
  padding: 40px 0 20px;
}

.contact-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
/* ============================
   CONTACT PAGE COMPACT LAYOUT
============================ */

/* Reduce overall section spacing */
.contact-page .section {
  padding: 20px 0;
}

/* Tight intro block */
.contact-intro {
  padding: 20px 0 10px;
}

.contact-container h1 {
  margin-bottom: 8px;
}

.contact-container .lead {
  margin-bottom: 10px;
  font-size: 16px;
}

/* Form width + centering */
.contact-form {
  max-width: 700px;
  margin: 10px auto 0;
}

/* Reduce row spacing */
.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}

/* Compact form fields */
.form-group label {
  margin-bottom: 4px;
  font-size: 13px;
}

.form-group input,
.form-group textarea {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
}

/* Reduce textarea height slightly */
.form-group textarea {
  rows: 5;
}

/* Button spacing */
.contact-form .btn {
  margin-top: 10px;
  padding: 12px;
}

/* Note spacing */
.form-note {
  margin-top: 8px;
  font-size: 13px;
  text-align: center;
}

/* Mobile */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
}
/* ============================
   GLOBAL POLISH SYSTEM
============================ */

/* Improve typography rhythm */
h1, h2, h3 {
  line-height: 1.15;
  letter-spacing: -0.3px;
}

p {
  line-height: 1.6;
}

/* Consistent section spacing */
.section {
  padding: 60px 0;
}

.section.alt {
  background: #f4f6f9;
}

/* Container width consistency */
.container {
  max-width: 1100px;
}

/* ============================
   HERO SYSTEM (CONSISTENT)
============================ */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
}


/* ============================
   TEXT HIERARCHY
============================ */

h1 {
  font-size: 44px;
  margin-bottom: 14px;
}

h2 {
  font-size: 28px;
  margin-bottom: 18px;
}

.lead {
  font-size: 18px;
}

/* ============================
   CARD SYSTEM (UPGRADED)
============================ */

.card {
  background: #ffffff;
  border: 1px solid rgba(10,26,52,0.08);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 14px 32px rgba(10,26,52,0.08);
}

/* Improve lists */
.card ul {
  list-style: none;
  padding-left: 0;
}

.card ul li {
  margin-bottom: 14px;
  padding-left: 18px;
  position: relative;
}

.card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background: #2d6cdf;
  border-radius: 50%;
}

/* ============================
   SPLIT LAYOUT REFINEMENT
============================ */

.split {
  align-items: center;
  gap: 40px;
}

.image-slot--media {
  overflow: hidden;
  border-radius: 12px;
}

.image-slot--media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================
   NAV CLEANUP
============================ */

.nav a {
  margin-left: 20px;
  font-weight: 500;
}

.nav a.active {
  color: #2d6cdf;
}

/* ============================
   BUTTON POLISH
============================ */

.btn {
  border-radius: 8px;
  font-weight: 500;
  padding: 12px 18px;
}

.btn-primary {
  background: #2d6cdf;
  border: none;
  color: white;
}

/* ============================
   TRANSITION SMOOTHING
============================ */

.section + .section {
  margin-top: -20px;
}

/* ============================
   HOMEPAGE HERO FIXES (SAFE PATCH)
============================ */

/* 1. Remove gap between header & hero */
.hero {
  margin-top: 0 !important;
}

/* 2. Ensure hero fills and aligns properly */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 3. Lift hero content slightly */
.hero-inner {
  transform: translateY(-40px);
}

/* 4. Strengthen CTA buttons */
.btn {
  padding: 14px 22px !important;
  border-radius: 8px !important;
  font-weight: 500;
  text-decoration: none;
}

/* Primary CTA */
.btn-primary {
  background: #2d6cdf !important;
  color: #fff !important;
  border: none !important;
}

.btn-primary:hover {
  background: #1f52b5 !important;
}

/* Secondary CTA */
.btn-secondary {
  background: #ffffff !important;
  color: #0a1a34 !important;
  border: none !important;
}

.btn-secondary:hover {
  background: #f4f4f4 !important;
}

/* 5. Remove nav pill styling safely */
.nav a.active {
  background: none !important;
  border-radius: 0 !important;
  border-bottom: 2px solid #2d6cdf;
}
/* ============================
   FINAL HERO + NAV POLISH
============================ */

/* --- HERO POSITIONING (true centre) --- */
.hero {
  margin-top: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Fine tune vertical balance */
.hero-inner {
  transform: translateY(-60px);  /* was -40 → now properly centred */
}

/* Remove header seam completely */
.site-header {
  border-bottom: none !important;
}

/* --- NAV FINAL CLEANUP --- */
.nav a {
  background: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

/* active = understated underline */
.nav a.active {
  border-bottom: 2px solid #2d6cdf;
  color: #0a1a34;
}

/* --- CTA BUTTONS (make them pop) --- */
.btn {
  padding: 14px 24px !important;
  border-radius: 8px !important;
  font-weight: 500;
  margin: 10px 8px 0;
}

/* Primary (dominant) */
.btn-primary {
  background: #2d6cdf !important;
  color: #fff !important;
  box-shadow: 0 6px 18px rgba(45,108,223,0.25);
}

.btn-primary:hover {
  background: #1f52b5 !important;
  transform: translateY(-1px);
}

/* Secondary (clearly secondary now) */
.btn-secondary {
  background: rgba(255,255,255,0.95) !important;
  color: #0a1a34 !important;
  border: 1px solid rgba(0,0,0,0.08);
}

.btn-secondary:hover {
  background: #ffffff !important;
}

/* Improve button spacing */
.hero .btn + .btn {
  margin-left: 12px;
}

/* --- HERO TEXT CLEANUP --- */

.hero h1 {
  text-shadow: 0 8px 28px rgba(0,0,0,0.75);
}

.hero .lead {
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
/* ============================
   NAV FINAL FIX (REMOVE BOX)
============================ */

.nav a {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

/* Keep hover subtle */
.nav a:hover {
  border-bottom: 2px solid #2d6cdf;
}

/* Active = underline only (no box) */
.nav a.active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  border-bottom: 2px solid #2d6cdf;
}
/* ============================
   CTA CONSISTENT SYSTEM
============================ */

/* Base button (same for both) */
.btn {
  padding: 14px 26px !important;
  border-radius: 8px !important;
  font-weight: 500;
  text-decoration: none;
  margin: 10px 8px 0;
  display: inline-block;
}

/* Primary CTA */
.btn-primary {
  background: #2d6cdf !important;
  color: #fff !important;
  border: 1px solid #2d6cdf !important;
}

.btn-primary:hover {
  background: #1f52b5 !important;
}

/* Secondary CTA — now SAME STYLE FAMILY */
.btn-secondary {
  background: transparent !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.7) !important;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.15) !important;
}
/* ============================
   FINAL NAV / HERO / CTA FIX
============================ */

/* --- NAV: make it stronger and more professional --- */
.nav a {
  font-size: 15px;
  font-weight: 600 !important;
  letter-spacing: 0.2px;
 }

/* Subtle hover, not weak */
.nav a:hover {
  color: #2d6cdf !important;
  border-bottom: 2px solid #2d6cdf;
}

/* Active clean underline */
.nav a.active {
  border-bottom: 2px solid #2d6cdf;
}

/* --- REMOVE HEADER GAP COMPLETELY --- */
body {
  margin: 0;
}

.site-header {
  border-bottom: none !important;
  margin-bottom: 0 !important;
}

.hero {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* --- FIX HERO POSITIONING (final tweak) --- */
.hero-inner {
  transform: translateY(-50px); /* balanced adjustment */
}

/* --- CTA BUTTON SYSTEM (CONSISTENT + PROFESSIONAL) --- */

/* Base button (shared look) */
.btn {
  padding: 14px 26px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  text-decoration: none;
  margin: 10px 10px 0;
  display: inline-block;
}

/* BOTH buttons now same family */
.btn-primary,
.btn-secondary {
  background: #2d6cdf !important;
  color: #ffffff !important;
  border: 1px solid #2d6cdf !important;
}

/* Secondary = subtle variation ONLY */
.btn-secondary {
  opacity: 0.85;
}

/* Hover behaviour */
.btn-primary:hover,
.btn-secondary:hover {
  background: #1f52b5 !important;
  opacity: 1;
}
/* ============================
   HARD OVERRIDE – NAV / HERO / CTA FINAL
============================ */

/* ---------- NAV (make it visible and strong) ---------- */
.nav a {
  font-size: 16px !important;
  font-weight: 600 !important;
  letter-spacing: 0.3px !important;
}

/* remove ALL residual button/pill styling */
.nav a,
.nav a.active {
  background: none !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

/* clean underline behaviour */
.nav a:hover,
.nav a.active {
  border-bottom: 2px solid #2d6cdf !important;
}

/* ---------- REMOVE HEADER → HERO GAP ---------- */

/* kill ANY margin collapse or spacing */
body,
.site-header,
.hero {
  margin: 0 !important;
  padding: 0 !important;
}

/* remove lingering header border RESPONSIBLY */
.site-header {
  border-bottom: none !important;
}

/* ensure hero sticks directly under header */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* ---------- HERO POSITION (correct vertical centre) ---------- */
.hero-inner {
  transform: translateY(-55px) !important;
}

/* ---------- CTA BUTTONS (FORCE SAME SYSTEM) ---------- */

/* make BOTH buttons identical foundation */
.btn,
.btn-primary,
.btn-secondary {
  background: #2d6cdf !important;
  color: #ffffff !important;
  border: 1px solid #2d6cdf !important;
  padding: 14px 26px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  display: inline-block !important;
}

/* secondary = ONLY subtle difference (not colour change) */
.btn-secondary {
  opacity: 0.9 !important;
}

/* hover */
.btn-primary:hover,
.btn-secondary:hover {
  background: #1f52b5 !important;
  opacity: 1 !important;
}
/* ============================
   FORCE REMOVE HEADER -> HERO GAP
============================ */

/* Ensure absolutely no spacing anywhere */
html, body {
  margin: 0 !important;
  padding: 0 !important;
}

/* Remove header spacing completely */
.site-header {
  margin: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
  position: relative;
  z-index: 10;
}

/* 👇 THIS is the key fix */
.hero {
  margin-top: -1px !important;
  position: relative;
}
/* ============================
   FINAL HEADER → HERO FIX (CLEAN)
============================ */

/* Remove vertical padding causing the gap */
.header-inner {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

/* Remove container spacing issue */
.site-header {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
}

/* CRITICAL: remove top spacing inside hero */
.hero {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Ensure hero sticks directly to header */
.hero:first-of-type {
  margin-top: 0 !important;
}

/* Fix possible container gap behaviour */
main {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
/* ============================
   FIX HEADER SEAM (REAL FIX)
============================ */

/* Remove any border/line from header */
.site-header {
  border-bottom: none !important;
  box-shadow: none !important;
}

/* Ensure hero background touches header visually */
.hero {
  position: relative;
  z-index: 1;
}

/* Make header sit above hero cleanly */
.site-header {
  position: relative;
  z-index: 10;
}

/* KEY: force background continuity */
body {
  background: #ffffff; /* ensure no contrast seam */
}
/* ============================
   FINAL HEADER CORRECTION
============================ */

/* Fix header height */
.header-inner {
  padding: 8px 0 !important;   /* tighter, removes extra space */
  align-items: center !important;
}

/* Remove any accidental borders/lines */
.site-header,
.header-inner,
.container {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Ensure no vertical space below header */
.site-header {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Make hero sit directly under header */
.hero {
  margin-top: 0 !important;
}

/* Fix any rogue left-edge rendering */
html, body {
  overflow-x: hidden;
}
/* ============================
   HARD RESET: HEADER + BORDER SOURCE
============================ */

/* 1. Remove ANY borders globally (this kills blue line) */
* {
  border-left: none !important;
}

/* Also protect key layout elements */
.container,
.site-header,
.header-inner,
main,
.hero {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* 2. Fix header height properly */
.site-header {
  padding: 0 !important;
  margin: 0 !important;
  background: #ffffff;
}

/* Critical: remove internal vertical padding */
.header-inner {
  padding: 6px 0 !important;
  display: flex;
  align-items: center;
}

/* 3. Ensure logo doesn’t force height */
.logo-slot {
  height: 42px !important;
  display: block;
}

/* 4. Remove spacing ABOVE hero (real fix) */
main {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.hero {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
/* ============================
   CORRECT HEADER HEIGHT (FINAL)
============================ */

/* Let header size itself correctly */
.site-header {
  padding: 0 !important;
}

/* Control the height HERE only */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 16px 0 !important;   /* ✅ balanced, not too tall */
}

/* Ensure logo does NOT shrink */
.logo-slot {
  height: 48px !important;  /* ✅ restore original visual weight */
}

/* Remove any stray borders */
.site-header {
  border-bottom: none !important;
}

/* Ensure hero touches header correctly */
main,
.hero {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* ============================
   FIX HOMEPAGE HERO GAP (REAL FIX)
============================ */

/* Remove ANY spacing above first section */
main > section:first-of-type {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
/* ============================
   TRUE HEADER HEIGHT FIX
============================ */

/* Force header height to content ONLY */
.site-header {
  display: flex;
}

/* Reset header-inner properly */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;        /* ✅ fixed height */
  padding: 0 24px;
}

/* 🔥 CRITICAL: control logo height explicitly */
.logo-slot {
  height: 48px !important;
  width: auto;
}

/* Prevent image baseline adding extra space */
.logo-slot img,
.logo-slot {
  vertical-align: middle;
}

/* Remove inline element spacing issues */
.nav a {
  line-height: 1;
  display: inline-block;
}

/* Ensure nav vertically aligns cleanly */
.nav {
  align-items: center;
}

/* ============================
   FIX HERO TOP EDGE (REAL FIX)
============================ */

.hero {
  margin-top: 0;
  padding-top: 0;
  background-position: center top; /* 🔥 critical */
}

.hero {
  background-color: #0A1A34; /* fallback to prevent grey showing */
}

/* ============================
   FIX HERO OVERLAY POSITION
============================ */

.hero {
  position: relative;
  overflow: hidden;   /* 🔥 prevents overlay offset issues */
}

.hero {
  background-position: top center;
}
/* ============================
   HEADER POLISH (FINAL)
============================ */

/* --- HEADER HEIGHT --- */
.header-inner {
  height: 84px;              /* slightly taller = more presence */
  padding: 0 32px;           /* more breathing space */
}

/* --- LOGO --- */
.logo-slot {
  height: 56px;              /* was too small → increase */
  width: auto;
}

/* --- NAV CONTAINER --- */
.nav {
  gap: 28px;                 /* more spacing between items */
}

/* --- NAV TEXT --- */
.nav a {
  font-size: 17px;           /* increase readability */
  font-weight: 600;          /* balanced weight */
  color: #0c2347;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

/* --- HOVER STATE --- */
.nav a:hover {
  color: #2d6cdf;
  border-bottom: 2px solid #2d6cdf;
}

/* --- ACTIVE STATE (subtle, not loud) --- */
.nav a.active {
  border-bottom: 2px solid rgba(45,108,223,0.6);
}

/* Remove any old background/pill styling */
.nav a.active,
.nav a:hover {
  background: none !important;
  border-radius: 0 !important;
}
/* ============================
   HEADER FINAL OVERRIDE (FORCE APPLY)
============================ */

/* LOGO */
.site-header .logo-slot {
  height: 56px !important;
  width: auto !important;
}

/* NAV LINKS */
.site-header .nav a {
  font-size: 17px !important;
  font-weight: 600 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: none !important;
  border: none !important;
  color: #0a1a34
  text-decoration: none !important;

  display: inline-block;
  line-height: 1.2;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
}

/* HOVER */
.site-header .nav a:hover {
  color: #2d6cdf !important;
}

/* ACTIVE (fix the “Home always underlined” issue) */

.nav a {
    border-bottom: none;   /* 🔥 remove full-width line */
    position: relative;
  }

  .nav a::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    margin: 6px auto 0;
    background: #4da3ff;
    transition: width 0.2s ease;
  }

  .nav a:hover::after {
    width: 40%;
  }

  .nav a.active::after {
    width: 40%;
  }

}


/* REMOVE old pill styling completely */
.site-header .nav a.active,
.site-header .nav a:hover {
  background: none !important;
  border-radius: 0 !important;
}
/* ============================
   HERO CONSISTENT POSITIONING
============================ */

/* Force consistent hero height */

.hero {
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 80px 0;   /* 🔥 THIS is the key improvement */
}
/* ============================
   HERO VISUAL BALANCE FIX
============================ */

/* Increase spacing BELOW headline */
.hero h1 {
  margin-bottom: 28px;   /* was too tight → creates more lower weight */
}

/* Increase spacing below paragraph */
.hero .lead {
  margin-bottom: 40px;   /* pushes CTAs down slightly */
}

/* Add controlled content shift (SUBTLE, not brute force) */
.hero-inner {
  transform: translateY(20px);   /* 🔥 THIS is the critical adjustment */
}
/* ============================
   HERO TRUE VERTICAL ALIGN (FORCED)
============================ */

.hero {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  min-height: 520px !important;
}

/* Remove any forced positioning from earlier rules */
.hero-inner {
  margin: 0 auto !important;
  transform: none !important;
}
/* ============================
   HERO PARAGRAPH CONSISTENCY
============================ */

.hero .lead {
  font-size: 18px !important;
  line-height: 1.6;
  max-width: 640px;   /* keeps line length clean and readable */
  margin-left: auto;
  margin-right: auto;
}
/* ============================
   HERO PARAGRAPH FINAL ALIGNMENT
============================ */

.hero p,
.hero .lead,
.hero .hero-subtext {
  font-size: 18px !important;
  line-height: 1.6 !important;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
/* ============================
   HERO PARAGRAPH – DEFINITIVE FIX
============================ */

.hero .hero-inner p {
  font-size: 24px !important;
  line-height: 1.6 !important;
  font-weight: 400 !important;
}
/* ============================
   HERO CTA POLISH (FINAL)
============================ */

/* CTA container */
.hero-ctas {
  margin-top: 40px;
}

/* Base button */
.hero-ctas .btn {
  padding: 14px 26px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  margin: 6px;
  transition: all 0.2s ease;
}

/* PRIMARY CTA (dominant) */
.hero-ctas .btn-primary {
  background: #2d6cdf !important;
  color: #ffffff !important;
  border: none;
  box-shadow: 0 6px 18px rgba(45,108,223,0.25);
}

.hero-ctas .btn-primary:hover {
  background: #1f52b5 !important;
  transform: translateY(-1px);
}

/* Improve spacing alignment */
.hero-ctas .btn + .btn {
  margin-left: 12px;
}
/* ============================
   CTA SECONDARY FIX (VISIBILITY + BALANCE)
============================ */

/* ============================
   HERO CTA – FINAL RESET (CLEAN & BALANCED)
============================ */

.hero-ctas {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Base button */
.hero-ctas .btn {
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* ✅ PRIMARY */
.hero-ctas .btn-primary {
  background: #2d6cdf !important;
  color: #ffffff !important;
  border: none;

  /* clean, stronger depth */
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.hero-ctas .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.4);
}

/* ============================
   CTA HARD OVERRIDE (FINAL)
============================ */

/* Target EXACT buttons */
.hero-ctas a.btn-primary {
  background: #2d6cdf !important;
  color: #ffffff !important;
  border: none !important;

  box-shadow: 0 6px 16px rgba(0,0,0,0.35) !important;
}

/* Hover (important for depth) */
.hero-ctas a.btn-primary:hover {
  transform: translateY(-2px) !important;
}

/* ============================
   HERO OVERLAY (FINAL CLEAN)
============================ */

.hero {
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at center,
    rgba(10, 26, 52, 0.75) 0%,
    rgba(10, 26, 52, 0.68) 40%,
    rgba(10, 26, 52, 0.60) 100%
  );
}

/* ensure content sits above overlay */
.hero-inner {
  position: relative;
  z-index: 2;
}
/* ============================
   BUTTON SYSTEM – CLEAN RESET
============================ */

/* Base button (shared) */
.btn {
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
}

/* PRIMARY (blue) */
.btn-primary {
  background: #2d6cdf;
  color: #ffffff;
  border: none;

  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.45);
}
/* ============================
   BUTTON SYSTEM – CLEAN RESET
============================ */

/* Base button (shared) */
.btn {
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
}

/* PRIMARY (blue) */

.btn-primary {
  box-shadow: 0 10px 28px rgba(0,0,0,0.45);
}

.btn-outline {
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

.btn:hover {
  transform: translateY(-3px);
}


/* ✅ SECONDARY (FINAL CORRECT VERSION) */

.btn-outline {
  background: transparent;
  color: #ffffff;

  border: 1px solid rgba(255,255,255,0.7);

  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

.btn:hover {
  transform: translateY(-3px);
}
/* ============================
   HERO FINAL POLISH (COMPLETE)
============================ */

/* Headline refinement */
.hero h1 {
  font-size: 52px;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 24px;

  text-shadow: 0 8px 28px rgba(0,0,0,0.75);
}

/* Paragraph refinement */
.hero p {
  font-size: 20px;
  line-height: 1.65;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 36px;

  text-shadow: 0 3px 12px rgba(0,0,0,0.6);
}

/* Badge spacing */
.hero .badge {
  margin-bottom: 20px;
}

/* CTA container */
.hero-ctas {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

/* Button depth + interaction */
.hero-ctas a.btn {
  box-shadow: 0 12px 28px rgba(0,0,0,0.4);
  transition: all 0.2s ease;
}

.hero-ctas a.btn:hover {
  transform: translateY(-3px);
}

/* Overall hero spacing */

.hero {
  padding: 80px 20px 120px;   /* 🔥 LESS top, MORE bottom */
}


/* ============================
   HERO TRUE POSITION FIX
============================ */

.hero .container {
  transform: translateY(-30px);   /* 🔥 THIS will move it */
}



/* ============================
   HERO FINAL HEIGHT CONTROL
============================ */

.hero {
  min-height: calc(100vh - 80px);   /* 🔥 key fix */

  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================
   HERO TRUE POSITION RESET
============================ */

.hero {
  display: flex !important;              /* 🔥 override grid completely */
  align-items: flex-start !important;   /* 🔥 stop forced centre */
  justify-content: center !important;   /* 🔥 override justify-content */

  padding-top: 180px !important;        /* 🔥 CONTROL position directly */
}
/* ============================
   HERO FINAL POSITION FIX (REAL ONE)
============================ */

/* Keep outer hero as flex */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* REMOVE inner flex interference */
.hero-inner {
  display: block !important;   /* 🔥 critical fix */
}

/* ============================
   HERO HEIGHT FIX (REAL ISSUE)
============================ */

.hero-inner {
  transform: translateY(0px) !important;
}
/* ============================
   CTA FINAL FLOAT (CLEAN + STABLE)
============================ */

/* Primary button (clean elevation) */
.hero-ctas a.btn-primary {
  box-shadow:
    0 8px 12px rgba(0,0,0,0.15),
    0 18px 35px rgba(0,0,0,0.25);
}

/* Hover lift */
.hero-ctas a.btn-primary:hover {
  transform: translateY(-4px) !important;

  box-shadow:
    0 12px 18px rgba(0,0,0,0.18),
    0 28px 55px rgba(0,0,0,0.35);
}
/* ============================
   FINAL WORKING FLOAT EFFECT
============================ */

.hero-ctas a.btn-primary {
  box-shadow:
    0 10px 14px rgba(0,0,0,0.9),   /* close shadow */
    0 20px 40px rgba(0,0,0,0.9) !important;  /* lift shadow */
}

.hero-ctas a.btn-primary:hover {
  transform: translateY(-5px) !important;   /* 🔥 make movement obvious */

  box-shadow:
    0 14px 20px rgba(0,0,0,0.9),
    0 30px 60px rgba(0,0,0,0.9) !important;
}
/* Secondary button (match floating effect) */
.hero-ctas a.btn-outline {
  box-shadow:
    0 10px 14px rgba(0,0,0,0.9),
    0 20px 40px rgba(0,0,0,0.9) !important;
}

.hero-ctas a.btn-outline:hover {
  transform: translateY(-5px);

  box-shadow:
    0 14px 20px rgba(0,0,0,0.9),
    0 30px 60px rgba(0,0,0,0.9) !important;
}
/* ============================
   CLEAN MOBILE SYSTEM (FINAL)
============================ */

@media (max-width: 768px) {

 
.mobile-menu-toggle {
  display: block !important;
  position: static !important;   /* 🔥 overrides absolute */
  margin: 10px auto 0 !important; /* 🔥 centres horizontally */
}


  /* ===== HERO ===== */
  .hero {
        padding: 120px 20px 80px;

    overflow: visible !important;
    height: auto !important;
    min-height: auto !important;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.5;
    max-width: 100%;
  }
  
  .hero-inner {
    transform: none !important;   /* ✅ disables shift only on mobile */
  }


  /* ===== CTA BUTTONS ===== */
  .hero-ctas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 320px;
    margin: 0;
    display: block;
    text-align: center;
  }

  .hero-ctas .btn + .btn {
    margin-left: 0 !important;
  }

  /* ===== GRID (fix your cards) ===== */
  .grid {
    display: block !important;
  }

  .grid .card {
    margin-bottom: 20px;
  }

  /* ===== GENERAL ===== */
  .container {
    width: 100%;
    padding: 0 16px;
  }

}

@media (max-width: 768px) {

  .hero {
    display: flex;             /* keep flex ✅ */
    flex-direction: column;    /* 🔥 key fix */
    align-items: center;
    justify-content: flex-start;  /* 🔥 stop vertical centering */

    padding: 120px 20px 80px;

    height: auto !important;
    min-height: auto !important;
  }

}

@media (max-width: 768px) {

  html, body {
    height: auto !important;
    overflow: auto !important;
  }

  main {
    height: auto !important;
    overflow: visible !important;
  }

  .hero {
  height: auto !important;
  min-height: auto !important;

  display: flex;
  flex-direction: column;

  align-items: stretch;        /* 🔥 THIS is the fix */
  justify-content: flex-start;

  padding: 120px 20px 80px;
}

  .hero-inner {
    transform: none !important;
  }
  
.cta-inner {
  display: flex;
  flex-direction: column;     /* 🔥 stack text + button */
  align-items: center;        /* 🔥 center everything horizontally */
  text-align: center;         /* ✅ center the text too */
  gap: 20px;                  /* nice spacing */
}


}

main {
  display: block !important;
}

main {
  display: block !important;
  height: auto !important;
}

.hero-inner {
  padding: 40px 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu-toggle {
  position: static;
  margin-left: auto;
}

.cta-band {
  text-align: center;
  padding-bottom: 60px;
}

.cta-band .btn {
  display: block;
  margin: 20px auto 0;
}


@media (max-width: 768px) {

  .header-inner {
    display: flex;
    flex-direction: column;   /* 🔥 stack logo + burger */
    align-items: center;      /* 🔥 centre everything */
  }

}
@media (max-width: 768px) {

  .nav {
    display: none;

    flex-direction: column;
    align-items: center;

    background: #0b2540;

    position: absolute;
    top: 90px;

    left: 50%;
    transform: translateX(-50%);

    width: 90%;
    max-width: 320px;

    padding: 20px;
    border-radius: 10px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.4);

    z-index: 999;
  }

  .nav.active {
    display: flex;
  }

}
@media (max-width: 768px) {

  .nav a {
    display: block !important;
    width: 100%;

    padding: 14px 0;

    color: #ffffff !important;   /* 🔥 FORCE WHITE TEXT */
    text-decoration: none !important;

    text-align: center;
    font-size: 16px;

    border-bottom: 1px solid rgba(255,255,255,0.25);
  }

  .nav a:last-child {
    border-bottom: none;
  }

}

@media (max-width: 768px) {

  .nav a.active {
    color: #4da3ff !important;  /* lighter highlight */
    font-weight: 600;
  }

}

@media (max-width: 768px) {

  .site-header .nav.active a {
    color: #ffffff !important;   /* ✅ force white inside open menu */
  }

  .site-header .nav.active a.active {
    color: #4da3ff !important;   /* ✅ highlight current page */
  }

}

@media (max-width: 768px) {

  .nav a:hover {
    color: #ffffff !important;
    text-decoration: underline;
  }

  .nav a.active:hover {
    color: #ffffff !important;
  }

}

@media (max-width: 768px) {

  .site-header .nav.active a:hover {
    color: #4da3ff !important;   /* ✅ highlight on hover */
  }

  .site-header .nav.active a:hover::after {
    width: 40%;                  /* ✅ show underline on hover */
  }

}

@media (max-width: 768px) {

  .site-header .nav.active a {
    opacity: 0.85;
  }

  .site-header .nav.active a:hover {
    opacity: 1;
  }

}


