:root {
  --navy: #0b3d6e;
  --navy-dark: #072a4d;
  --saffron: #ff9933;
  --green: #128807;
  --bg: #f4f6f8;
  --text: #1c1c1c;
  --card-bg: #ffffff;
  --border: #d7dde3;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top strip */
.top-strip {
  background: var(--navy-dark);
  color: #e6edf5;
  font-size: 12px;
}
.top-strip-inner {
  display: flex;
  justify-content: space-between;
  padding: 6px 20px;
  flex-wrap: wrap;
  gap: 6px;
}
.top-links a {
  color: #e6edf5;
  margin-left: 14px;
  text-decoration: none;
}
.top-links a:hover { text-decoration: underline; }

/* Header */
.site-header {
  background: #ffffff;
  border-bottom: 4px solid var(--saffron);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.emblem {
  width: 50px; height: 50px;
  background: var(--navy);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: bold; font-size: 18px;
  border: 2px solid var(--saffron);
}
.brand-text h1 { margin: 0; font-size: 20px; color: var(--navy); letter-spacing: 1px; }
.brand-text p { margin: 2px 0 0; font-size: 12px; color: #555; }

.main-nav { display: flex; gap: 18px; flex-wrap: wrap; }
.main-nav a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
}
.main-nav a:hover { color: var(--saffron); }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: white;
  padding: 60px 20px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}
.badge {
  display: inline-block;
  background: var(--saffron);
  color: #1c1c1c;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 14px;
}
.hero h2 { font-size: 32px; line-height: 1.3; margin: 0 0 14px; }
.hero p { font-size: 15px; line-height: 1.6; color: #dbe6f2; }
.hero-actions { margin-top: 20px; display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  display: inline-block;
}
.btn-primary { background: var(--saffron); color: #1c1c1c; }
.btn-primary:hover { background: #ffab5c; }
.btn-secondary { background: transparent; color: white; border: 1px solid white; }
.btn-secondary:hover { background: rgba(255,255,255,0.1); }

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.stat-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
}
.stat-card h3 { margin: 0 0 4px; font-size: 22px; color: var(--saffron); }
.stat-card p { margin: 0; font-size: 12px; color: #dbe6f2; }

/* Sections */
.section { padding: 50px 20px; }
.alt-bg { background: #eef2f6; }
.section-title {
  color: var(--navy);
  font-size: 24px;
  border-left: 5px solid var(--saffron);
  padding-left: 12px;
  margin-bottom: 10px;
}
.section-lead { color: #444; margin-bottom: 26px; max-width: 700px; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.info-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--navy);
  border-radius: 6px;
  padding: 20px;
}
.info-card h3 { margin-top: 0; color: var(--navy); }

.check-list { list-style: none; padding: 0; max-width: 720px; }
.check-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.check-list li::before {
  content: "✔";
  color: var(--green);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Skill mapping */
.skill-form-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  max-width: 600px;
}
.skill-form-card label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--navy); }
.skill-form-card input {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 4px;
  margin-bottom: 14px;
  font-size: 14px;
}
.skill-result {
  margin-top: 16px;
  padding: 14px;
  background: #f0f6ff;
  border-left: 4px solid var(--navy);
  border-radius: 4px;
  font-size: 14px;
  display: none;
}
.skill-result.show { display: block; }

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: #cdd8e3;
  padding: 24px 20px;
  text-align: center;
  font-size: 13px;
}
.fine-print { font-size: 11px; color: #93a3b5; margin-top: 6px; }

/* Chatbot widget */
.chat-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--saffron);
  color: #1c1c1c;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 999;
}
.chat-window {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 320px;
  max-height: 440px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 999;
}
.chat-window.hidden { display: none; }
.chat-header {
  background: var(--navy);
  color: white;
  padding: 12px 14px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
}
.chat-close { cursor: pointer; }
.chat-body {
  padding: 12px;
  overflow-y: auto;
  flex: 1;
  font-size: 13px;
  background: #f7f9fb;
}
.chat-msg { margin-bottom: 10px; padding: 8px 10px; border-radius: 6px; max-width: 85%; }
.chat-msg.bot { background: #e6edf5; color: #1c1c1c; }
.chat-msg.user { background: var(--navy); color: white; margin-left: auto; }
.chat-input-row { display: flex; border-top: 1px solid var(--border); }
.chat-input-row input {
  flex: 1;
  border: none;
  padding: 10px;
  font-size: 13px;
}
.chat-input-row button {
  background: var(--saffron);
  border: none;
  padding: 0 16px;
  cursor: pointer;
  font-weight: 600;
}

@media (max-width: 800px) {
  .hero-inner { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .main-nav { gap: 10px; font-size: 13px; }
}
