
:root{
  --royal:#0047AB; --navy:#001F3F; --orange:#FF7A00; --muted:#6b7280; --bg:#F5F7FA; --card:#FFFFFF; --radius:12px;
  font-family:Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}
*{box-sizing:border-box}
body{margin:0;background:var(--bg);color:#0b1220;line-height:1.5}
.container{max-width:1100px;margin:0 auto;padding:24px}
header{background:linear-gradient(90deg,var(--navy),var(--royal));color:#fff;padding-bottom:14px}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:14px 0}
.brand{display:flex;align-items:center;gap:12px}
.brand img{width:56px;height:56px;object-fit:contain;border-radius:8px;background:#fff;padding:6px}
.brand h1{font-size:18px;margin:0;font-weight:700}
/* Dropdown Menu */
.menu {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: center;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #fff;
  min-width: 220px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  border-radius: 8px;
  overflow: hidden;
  z-index: 999;
}

.dropdown-content a {
  color: #0b1220;
  padding: 10px 14px;
  text-decoration: none;
  display: block;
  font-weight: 500;
}

.dropdown-content a:hover {
  background: #eef4ff;
  color: #0047AB;
}

.dropdown:hover .dropdown-content {
  display: block;
}


nav{display:flex;gap:12px;align-items:center}
nav a{color:rgba(255,255,255,0.95);text-decoration:none;font-weight:600}
.cta{background:var(--orange);color:#fff;padding:10px 14px;border-radius:10px;text-decoration:none;font-weight:700}
.hero{display:grid;grid-template-columns:1fr 420px;gap:20px;align-items:center;padding:34px 0}
.hero h2{font-size:28px;margin:0 0 12px}
.hero p{margin:0 0 16px;color:rgba(255,255,255,0.95)}
.card{background:var(--card);padding:16px;border-radius:12px;box-shadow:0 6px 16px rgba(11,18,32,0.05)}
.products{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:16px;margin-top:12px}
.prod img{width:100%;height:160px;object-fit:cover;border-radius:8px;background:#eef2f7}
.prod h4{margin:12px 0 6px}
.prod p{margin:0;color:var(--muted);font-size:14px}
.features{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:12px;margin-top:12px}
.badges{display:flex;flex-wrap:wrap;gap:8px}
.badge{background:#fff;padding:8px 10px;border-radius:999px;font-weight:600;box-shadow:0 6px 14px rgba(11,18,32,0.04)}
footer{padding:28px 0;background:#081026;color:#dbeafe;margin-top:24px}
footer a{color:#cfe8ff}
@media (max-width:900px){ .hero{grid-template-columns:1fr} .header-inner{padding:10px} .hero h2{font-size:22px} }

