:root{
  --blue:#0b3a6a;
  --blue2:#0f4c81;
  --grey:#6b7280;
  --dark:#111827;
  --light:#f5f7fb;
  --card:#ffffff;
  --border:#e5e7eb;
  --shadow: 0 10px 25px rgba(17,24,39,.08);
  --radius:16px;
  --max:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--dark);
  background:#fff;
  line-height:1.6;
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}

.container{
  width:min(var(--max), calc(100% - 40px));
  margin:0 auto;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 18px;
  border-radius:12px;
  font-weight:600;
  border:1px solid transparent;
  transition:.2s ease;
  cursor:pointer;
}
.btn.primary{background:var(--blue); color:#fff}
.btn.primary:hover{background:var(--blue2)}
.btn.outline{background:transparent; border-color:rgba(255,255,255,.7); color:#fff}
.btn.outline:hover{background:rgba(255,255,255,.12)}
.btn.ghost{background:transparent; border-color:var(--border); color:var(--dark)}
.btn.ghost:hover{background:var(--light)}

.topbar{
  background:var(--dark);
  color:#fff;
  font-size:13px;
}
.topbar .container{
  display:flex; gap:14px; align-items:center; justify-content:space-between;
  padding:8px 0;
  opacity:.95;
}
.topbar .meta{display:flex; gap:14px; flex-wrap:wrap}
.topbar a{opacity:.95}
.topbar a:hover{opacity:1}

.header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{
  display:flex; align-items:center; gap:12px;
}
.brand img{height:44px; width:auto}
.brand .title{
  display:flex; flex-direction:column; line-height:1.1;
}
.brand .title strong{font-size:15px}
.brand .title span{font-size:12px; color:var(--grey)}
.navlinks{
  display:flex; gap:18px; align-items:center;
}
.navlinks a{
  font-weight:600;
  color:#1f2937;
  padding:10px 10px;
  border-radius:10px;
}
.navlinks a:hover{background:var(--light)}
.navlinks a.active{color:var(--blue)}
.navcta{display:flex; gap:10px; align-items:center}

.menuBtn{
  display:none;
  border:1px solid var(--border);
  background:#fff;
  padding:10px 12px;
  border-radius:12px;
}
.menuPanel{
  display:none;
  border-top:1px solid var(--border);
  background:#fff;
}
.menuPanel .container{padding:12px 0}
.menuPanel a{
  display:block;
  padding:12px 10px;
  border-radius:12px;
  font-weight:700;
}
.menuPanel a:hover{background:var(--light)}

.hero{
  background:
    linear-gradient(120deg, rgba(11,58,106,.92), rgba(17,24,39,.78)),
    url("../img/hero.jpg") center/cover no-repeat;
  color:#fff;
  padding:78px 0;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:28px;
  align-items:stretch;
}
.hero h1{
  margin:0 0 12px;
  font-size:44px;
  line-height:1.1;
}
.hero p{margin:0 0 18px; max-width:58ch; opacity:.95}
.badges{
  display:flex; gap:10px; flex-wrap:wrap;
  margin:18px 0 22px;
}
.badge{
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.2);
}
.heroCard{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.18);
  border-radius:var(--radius);
  padding:18px;
}
.heroCard h3{margin:0 0 8px}
.heroCard p{margin:0 0 14px; opacity:.95}
.kpi{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.kpi .box{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  border-radius:14px;
  padding:12px;
}
.kpi .box strong{font-size:18px; display:block}
.kpi .box span{font-size:12px; opacity:.9}

.section{padding:62px 0}
.section.alt{background:var(--light)}
.sectionHead{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:16px; margin-bottom:22px;
}
.sectionHead h2{
  margin:0;
  font-size:30px;
}
.sectionHead p{margin:0; color:var(--grey); max-width:60ch}

.grid3{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
}
.grid2{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:16px;
}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px;
}
.card h3{margin:0 0 10px; font-size:18px}
.card p{margin:0; color:var(--grey)}
.icon{
  width:42px; height:42px; border-radius:14px;
  background:rgba(11,58,106,.10);
  display:grid; place-items:center;
  border:1px solid rgba(11,58,106,.18);
  margin-bottom:12px;
}
.icon svg{width:22px; height:22px; fill:var(--blue)}

