/* =====================================================
   KRIYOS LLC — Deloitte-Style Enterprise Theme (2025)
===================================================== */

/* ---------- COLOR SYSTEM ---------- */
:root {
  --bg: #f5f6f7;
  --surface: #ffffff;
  --surface-soft: #f0f1f3;
  --border: #d8dadd;

  --primary: #2F3A47;
  --primary-hover: #3B4653;

  --chip-bg: #e7e9ec;
  --chip-text: #2F3A47;

  --text: #1a1c1e;
  --text-muted: #6b737c;

  --shadow-soft: 0 2px 6px rgba(0,0,0,0.06);
  --shadow-card: 0 4px 12px rgba(0,0,0,0.08);
}

/* ---------- BASE ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, Segoe UI, Roboto, Arial;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
}

/* ---------- LINKS ---------- */
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---------- CONTAINER ---------- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =====================================================
   NAVIGATION (DESKTOP + MOBILE) — FINAL WORKING VERSION
===================================================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  height: 76px;
  display: flex;
  align-items: center;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 42px;
  width: auto;
  border-radius: 4px;
}

/* Desktop Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

/* Hide checkbox */
.menu-toggle {
  display: none;
}

/* Hamburger icon */
.menu-icon {
  display: none;          /* hidden on desktop */
  cursor: pointer;
  width: 28px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
}

.menu-icon span {
  display: block;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
}

/* =====================================================
   MOBILE MENU
===================================================== */

@media (max-width: 900px) {

  /* Show hamburger on mobile */
  .menu-icon {
    display: flex;
    margin-left: auto;
    z-index: 1001;
  }

  /* Hide desktop nav links on mobile */
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 20px;
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    text-align: center;
  }

  /* Show nav links when hamburger is checked */
  .menu-toggle:checked + .menu-icon + .nav-links {
    display: flex;
  }
}


/* =====================================================
   HERO SECTION
===================================================== */
.hero {
  position: relative;
  padding-top: 300px;
  padding-bottom: 60px;
  background: var(--surface);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 260px;
  background-image: url('images/firstpagebanner.png');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.hero-grid {
  position: relative;
  z-index: 2;
}

/* Typography */
.h1 { font-size: 36px; font-weight: 700; margin: 0 0 8px; }
.h2 { font-size: 24px; font-weight: 600; margin: 0 0 8px; }
.p-lg { font-size: 17px; color: var(--text-muted); margin: 0 0 12px; }

/* Chips */
.chips { margin: 12px 0; gap: 6px; display: flex; }
.chip {
  padding: 6px 12px;
  background: var(--chip-bg);
  color: var(--chip-text);
  border-radius: 4px;
  font-size: 14px;
}

/* Cards */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 22px;
  box-shadow: var(--shadow-card);
}

.icon-svg {
  margin-right: 8px;
  margin-bottom: -3px;
  stroke: var(--primary);
}

/* Sections */
.section { padding: 80px 0; }
.section.alt { background: var(--surface-soft); }
.kicker {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
}

.tagline { color: var(--text-muted); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* Lists */
.list { padding-left: 20px; color: var(--text-muted); }
.list li { margin: 6px 0; }

/* Table */
.k-table { width: 100%; border-collapse: separate; border-spacing: 0 10px; }
.k-table td { padding: 12px; background: var(--surface-soft); border-radius: 6px; }
.k-table .label { width: 180px; font-weight: 600; color: var(--text-muted); }

/* Footer */
footer {
  background: #eceff1;
  padding: 50px 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
}

.small { color: var(--text-muted); font-size: 14px; }

/* =====================================================
   FEDERAL HERO
===================================================== */
.federal-hero {
  position: relative;
  padding-top: 260px;
  padding-bottom: 60px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.federal-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 260px;
  background-image: url('images/federal-banner.png');
  background-size: cover;
  background-position: center;
  opacity: 0.38;
}

.federal-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
