/* ==============================
   CSS VARIABLES (Govt Theme)
   ============================== */
:root {
  --mp-blue: #0b3c5d;
  --light-bg: #f4f6f8;
  --card-bg: #ffffff;
  --text-dark: #222222;
  --accent: #f28c28;
}

/* ==============================
   BASE RESET
   ============================== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background-color: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.6;
}

/* ==============================
   HEADER (Sticky Govt Style)
   ============================== */
header {
  background-color: var(--mp-blue);
  color: #ffffff;
  padding: 12px 28px;
  position: sticky;
  top: 0;
  z-index: 999;
}

/* Header top row */
.header-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-wrap img {
  height: 42px;
}

.header-title {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}

/* Navigation */
header nav {
  margin-top: 8px;
}

header nav a {
  color: #ffffff;
  text-decoration: none;
  margin-right: 16px;
  font-weight: 500;
}

header nav a:hover {
  text-decoration: underline;
}

/* Language toggle */
header nav span {
  float: right;
  font-weight: 600;
}

header nav span a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 6px;
}

/* ==============================
   HERO SECTION
   ============================== */
.hero {
  background-color: var(--mp-blue);
  padding: 40px 20px 30px;
  text-align: center;
  color: #ffffff;
  width: 100%;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-content img {
  height: 80px;
  margin-bottom: 12px;
}

.hero-content h2 {
  margin: 6px 0 4px;
  font-size: 26px;
  font-weight: 600;
}

.hero-content p {
  margin: 0;
  font-size: 16px;
  opacity: 0.9;
}

/* ==============================
   PAGE CONTAINER
   ============================== */
.container {
  max-width: 1100px;
  margin: 30px auto;
  padding: 0 20px;
}

/* ==============================
   CARDS
   ============================== */
.card {
  background-color: var(--card-bg);
  border-radius: 6px;
  padding: 22px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.card h2 {
  margin-top: 0;
  margin-bottom: 12px;
  position: relative;
  padding-left: 12px;
}

.card h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 80%;
  background-color: var(--accent);
  border-radius: 2px;
}

.card ul {
  padding-left: 20px;
}

/* ==============================
   LANGUAGE SUPPORT
   ============================== */
.lang-hi {
  display: none;
}

/* ==============================
   FOOTER
   ============================== */
footer {
  background-color: #1f2a33;
  color: #ffffff;
  text-align: center;
  padding: 14px 10px;
  font-size: 14px;
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 768px) {
  .header-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-title {
    font-size: 18px;
  }

  header nav a {
    display: inline-block;
    margin-bottom: 6px;
  }

  header nav span {
    float: none;
    display: block;
    margin-top: 6px;
  }

  .hero-content img {
    height: 65px;
  }

  .hero-content h2 {
    font-size: 22px;
  }
}
