:root{
  --primary:#0f4c81;
  --primary-dark:#0a2f4d;
  --accent:#1f8efa;
  --bg:#f5f8fc;
  --surface:#ffffff;
  --text:#17202a;
  --muted:#5f6b7a;
  --border:#dce6f2;
  --shadow:0 12px 35px rgba(15,76,129,0.10);
  --radius:18px;
  --max-width:1180px;
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}

a{
  text-decoration:none;
  color:inherit;
}

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

.container{
  width:min(var(--max-width), calc(100% - 32px));
  margin:0 auto;
}

.site-header{
  background:linear-gradient(135deg, var(--primary-dark), var(--primary));
  color:#fff;
  position:relative;
  overflow:hidden;
}

.site-header::before{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  border-radius:50%;
  background:rgba(255,255,255,0.06);
  top:-120px;
  right:-120px;
}

.site-header::after{
  content:"";
  position:absolute;
  width:300px;
  height:300px;
  border-radius:50%;
  background:rgba(255,255,255,0.05);
  bottom:-100px;
  left:-80px;
}

.nav{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:22px 0;
}

.brand{
  font-size:2.4rem;
  font-weight:800;
  letter-spacing:0.2px;
}
.card-icon{
  width:64px;
  height:64px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#edf5ff;
  color:#0f4c81;
  margin-bottom:18px;
}

.card-icon svg{
  width:30px;
  height:30px;
  display:block;
}
.nav-links{
  display:flex;
  gap:22px;
  flex-wrap:wrap;
  align-items:center;
  font-size:0.98rem;
}

.nav-links a{
  color:rgba(255,255,255,0.92);
  font-weight:600;
}

.nav-links a:hover{
  color:#fff;
}

.nav-cta{
  background:#ffffff;
  color:#0a2f4d;   /* Dark blue text */
  padding:12px 18px;
  border-radius:999px;
  font-weight:700;
}

.nav-cta:hover{
  color:#0a2f4d;
}

.hero{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:30px;
  align-items:center;
  padding:48px 0 80px;
}

.hero-content h1{
  font-size:clamp(2.6rem, 5vw, 4.5rem);
  line-height:1.08;
  margin-bottom:18px;
}

.hero-content p{
  font-size:1.08rem;
  max-width:680px;
  color:rgba(255,255,255,0.92);
  margin-bottom:26px;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:26px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 22px;
  border-radius:999px;
  font-weight:700;
  transition:0.2s ease;
}

.btn-primary{
  background:#fff;
  color:var(--primary-dark);
}

.btn-primary:hover{
  transform:translateY(-1px);
}

.btn-secondary{
  background:rgba(255,255,255,0.08);
  color:#fff;
  border:1px solid rgba(255,255,255,0.22);
}

.hero-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.tag{
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.14);
  color:#fff;
  font-size:0.92rem;
  font-weight:600;
}

.hero-panel{
  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.14);
  border-radius:24px;
  padding:28px;
  backdrop-filter:blur(8px);
  box-shadow:0 24px 50px rgba(0,0,0,0.12);
}

.hero-panel h3{
  font-size:1.3rem;
  margin-bottom:16px;
}

.panel-list{
  list-style:none;
  display:grid;
  gap:14px;
}

.panel-list li{
  display:flex;
  gap:12px;
  align-items:flex-start;
  color:rgba(255,255,255,0.95);
}

.panel-list i{
  width:18px;
  height:18px;
  margin-top:3px;
  color:#b8e1ff;
  flex-shrink:0;
}

section{
  padding:82px 0;
}

.section-heading{
  max-width:760px;
  margin:0 auto 42px;
  text-align:center;
}

.section-heading h2{
  font-size:clamp(2rem, 3.5vw, 3rem);
  color:var(--primary-dark);
  margin-bottom:14px;
}

.section-heading p{
  color:var(--muted);
  font-size:1.03rem;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}

.card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--shadow);
  transition:0.2s ease;
}

.card:hover{
  transform:translateY(-4px);
}

.card-icon{
  width:64px;
  height:64px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#edf5ff;
  color:#0f4c81;
  margin-bottom:18px;
}

.card-icon svg{
  width:30px;
  height:30px;
  stroke-width:2;
}

.card h3{
  font-size:1.15rem;
  margin-bottom:10px;
  color:var(--primary-dark);
}

.card p{
  color:var(--muted);
  font-size:0.98rem;
}

.about-grid{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:24px;
}

.about-box{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:30px;
  box-shadow:var(--shadow);
}

.about-box h3{
  font-size:1.55rem;
  margin-bottom:14px;
  color:var(--primary-dark);
}

.about-box p{
  color:var(--muted);
  margin-bottom:14px;
}

.value-list{
  list-style:none;
  display:grid;
  gap:14px;
  margin-top:12px;
}

.value-list li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:14px 16px;
  border-radius:14px;
  background:#f8fbff;
  border:1px solid var(--border);
}

.value-list i{
  width:20px;
  height:20px;
  color:var(--accent);
  margin-top:2px;
  flex-shrink:0;
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}

.process-step{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--shadow);
}

.step-number{
  width:44px;
  height:44px;
  border-radius:50%;
  background:var(--primary);
  color:#fff;
  font-weight:800;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:16px;
}

.process-step h3{
  color:var(--primary-dark);
  margin-bottom:10px;
  font-size:1.15rem;
}

.process-step p{
  color:var(--muted);
}

.cta{
  background:linear-gradient(135deg, var(--primary-dark), var(--primary));
  color:#fff;
  border-radius:26px;
  padding:46px;
  box-shadow:0 20px 50px rgba(15,76,129,0.18);
}

.cta h2{
  font-size:clamp(2rem, 3vw, 2.8rem);
  margin-bottom:14px;
}

.cta p{
  color:rgba(255,255,255,0.92);
  max-width:760px;
  margin-bottom:24px;
}

.cta-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.contact-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.16);
  color:#fff;
  padding:14px 18px;
  border-radius:14px;
  font-weight:700;
}

.contact-link i{
  width:18px;
  height:18px;
}

footer{
  text-align:center;
  padding:28px 0 40px;
  color:var(--muted);
  font-size:0.95rem;
}

@media (max-width: 980px){
  .hero,
  .services-grid,
  .about-grid,
  .process-grid{
    grid-template-columns:1fr;
  }

  .nav{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width: 640px){
  .brand{
    font-size:2rem;
  }

  .hero-actions,
  .cta-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .btn,
  .contact-link,
  .nav-cta{
    width:100%;
    justify-content:center;
  }

  .hero-panel,
  .card,
  .about-box,
  .process-step,
  .cta{
    padding:22px;
  }

  .site-header{
    padding-bottom:18px;
  }
}
