/* =====================================================
   GLOBAL RESET
===================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: Arial, sans-serif;
}

/* =====================================================
   HOME PAGE
===================================================== */

body {
  background: #f4f6fb;
}

/* HERO */
.hero {
  background: url('../images/hero/hero-bg.jpg') center/cover;
  padding: 60px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 34px;
}

/* SEARCH */
.search-box {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.search-box input {
  width: 420px;
  max-width: 90%;
  padding: 14px 18px;
  border-radius: 30px;
  border: 1px solid #ccc;
}

.search-box button {
  padding: 14px 26px;
  border-radius: 30px;
  background: #1e88e5;
  color: #fff;
  border: none;
  cursor: pointer;
}
.quick-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.quick-links a {
  background: #f1f5f9;
  padding: 14px 22px;
  border-radius: 12px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  transition: 0.3s;
}

.quick-links a:hover {
  background: #0b5ed7;
  color: #fff;
  transform: translateY(-4px);
}


/* =====================================================
   CENTRAL SCHEMES PAGE
===================================================== */

.scheme-page-title {
  text-align: center;
  font-size: 34px;
  margin: 40px 0 20px;
}

.scheme-filter {
  display: flex;
  justify-content: center;
  margin-bottom: 35px;
}

.search-box-ui {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 30px;
  padding: 0 18px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
  width: 420px;
  max-width: 90%;
}

.search-box-ui span {
  margin-right: 10px;
}

.search-box-ui input {
  border: none;
  outline: none;
  padding: 14px 0;
  width: 100%;
  font-size: 16px;
}

.scheme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  padding: 20px 40px 60px;
}

.scheme-card {
  background: #fff;
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  text-decoration: none;
  color: #000;
  transition: 0.3s;
}

.scheme-card:hover {
  transform: translateY(-6px);
}

.scheme-card h3 {
  color: #0d47a1;
  margin-bottom: 8px;
}

/* =====================================================
   PM AWAS / SCHEME DETAIL PAGE (FINAL)
===================================================== */

