/* ===== Reset ===== */
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: Arial, sans-serif; color:#333; background:#f5f7fa; line-height:1.6; }

/* ===== Header / Navbar ===== */
header {
  background: linear-gradient(90deg, #ffffff, #25303e);
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 40px; box-shadow:0 2px 6px rgba(0,0,0,0.1);
  position: sticky; top:0; z-index: 50;
}
.logo { display:flex; align-items:center; gap:12px; }
.logo img { height:55px; display:block; }
.brand-text { display:flex; flex-direction:column; }
.brand-text .name { font-size:20px; font-weight:700; color:#1f2937; letter-spacing:.3px; }
.brand-text .tag  { font-size:12px; color:#4b5563; margin-top:2px; letter-spacing:.5px; }
nav a { color:#ffffff; text-decoration:none; margin-left:22px; font-size:16px; font-weight:500; transition:.25s; }
nav a:hover { color:#0077b6; text-decoration:underline; }

/* ===== Hero ===== */
.hero {
  display:flex; align-items:center; justify-content:space-between;
  padding:60px 80px; background:#fff; gap:32px; flex-wrap:wrap;
}
.hero-text { max-width:560px; }
.hero-text h1 { font-size:38px; color:#2c3e50; line-height:1.2; }
.hero-text h1 span { color:#0077b6; }
.hero-text p { margin:14px 0 20px; color:#555; font-size:18px; }
.btn {
  display:inline-block; padding:12px 22px; background:#0077b6; color:#fff;
  border-radius:8px; text-decoration:none; font-weight:600; transition:.25s;
}
.btn:hover { background:#005f87; }
.hero-img img { width:460px; max-width:100%; border-radius:14px; box-shadow:0 6px 16px rgba(0,0,0,.12); }

/* ===== Sections ===== */
.section { padding:60px 80px; }
.section h2 { font-size:28px; margin-bottom:14px; color:#2c3e50; }
.section p.lead { color:#4b5563; margin-bottom:24px; }

/* ===== Services grid ===== */
.services { background:#f5f7fa; }
.service-cards {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:24px;
}
.card {
  background:#fff; border-radius:12px; padding:18px; box-shadow:0 2px 10px rgba(0,0,0,.08); transition:transform .25s;
}
.card:hover { transform:translateY(-5px); }
.card img { width:100%; border-radius:10px; margin-bottom:12px; display:block; }
.card h3 { color:#0077b6; margin:8px 0 6px; }

/* ===== Forms ===== */
.form-container {
  width:360px; max-width:92%; margin:60px auto; background:#fff; padding:30px;
  border-radius:12px; box-shadow:0 6px 16px rgba(0,0,0,.10); text-align:center;
}
.form-container h2 { margin-bottom:16px; color:#2c3e50; }
.form-container p.sub { color:#6b7280; margin-bottom:16px; }
.input {
  width:100%; padding:12px; margin-bottom:14px;
  border:1px solid #d1d5db; border-radius:8px; outline:none; transition:border .2s;
}
.input:focus { border-color:#0077b6; }
.form-container button { width:100%; padding:12px; border:none; border-radius:8px; background:#0077b6; color:#fff; font-size:16px; cursor:pointer; transition:.25s; }
.form-container button:hover { background:#005f87; }
.helper { margin-top:10px; font-size:14px; color:#374151; }
.helper a { color:#0077b6; }

/* ===== Stats cards (Dashboard) ===== */
.stats {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:18px; margin-top:22px;
}
.stat {
  background:#fff; border-radius:12px; padding:18px; box-shadow:0 2px 10px rgba(0,0,0,.08);
}
.stat .kpi { font-size:28px; font-weight:700; color:#111827; }
.stat .label { color:#6b7280; }

/* ===== Footer ===== */
footer { background:#f0f4f9; padding:28px 40px; border-top:1px solid #e5e7eb; color:#444; margin-top:50px; }
.footer-wrap { display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.footer-left { display:flex; align-items:center; gap:12px; }
.footer-left img { height:36px; }
.footer-right a { margin-left:18px; color:#2c3e50; text-decoration:none; font-size:14px; }
.footer-right a:hover { color:#0077b6; }
.footer-mid { font-size:14px; color:#4b5563; text-align:center; flex:1; }


