
:root{
  --bg:#f4f8f5;
  --surface:#ffffff;
  --surface-2:#eef6f0;
  --text:#18231c;
  --muted:#5e6d63;
  --primary:#153f2a;
  --primary-2:#236341;
  --accent:#d8ebdb;
  --border:rgba(21,63,42,.10);
  --shadow:0 18px 60px rgba(21,63,42,.10);
  --radius:22px;
  --radius-sm:14px;
  --container:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Arial,Helvetica,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top right, rgba(35,99,65,.07), transparent 28%),
    linear-gradient(180deg, #f8fbf9 0%, var(--bg) 100%);
  line-height:1.65;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{width:min(var(--container), calc(100% - 32px)); margin:0 auto}
.topbar{
  background:var(--primary);
  color:#f7fffa;
  font-size:14px;
}
.topbar-inner{
  padding:10px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
header{
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter:blur(14px);
  background:rgba(255,255,255,.82);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:16px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:800;
  font-size:22px;
  color:var(--primary);
}
.brand-mark{
  width:46px;height:46px;border-radius:16px;
  display:grid;place-items:center;
  background:linear-gradient(135deg,var(--primary), var(--primary-2));
  color:#fff;font-weight:800;
  box-shadow:var(--shadow);
}
nav ul{
  list-style:none;
  display:flex;
  gap:24px;
  padding:0;margin:0;
  align-items:center;
}
nav a.link{color:var(--muted); font-weight:600}
nav a.link:hover{color:var(--primary)}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  gap:10px;
  padding:14px 22px;
  border-radius:999px;
  font-weight:800;
  transition:.2s ease;
}
.btn-primary{
  color:#fff;
  background:linear-gradient(135deg,var(--primary),var(--primary-2));
  box-shadow:0 14px 34px rgba(35,99,65,.24);
}
.btn-primary:hover{transform:translateY(-1px)}
.btn-secondary{
  background:#fff;
  border:1px solid var(--border);
  color:var(--primary);
}
.hero{padding:84px 0 56px}
.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:28px;
  align-items:center;
}
.eyebrow{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:var(--accent);
  color:var(--primary);
  font-size:13px;
  font-weight:800;
  letter-spacing:.02em;
  margin-bottom:16px;
}
h1,h2,h3,h4{line-height:1.1; margin:0 0 14px}
h1{font-size:clamp(38px,5.4vw,64px)}
h2{font-size:clamp(28px,4vw,44px)}
h3{font-size:24px}
.lead{
  font-size:19px;
  color:var(--muted);
  max-width:760px;
}
.hero-actions{display:flex; gap:14px; flex-wrap:wrap; margin:28px 0 34px}
.grid-3,.grid-2,.stats,.contact-grid,.footer-grid{
  display:grid; gap:22px;
}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-2{grid-template-columns:repeat(2,1fr)}
.stats{grid-template-columns:repeat(3,1fr)}
.card,.glass,.stat,.contact-box,.article-card{
  background:rgba(255,255,255,.85);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.card,.glass,.contact-box,.article-card{padding:28px}
.glass{
  background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(244,248,245,.88));
}
.stat{padding:20px}
.stat strong{
  display:block;
  font-size:30px;
  color:var(--primary);
  margin-bottom:4px;
}
.icon{
  width:56px;height:56px;border-radius:18px;
  display:grid;place-items:center;
  background:var(--surface-2);
  margin-bottom:16px;
  font-size:24px;
}
section{padding:74px 0}
.section-head{max-width:820px; margin-bottom:34px}
.section-head p,.muted, p.muted{color:var(--muted)}
.soft{background:linear-gradient(180deg, rgba(238,246,240,.8), rgba(255,255,255,.4))}
.checks{padding-left:18px; color:var(--muted)}
.checks li{margin-bottom:10px}
.contact-grid{grid-template-columns:1fr 1fr}
.contact-line{
  display:flex; gap:14px; align-items:flex-start;
  padding:16px 0;
  border-bottom:1px solid var(--border);
}
.contact-line:last-child{border-bottom:none}
.mini{
  width:42px;height:42px;border-radius:14px;
  display:grid;place-items:center;
  background:var(--surface-2);
  font-weight:800;
  color:var(--primary);
  flex:0 0 auto;
}
.cta{
  background:linear-gradient(135deg,var(--primary),var(--primary-2));
  color:#fff;
  padding:38px;
  border-radius:30px;
  box-shadow:var(--shadow);
}
.cta p{color:rgba(255,255,255,.85)}
footer{
  background:#102017;
  color:#d9e5dc;
  padding:48px 0 26px;
}
.footer-grid{grid-template-columns:1.3fr .7fr .7fr 1fr; margin-bottom:18px}
.footer-grid h4{color:#fff; margin-bottom:10px}
.footer-grid a{color:#d9e5dc}
.small{font-size:14px;color:#b9c8bc}
.hero-visual{
  min-height:460px;
  position:relative;
  overflow:hidden;
}
.hero-badge{
  position:absolute;
  right:22px; top:22px;
  padding:10px 14px;
  background:#fff;
  border-radius:999px;
  font-weight:800;
  color:var(--primary);
  border:1px solid var(--border);
}
.hero-shape{
  position:absolute;border-radius:50%;
  filter:blur(8px);
}
.hero-shape.one{width:280px;height:280px;background:#d7ebdb;left:-30px;top:30px}
.hero-shape.two{width:220px;height:220px;background:#bad9c4;right:-20px;bottom:40px}
.hero-content{
  position:relative; z-index:2; height:100%;
  display:flex; flex-direction:column; justify-content:flex-end;
}
.hero-panel-title{font-size:30px; color:var(--primary)}
.list-links a{
  display:flex; justify-content:space-between; gap:10px;
  padding:14px 0;
  border-bottom:1px solid var(--border);
  color:var(--primary);
  font-weight:700;
}
.list-links a:last-child{border-bottom:none}
@media (max-width: 980px){
  nav ul{display:none}
  .hero-grid,.grid-3,.grid-2,.stats,.contact-grid,.footer-grid{grid-template-columns:1fr}
  .hero{padding-top:56px}
}


.menu-toggle{
  display:none;
  width:48px;

  border:none;
  border-radius:14px;
  background:var(--surface);
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  cursor:pointer;
  padding:10px 0;
}
.menu-toggle span{
  display:block;
  width:22px;
  height:2px;
  background:var(--primary);
  margin:3px auto;
  transition:.25s ease;
}
.menu-toggle.is-open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.menu-toggle.is-open span:nth-child(2){opacity:0}
.menu-toggle.is-open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

@media (max-width: 980px){
  .menu-toggle{display:grid; place-items:center}
  nav{
    position:relative;
  }
  nav ul{
    display:none;
    position:absolute;
    right:0;
    top:64px;
    width:min(320px, calc(100vw - 32px));
    flex-direction:column;
    align-items:stretch;
    gap:0;
    background:rgba(255,255,255,.98);
    border:1px solid var(--border);
    border-radius:20px;
    box-shadow:var(--shadow);
    padding:10px;
  }
  nav ul.is-open{display:flex}
  nav ul li{width:100%}
  nav ul li a.link,
  nav ul li a.btn{
    display:flex;
    width:100%;
    padding:14px 16px;
    border-radius:14px;
  }
  nav ul li a.link:hover{
    background:var(--surface-2);
  }
}


/* === Safe final overrides: hero images + logo colors + white uploaded icons === */
:root{
  --bg:#f5f9f8;
  --surface:#ffffff;
  --surface-2:#eef7f3;
  --text:#18231c;
  --muted:#5f6f69;
  --primary:#1F5A92;
  --primary-2:#2A87B8;
  --border:rgba(31,90,146,.10);
  --shadow:0 18px 60px rgba(31,90,146,.12);
}

body{
  background:
    radial-gradient(circle at top right, rgba(42,135,184,.08), transparent 28%),
    linear-gradient(180deg, #fbfdfd 0%, var(--bg) 100%);
}

.topbar{ background:#184A77; }
header{ background:rgba(255,255,255,.94); }
.brand{ color:var(--primary); }
footer{ background:#184A77; }

.brand-mark{
  width:48px;
  height:48px;
  background:#fff;
  border:1px solid var(--border);
  overflow:hidden;
}
.brand-mark img{
  width:38px;
  height:38px;
  object-fit:contain;
}

.hero{
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(rgba(0,0,0,.48), rgba(0,0,0,.48)),
    url('../BG-1.jpg') center/cover no-repeat !important;
}

.page-hero{
  background:
    linear-gradient(rgba(0,0,0,.52), rgba(0,0,0,.52)),
    url('../page-banner.jpg') center/cover no-repeat !important;
}

.hero h1,
.hero h2,
.hero h3,
.hero p,
.hero .muted{
  color:#fff;
}

.eyebrow{
  background:rgba(255,255,255,.16);
  color:#fff;
  border:1px solid rgba(255,255,255,.24);
}

.btn-primary{
  background:#1FA34A;
  color:#fff;
}
.btn-primary:hover{
  background:#45C35E;
}
.btn-dark{
  background:#1F5A92;
  color:#fff;
}
.menu-toggle{
  background:#fff;
}
.menu-toggle span{
  background:#1F5A92;
}

.icon{
  background:#1F5A92;
  color:#fff;

}
.icon img{
  width:32px;
  height:32px;
  object-fit:contain;
  filter:brightness(0) invert(1);
}


/* footer white text */
footer, footer a, footer p, footer h4{
  color:#ffffff !important;
}

/* soft section green */
.soft{
  background:#1FA34A !important;
  color:#ffffff;
}


/* soft section cards */
.soft .card,
.soft .offer-card,
.soft .process-card,
.soft .page-card,
.soft .article-card,
.soft .contact-box,
.soft .testimonial,
.soft .glass{
  background:#ffffff !important;
}

.soft .card h3,
.soft .offer-card h3,
.soft .process-card h3,
.soft .page-card h3,
.soft .article-card h3,
.soft .contact-box h3,
.soft .testimonial h3,
.soft .glass h3{
  color:#1F5A92 !important;
}

/* subpages lead full width */
.page-hero .lead{
  max-width:none !important;
}

/* small footer text white */
.small{
  color:#ffffff !important;
}


/* hero full width text on homepage */
.hero h1{
  max-width:none !important;
}

.hero .lead{
  max-width:none !important;
}


/* hide topbar on mobile */
@media (max-width:768px){
  .topbar{
    display:none;
  }
}
