
/* style.css - White & Blue theme */
:root{
  --blue: #0858c4;
  --light-blue: #eef5ff;
  --dark: #0b2545;
  --muted: #6b7280;
  --radius: 12px;
  --max-width: 1100px;
  --accent: var(--blue);
  --bg: #ffffff;
}
*{box-sizing:border-box}
body{
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  margin:0;
  background:var(--light-blue);
  color:var(--dark);
  -webkit-font-smoothing:antialiased;
}
.container{
  max-width:var(--max-width);
  margin:0 auto;
  padding:28px;
}
.header{
  background:linear-gradient(90deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
  padding:16px 0;
  border-bottom:1px solid #e6eefb;
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand{
  display:flex;
  gap:12px;
  align-items:center;
}
.brand img{height:46px}
.navlinks a{
  margin-left:18px;
  text-decoration:none;
  color:var(--dark);
  font-weight:600;
}
.hero{
  display:flex;
  gap:24px;
  align-items:center;
  padding:36px 0;
}
.hero .text{flex:1}
.hero h1{font-size:34px;margin:0 0 12px}
.hero p{color:var(--muted);line-height:1.6}
.cta{
  display:inline-block;
  background:var(--accent);
  color:white;
  padding:12px 18px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
  margin-top:10px;
}
.card-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:18px;
  margin-top:24px;
}
.card{
  background:white;
  border-radius:var(--radius);
  padding:18px;
  box-shadow:0 6px 18px rgba(11,37,69,0.06);
}
.card img{width:100%;border-radius:10px;height:160px;object-fit:cover}
.section{padding:28px 0}
.footer{padding:24px 0;color:var(--muted);font-size:14px;border-top:1px solid #e6eefb}
.services-list li{margin-bottom:10px}
.badge{
  display:inline-block;
  padding:6px 10px;
  background:var(--light-blue);
  color:var(--accent);
  border-radius:999px;
  font-weight:700;
  font-size:13px;
}
.contact-form input, .contact-form textarea{
  width:100%;padding:12px;border-radius:8px;border:1px solid #e9f2ff;margin-bottom:12px;font-size:15px
}
.btn-primary{background:var(--accent);color:white;padding:10px 16px;border-radius:8px;border:none;font-weight:700;cursor:pointer}
.badge-ghost{border:1px dashed #dbeafe;padding:6px 10px;border-radius:8px;color:var(--accent);display:inline-block}
@media(max-width:800px){
  .hero{flex-direction:column; text-align:center}
  .navlinks{display:none}
}