/* RED FULL BACKGROUND */
.scheme-page {
  min-height: 100vh;
  width: 100%;
  background: linear-gradient(135deg, #b00000, #ff1a1a);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 15px;
}

/* WHITE CENTER CARD */
.scheme-detail {
  background: #ffffff;
  width: 100%;
  max-width: 900px;
  padding: 45px 50px;
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
}

/* TITLE */
.scheme-detail h1 {
  font-size: 36px;
  color: #0d1b2a;
  margin-bottom: 14px;
}

/* TEXT */
.scheme-detail p {
  font-size: 16.5px;
  line-height: 1.8;
  color: #444;
}

/* SECTION HEADINGS */
.scheme-detail h2 {
  margin-top: 30px;
  font-size: 22px;
  color: #b00000;
  border-left: 5px solid #b00000;
  padding-left: 14px;
}

/* LIST */
.scheme-detail ul {
  padding-left: 26px;
  margin-top: 10px;
}

.scheme-detail li {
  font-size: 15.5px;
  margin-bottom: 8px;
}

/* NOTE BOX */
.note-box {
  margin: 24px 0;
  background: #fff3cd;
  border-left: 6px solid #f9a825;
  padding: 15px 18px;
  border-radius: 10px;
  font-size: 14.5px;
}

/* BUTTONS */
.action-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.back-btn {
  background: linear-gradient(135deg, #757575, #424242);
  color: #fff;
  border: none;
  padding: 13px 28px;
  border-radius: 12px;
  cursor: pointer;
}

.back-home {
  background: #e3f2fd;
  color: #0d47a1;
  padding: 13px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
}

/* =====================================================
   FOOTER
===================================================== */

.site-footer {
  background: #ffffff;
  padding: 20px;
  border-top: 1px solid #ddd;
}

.footer-content {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.footer-content a {
  color: #1e88e5;
  text-decoration: none;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 768px) {
  .scheme-detail {
    padding: 30px 22px;
  }

  .scheme-detail h1 {
    font-size: 28px;
  }
}

/* =====================================================
   CENTRAL SCHEMES – RED BACKGROUND + CENTER CONTENT
===================================================== */

.central-schemes-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #b00000, #ff1a1a);
  padding: 50px 15px;
}

/* White container */
.central-schemes-box {
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px 45px 60px;
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
}

/* Title */
.central-schemes-box h1 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 25px;
  color: #0d1b2a;
}

/* Search spacing fix */
.central-schemes-box .scheme-filter {
  margin-bottom: 40px;
}

/* Cards spacing */
.central-schemes-box .scheme-grid {
  padding: 0;
}

/* Back to Home button */
.cs-back-home {
  display: flex;
  justify-content: center;
  margin-top: 45px;
}

.cs-back-home a {
  background: #e3f2fd;
  color: #0d47a1;
  padding: 14px 30px;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(0,0,0,0.25);
  transition: 0.3s;
}

.cs-back-home a:hover {
  background: #bbdefb;
  transform: translateY(-2px);
}

/* =====================================================
   CENTRAL SCHEMES – FULL PAGE SCROLL VERSION
===================================================== */

.central-schemes-page {
  min-height: 100vh;
  width: 100%;
  background: linear-gradient(135deg, #b00000, #ff1a1a);
  padding: 60px 20px;

  /* 👇 IMPORTANT CHANGE */
  display: block;
}

/* White content box – now FULL HEIGHT friendly */
.central-schemes-box {
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  padding: 50px 50px 70px;
  border-radius: 24px;
  box-shadow: 0 35px 80px rgba(0,0,0,0.45);
}

/* Title */
.central-schemes-box h1 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 30px;
  color: #0d1b2a;
}

/* Search spacing */
.central-schemes-box .scheme-filter {
  margin-bottom: 45px;
}

/* Grid spacing reset */
.central-schemes-box .scheme-grid {
  padding: 0;
  margin-bottom: 50px;
}

/* Back to Home button */
.cs-back-home {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.cs-back-home a {
  background: #e3f2fd;
  color: #0d47a1;
  padding: 15px 34px;
  border-radius: 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(0,0,0,0.25);
  transition: 0.3s;
}

.cs-back-home a:hover {
  background: #bbdefb;
  transform: translateY(-2px);
}

/* =====================================================
   CENTRAL SCHEMES – FULL WIDTH WHITE SECTION
===================================================== */

/* Red background full page */
.central-schemes-page {
  min-height: 100vh;
  width: 100%;
  background: linear-gradient(135deg, #b00000, #ff1a1a);
  padding: 40px 0;   /* sirf top-bottom */
}

/* White section – FULL WIDTH */
.central-schemes-box {
  width: 100%;              /* 👈 FULL SCREEN */
  max-width: 100%;          /* 👈 NO LIMIT */
  margin: 0;
  background: #ffffff;
  padding: 50px 60px 80px;
  border-radius: 0;         /* 👈 EDGE TO EDGE */
  box-shadow: none;         /* optional – clean look */
}

/* Content ko readable rakhne ke liye inner limit */
.central-schemes-box > * {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Title */
.central-schemes-box h1 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 30px;
  color: #0d1b2a;
}

/* Back to Home center */
.cs-back-home {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.cs-back-home a {
  background: #e3f2fd;
  color: #0d47a1;
  padding: 15px 34px;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.cs-back-home a:hover {
  background: #bbdefb;
}

/* =====================================================
   CONTACT PAGE – MODERN & CLEAN DESIGN
===================================================== */

/* Page background */
body.contact-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #b00000, #ff1a1a);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 15px;
}

/* Main white box */
.contact-wrapper {
  background: #ffffff;
  width: 100%;
  max-width: 520px;
  padding: 40px 35px;
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
}

/* Title */
.contact-wrapper h1 {
  text-align: center;
  font-size: 32px;
  color: #0d1b2a;
  margin-bottom: 10px;
}

/* Subtitle */
.contact-wrapper p {
  text-align: center;
  font-size: 14.5px;
  color: #555;
  margin-bottom: 25px;
}

/* Form */
.contact-form label {
  display: block;
  margin-top: 15px;
  font-weight: 600;
  font-size: 14px;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

/* Focus */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #b00000;
  box-shadow: 0 0 0 2px rgba(176,0,0,0.15);
}

/* Submit button */
.contact-form button {
  width: 100%;
  margin-top: 22px;
  padding: 14px;
  background: linear-gradient(135deg, #b00000, #ff1a1a);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(176,0,0,0.35);
  transition: all 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(176,0,0,0.45);
}

/* Contact info */
.contact-info {
  margin-top: 25px;
  font-size: 14px;
  color: #333;
}

.contact-info p {
  margin: 6px 0;
}

/* Back to Home */
.contact-back {
  text-align: center;
  margin-top: 25px;
}

.contact-back a {
  display: inline-block;
  padding: 12px 26px;
  background: #e3f2fd;
  color: #0d47a1;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.contact-back a:hover {
  background: #bbdefb;
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 480px) {
  .contact-wrapper {
    padding: 30px 22px;
  }

  .contact-wrapper h1 {
    font-size: 26px;
  }
}

/* =====================================================
   CONTACT PAGE – FIX BACK TO HOME OVERRIDE
===================================================== */

body.contact-page .contact-back a {
  display: inline-block;
  padding: 12px 26px;
  background: #e3f2fd;
  color: #0d47a1;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

body.contact-page .contact-back a:hover {
  background: #bbdefb;
  transform: translateY(-2px);
}

/* ================= TRUST PAGE FOOTER LINKS ================= */

.trust-wrapper .back-home {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #0f4c75, #3282b8);
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
  transition: all 0.3s ease;
}

.trust-wrapper .back-home:hover {
  background: linear-gradient(135deg, #3282b8, #0f4c75);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.45);
}

body.trust-page {
  background: linear-gradient(135deg, #0d1b2a, #1b263b);
}

.trust-center {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 15px;
}

.trust-wrapper {
  background: #ffffff;
  max-width: 700px;
  width: 100%;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 25px 55px rgba(0,0,0,0.35);
}

/* Search Box */
.scheme-filter {
  display: flex;
  justify-content: center;
  margin: 20px 0 40px;
}

.search-box {
  display: flex;
  align-items: center;
  background: #f5f7fb;
  border-radius: 50px;
  padding: 12px 18px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.search-box:focus-within {
  box-shadow: 0 10px 28px rgba(0,0,0,0.15);
  background: #fff;
}

.search-icon {
  font-size: 18px;
  margin-right: 10px;
  color: #777;
}

.search-box input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 15px;
  background: transparent;
}

body {
  font-family: Arial, sans-serif;
  background: #f4f6f8;
}

.page {
  max-width: 900px;
  margin: 40px auto;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}

.card {
  display: block;
  padding: 15px;
  margin: 10px 0;
  border-radius: 8px;
  background: #f1f5ff;
  text-decoration: none;
  color: #000;
}

.card:hover {
  background: #dbe6ff;
}
/* ================= APPLY ONLINE PAGE ================= */

.apply-page {
  background: linear-gradient(135deg, #0f4c81, #1c7ed6);
  min-height: 100vh;
  padding: 40px 15px;
  font-family: Arial, sans-serif;
}

.apply-container {
  max-width: 1100px;
  margin: auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.apply-container h1 {
  text-align: center;
  color: #0f4c81;
  margin-bottom: 10px;
}

.apply-subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 25px;
}

/* NOTICE */
.apply-notice {
  background: #fff3cd;
  border-left: 6px solid #ff9800;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 30px;
  font-size: 14px;
}

/* GRID */
.apply-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.apply-card {
  background: #f9fbff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.apply-card:hover {
  transform: translateY(-6px);
}

.apply-card h3 {
  color: #0b5ed7;
  margin-bottom: 8px;
}

.apply-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}

.apply-card a {
  display: inline-block;
  padding: 8px 14px;
  background: #0b5ed7;
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
  font-size: 13px;
}

.apply-card a:hover {
  background: #094bb3;
}

/* STEPS & DOCS */
.apply-steps, .apply-docs {
  margin-top: 35px;
}

.apply-steps h2,
.apply-docs h2 {
  color: #0f4c81;
  margin-bottom: 10px;
}

.apply-steps ol,
.apply-docs ul {
  padding-left: 20px;
  color: #333;
}

/* BACK BUTTON */
.apply-back {
  text-align: center;
  margin-top: 90px;
}

.apply-back a {
  padding: 12px 30px;
  background: #0f4c81;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
}

.apply-back a:hover {
  background: #09345f;
}

.status-page {
  background: linear-gradient(135deg, #0f4c81, #1e88e5);
  min-height: 100vh;
  padding: 40px;
}

.status-container {
  max-width: 500px;
  background: #fff;
  margin: auto;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

.status-form input {
  width: 100%;
  padding: 12px;
  margin: 12px 0;
}

.status-form button {
  background: #1e88e5;
  color: #fff;
  padding: 12px;
  border: none;
  width: 100%;
  cursor: pointer;
  border-radius: 6px;
}

.status-card {
  margin-top: 20px;
  background: #f1f8ff;
  padding: 15px;
  border-radius: 8px;
}

.approved {
  color: #ff9800;
  font-weight: bold;
}

/* HERO SEARCH CENTER ALIGN */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero .search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

/* INPUT */
.hero .search-box input {
  width: 380px;
  max-width: 90%;
  padding: 14px 18px;
  border-radius: 30px;
  border: none;
  font-size: 16px;
  outline: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* BUTTON */
.hero .search-box button {
  padding: 14px 26px;
  border-radius: 30px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  background: #1e88e5;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.hero .search-box button:hover {
  background: #1565c0;
  transform: translateY(-2px);
}

/* ===== Common Page Layout ===== */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f6f9;
}

.page-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

.page-container h1 {
  text-align: center;
  margin-bottom: 30px;
  color: #0b4ea2;
}

/* ===== Card Grid ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* ===== Cards ===== */
.info-card {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.info-card:hover {
  transform: translateY(-6px);
}

.info-card h3 {
  margin-top: 0;
  color: #111;
}

.info-card p {
  color: #555;
  font-size: 14px;
}

.info-card a {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  background: #1976d2;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
}

.info-card a:hover {
  background: #0d47a1;
}

/* ===== Back Button ===== */
.back-home {
  display: block;
  text-align: center;
  margin: 40px auto 0;
  width: fit-content;
  padding: 10px 20px;
  background: #eee;
  color: #333;
  border-radius: 20px;
  text-decoration: none;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.info-card {
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.info-card h3 {
  color: #0a58ca;
}

.apply-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  background: #0a58ca;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
}

.apply-btn:hover {
  background: #084298;
}

.back-home {
  display: block;
  margin-top: 30px;
  text-align: center;
}

.apply-btn{
  display:inline-block;
  padding:12px 20px;
  background:#0d6efd;
  color:#fff;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
}

.apply-btn:hover{
  background:#084298;
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.job-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.apply-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  background: #0b5ed7;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
}

/* =======================
   ABOUT US PAGE STYLES
======================= */

.page-container {
  min-height: 100vh;
  background: #f5f7fb;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 15px;
}

.about-card {
  max-width: 820px;
  width: 100%;
  background: #ffffff;
  padding: 40px 50px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  text-align: center;
}

.about-card h1 {
  font-size: 36px;
  margin-bottom: 25px;
  color: #0d47a1;
  font-weight: 700;
}

.about-card p {
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 18px;
  color: #333;
}

/* Hindi text */
.about-card .hi {
  font-family: "Noto Sans Devanagari", "Mangal", sans-serif;
}

/* English text */
.about-card .en {
  font-family: Arial, sans-serif;
  color: #555;
}

.about-card hr {
  margin: 30px 0;
  border: none;
  border-top: 1px solid #ddd;
}

/* Back Button */
.back-home-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 34px;
  background: linear-gradient(135deg, #1976d2, #0d47a1);
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

.back-home-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #0d47a1, #08306b);
}

/* Documents page layout fix */
.page-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.info-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

.info-card h3 {
  color: #0d47a1;
  margin-bottom: 6px;
}

.info-card p {
  margin: 6px 0 14px;
  color: #444;
}

.info-card a {
  display: inline-block;
  padding: 8px 16px;
  background: #1976d2;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
}

.info-card a:hover {
  background: #0d47a1;
}

.latest-section {
  margin: 50px auto;
  max-width: 1100px;
}

.latest-section h2 {
  margin-bottom: 20px;
}

.latest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.latest-card {
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.latest-card:hover {
  transform: translateY(-5px);
}

.latest-card h3 {
  margin: 10px 0;
  color: #0b5ed7;
}

.latest-card p {
  font-size: 14px;
  color: #555;
}

.latest-card a {
  display: inline-block;
  margin-top: 10px;
  color: #0b5ed7;
  font-weight: 600;
}

.badge {
  background: #ff3d00;
  color: #fff;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: bold;
}


.site-footer {
  margin-top: 60px;
  background: #fff4ec;   /* light orange */
  border-top: 2px solid #ff7a00;
  padding: 18px 10px;
  text-align: center;
}

.footer-links {
  margin-bottom: 8px;
}

.footer-links a {
  color: #d35400;
  font-weight: 600;
  text-decoration: none;
  margin: 0 6px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-links span {
  color: #ff9f43;
}

.footer-copy {
  font-size: 13px;
  color: #555;
}
