:root{
  --blue:#0b4fb3;
  --blue2:#083b86;
  --dark:#111;
  --light:#f5f6f8;
  --card:#ffffff;
  --muted:#cfd6e4;
  --shadow: 0 12px 30px rgba(0,0,0,.25);
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  color:#fff;
  background:#0b0f18;
}

a{color:inherit;text-decoration:none}
.container{
  width:min(1100px, 92%);
  margin:0 auto;
}

.topbar{
  background: rgba(10, 18, 35, .75);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: sticky;
  top:0;
  z-index: 1000;
}

.navwrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  letter-spacing:.4px;
}
.brand img{
  width:44px;
  height:44px;
  object-fit:contain;
  border-radius:12px;
  background: rgba(255,255,255,.10);
  padding:6px;
}
.brand .name{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}
.brand .name strong{font-size:1.05rem}
.brand .name span{
  font-size:.85rem;
  color: rgba(255,255,255,.75);
}

nav{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
nav a{
  padding:10px 12px;
  border-radius: 999px;
  font-weight:700;
  color: rgba(255,255,255,.88);
  border:1px solid rgba(255,255,255,.10);
}
nav a:hover{
  background: rgba(255,255,255,.10);
}
nav a.active{
  background: rgba(11,79,179,.40);
  border-color: rgba(11,79,179,.70);
}

/* Page hero with dark overlay */
.hero{
  min-height: 72vh;
  display:flex;
  align-items:center;
  position:relative;
  padding: 64px 0;
  background-size: cover;
  background-position: center;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(10,18,35,.88) 0%, rgba(10,18,35,.55) 55%, rgba(10,18,35,.35) 100%),
    radial-gradient(900px 600px at 15% 30%, rgba(11,79,179,.35), transparent 60%);
}
.hero .content{
  position:relative;
  z-index:2;
  display:grid;
  gap:16px;
  max-width: 640px;
}
.kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  font-weight:800;
  letter-spacing:.4px;
  color: rgba(255,255,255,.85);
}
.pill{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
}
h1{
  margin:0;
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  line-height:1.05;
}
.lead{
  margin:0;
  font-size: 1.12rem;
  color: rgba(255,255,255,.86);
  line-height:1.55;
}
.ctaRow{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top: 10px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight:900;
  border:1px solid rgba(255,255,255,.12);
}
.btn.primary{
  background: linear-gradient(180deg, rgba(11,79,179,.95), rgba(8,59,134,.95));
  box-shadow: 0 14px 30px rgba(11,79,179,.28);
}
.btn.primary:hover{filter:brightness(1.05)}
.btn.ghost{
  background: rgba(255,255,255,.10);
}
.btn.ghost:hover{background: rgba(255,255,255,.15)}
.smallnote{
  font-size:.92rem;
  color: rgba(255,255,255,.75);
}

/* Content sections (cards) */
.section{
  padding: 44px 0;
  background: linear-gradient(180deg, rgba(10,18,35,.92), rgba(10,18,35,.98));
  border-top: 1px solid rgba(255,255,255,.06);
}
.grid3{
  display:grid;
  gap:16px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px){
  .grid3{grid-template-columns: 1fr}
  .hero{min-height: 68vh}
}

.card{
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.card h3{margin: 0 0 8px 0}
.card p{
  margin:0;
  color: rgba(255,255,255,.82);
  line-height:1.55;
}

.list{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:10px;
  margin-top: 14px;
}
@media (max-width: 650px){
  .list{grid-template-columns: 1fr}
}

.item{
  padding:12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
  font-weight:800;
}

.footer{
  padding: 22px 0;
  background: rgba(0,0,0,.55);
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.75);
  font-size: .92rem;
}

/* Page-specific hero backgrounds */
.hero.home{ background-image: url("images/hero.jpg"); }
.hero.about{ background-image: url("images/about-bg.jpg"); }
.hero.services{ background-image: url("images/services-bg.jpg"); }
.hero.contact{ background-image: url("images/contact-bg.jpg"); }
