:root {
  --primary: #0b5cab;
  --primary-dark: #083d73;
  --accent: #2b88d8;
  --text: #1f2937;
  --muted: #5b6777;
  --bg: #f5f9fd;
  --white: #ffffff;
  --border: #d8e3ef;
  --success: #0f7b6c;
  --shadow: 0 12px 32px rgba(8, 61, 115, 0.10);
  --radius: 18px;
  --max: 1320px;
}

/* Reset */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

/* Container */
.container {
  width: min(92%, var(--max));
  margin: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-secondary:hover {
  background: rgba(11, 92, 171, 0.08);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  min-height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  color: var(--primary-dark);
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.nav-links {
  display: flex;
  gap: 18px;
  font-weight: 500;
}

/* Hero */
.hero {
  background:
    linear-gradient(115deg, rgba(8,61,115,0.95), rgba(11,92,171,0.9)),
    url('images/home-hero-bg.webp') center/cover;
  color: white;
  padding: 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.hero p {
  color: rgba(255,255,255,0.85);
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.hero-badges span {
  background: rgba(255,255,255,0.1);
  padding: 10px;
  border-radius: 10px;
}

/* Cards */
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.icon-box {
  width: 45px;
  height: 45px;
  background: #eaf3fb;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 10px;
}

/* Grid */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

/* Stats */
.stat-card {
  text-align: center;
  background: linear-gradient(#fff, #f8fbff);
}

.stat-card strong {
  font-size: 2rem;
  color: var(--primary-dark);
}

/* Checklist */
.check-list {
  list-style: none;
  padding: 0;
}

.check-list li::before {
  content: "✔";
  color: var(--success);
  margin-right: 10px;
}

/* Dashboard Card */
.dashboard-card {
  background: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.bar-track {
  height: 8px;
  background: #e8eef6;
  border-radius: 999px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
  }

  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

}

.text-blue {
  color: #014380;
}

.text-green-accent {
  color: #102000;                   /* readable text */
  border-bottom: 4px solid #A2C801; /* your exact green */
  display: inline-block;
  padding-bottom: 2px;
}