.split{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:18px;
  align-items:stretch;
}
.split .panel{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:22px;
}
.list{
  margin:14px 0 0;
  padding:0;
  list-style:none;
}
.list li{
  display:flex; gap:10px;
  padding:10px 0;
  border-top:1px dashed var(--border);
}
.list li:first-child{border-top:none}
.check{
  width:22px; height:22px;
  border-radius:8px;
  background:rgba(11,58,106,.12);
  border:1px solid rgba(11,58,106,.22);
  display:grid; place-items:center;
  flex:0 0 auto;
}
.check svg{width:14px; height:14px; fill:var(--blue)}

.logoGrid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:14px;
  align-items:center;
}
.logoTile{
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  padding:14px;
  display:grid;
  place-items:center;
  min-height:86px;
}
.logoTile img{max-height:44px; width:auto; opacity:.9; filter: grayscale(10%)}
.logoTile img:hover{opacity:1}

.projectGrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.project{
  overflow:hidden;
  padding:0;
}
.project img{height:180px; width:100%; object-fit:cover}
.project .pBody{padding:16px}
.tagRow{display:flex; gap:8px; flex-wrap:wrap; margin-top:10px}
.tag{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(107,114,128,.10);
  border:1px solid rgba(107,114,128,.18);
  color:#374151;
}

.pageHero{
  background:linear-gradient(120deg, rgba(11,58,106,.92), rgba(17,24,39,.78));
  color:#fff;
  padding:52px 0;
}
.breadcrumbs{opacity:.9; font-size:13px}
.pageHero h1{margin:8px 0 0; font-size:36px}

.form{
  display:grid;
  gap:12px;
}
.input{
  padding:12px 14px;
  border:1px solid var(--border);
  border-radius:12px;
  font-size:14px;
  outline:none;
}
.input:focus{border-color:rgba(11,58,106,.45); box-shadow:0 0 0 4px rgba(11,58,106,.10)}
textarea.input{min-height:120px; resize:vertical}

.footer{
  background:#0b1220;
  color:#e5e7eb;
  padding:36px 0 18px;
}
.footerGrid{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr;
  gap:18px;
}
.footer h3{margin:0 0 10px; font-size:16px}
.footer a{color:#e5e7eb; opacity:.9}
.footer a:hover{opacity:1}
.small{font-size:13px; opacity:.9}
.copy{
  border-top:1px solid rgba(255,255,255,.12);
  margin-top:20px;
  padding-top:14px;
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  font-size:13px;
  opacity:.9;
}

@media (max-width: 980px){
  .heroGrid{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .projectGrid{grid-template-columns:1fr}
  .logoGrid{grid-template-columns:repeat(2,1fr)}
  .navlinks,.navcta{display:none}
  .menuBtn{display:inline-flex}
  .hero h1{font-size:38px}
}

.hero-slider{
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 500px;
  overflow: hidden;
}

.slides{
  position: relative;
  width: 100%;
  height: 100%;
}

.slide{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .8s ease, visibility .8s ease;
}

.slide.active{
  opacity: 1;
  visibility: visible;
}

.slide .overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(7,18,38,.75), rgba(7,18,38,.35));
}

.slide-content{
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
  max-width: 700px;
}

.slide-content h1{
  font-size: 56px;
  line-height: 1.1;
  margin: 0 0 18px;
  font-weight: 800;
}

.slide-content p{
  font-size: 20px;
  line-height: 1.7;
  margin: 0 0 28px;
  max-width: 650px;
}

.slide-buttons{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.slider-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: .3s ease;
}

.slider-btn:hover{
  background: rgba(255,255,255,.35);
}

.slider-btn.prev{
  left: 20px;
}

.slider-btn.next{
  right: 20px;
}

.slider-dots{
  position: absolute;
  left: 50%;
  bottom: 25px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}

.slider-dots .dot{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  cursor: pointer;
  transition: .3s ease;
}

.slider-dots .dot.active{
  background: #fff;
  transform: scale(1.2);
}

@media (max-width: 991px){
  .hero-slider{
    height: 70vh;
    min-height: 420px;
  }

  .slide-content h1{
    font-size: 40px;
  }

  .slide-content p{
    font-size: 17px;
  }
}

@media (max-width: 767px){
  .hero-slider{
    height: 65vh;
    min-height: 380px;
  }

  .slide-content{
    justify-content: center;
    padding-top: 20px;
  }

  .slide-content h1{
    font-size: 30px;
  }

  .slide-content p{
    font-size: 15px;
    line-height: 1.6;
  }

  .slider-btn{
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}