:root {
  --green-900: #0f2e1a;
  --green-800: #14401f;
  --green-700: #1a5228;
  --green-600: #1e6b32;
  --green-500: #2e7d46;
  --green-100: #e8f5eb;
  --green-50: #f4faf5;

  --gold-500: #c9952a;
  --gold-400: #e0aa3a;
  --gold-100: #fdf6e3;

  --slate-900: #1a1f2e;
  --slate-700: #374151;
  --slate-500: #6b7280;
  --slate-200: #e5e7eb;
  --slate-100: #f3f4f6;
  --white: #ffffff;

  --accent-blue: #1d6fa4;
  --accent-orange: #d97706;
  --accent-red: #b91c1c;
  --accent-purple: #7c3aed;
  --accent-teal: #0d9488;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, .12);
  --shadow-lg: 0 8px 28px rgba(0, 0, 0, .16);

  --transition: .22s ease;
  --container: 1200px;

  --modal-accent: #1a56a0;
  --modal-accent-dark: #123d78;
  --modal-accent-light: #e8f0fb;
  --modal-gold: #c9922a;
  --modal-gold-light: #fdf3e3;
  --modal-success: #1e7e50;
  --modal-success-bg: #e8f5ee;
  --modal-warn: #b45309;
  --modal-warn-bg: #fef3c7;
  --modal-border: #dce4ef;
  --modal-surface-2: #f6f8fc;
  --modal-text: #1a2332;
  --modal-text-2: #4a5568;
  --modal-shadow: 0 24px 60px rgba(26, 86, 160, .18), 0 8px 24px rgba(0, 0, 0, .10);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--slate-700);
  background: var(--white);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.top-bar {
  background: var(--green-900);
  color: rgba(255, 255, 255, .75);
  font-size: .78rem;
  padding: .35rem 0;
  position: relative;
  z-index: 200;
}

.top-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.gov-links {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}

.gov-links a {
  color: rgba(255, 255, 255, .8);
  transition: color var(--transition);
}

.gov-links a:hover {
  color: var(--gold-400);
}

.sep {
  opacity: .4;
}

.text-resize {
  display: flex;
  gap: .25rem;
}

.text-resize button {
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .85);
  border-radius: var(--radius-sm);
  padding: .15rem .45rem;
  font-size: .75rem;
  transition: background var(--transition);
}

.text-resize button:hover {
  background: rgba(255, 255, 255, .22);
}

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 26, 14, .82) 0%, rgba(15, 46, 26, .68) 50%, rgba(10, 20, 15, .75) 100%);
}

.main-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.main-nav.sticky {
  position: fixed;
  background: var(--green-900);
  box-shadow: 0 2px 16px rgba(0, 0, 0, .3);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

.brand-emblem img {
  height: 70px;
  filter: brightness(0) invert(1);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  color: var(--white);
  font-weight: 700;
  font-size: 1.55rem;
  line-height: 1.2;
}

.brand-sub {
  color: var(--gold-400);
  font-size: .8rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .2rem;
  margin-left: auto;
}

.nav-link {
  color: rgba(255, 255, 255, .85);
  padding: .45rem .75rem;
  border-radius: var(--radius-md);
  font-size: .88rem;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
  display: flex;
  align-items: center;
  gap: .35rem;
}

.nav-link {
  cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, .12);
  color: var(--white);
}

.nav-link i {
  font-size: .8rem;
}

.nav-auth {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}

.btn-track {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .45);
  color: var(--white);
  padding: .45rem 1rem;
  border-radius: var(--radius-md);
  font-size: .85rem;
  font-weight: 500;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: .4rem;
}

.btn-track:hover {
  background: rgba(255, 255, 255, .12);
  border-color: var(--white);
}

.btn-login {
  background: var(--gold-500);
  color: var(--white);
  padding: .48rem 1.1rem;
  border-radius: var(--radius-md);
  font-size: .85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: background var(--transition), transform var(--transition);
}

.btn-login:hover {
  background: var(--gold-400);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  color: var(--white);
  font-size: 1.3rem;
  padding: .4rem;
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 8rem 1.5rem 5rem;
  max-width: 760px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(201, 149, 42, .2);
  border: 1px solid rgba(201, 149, 42, .4);
  color: var(--gold-400);
  padding: .35rem .9rem;
  border-radius: 99px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: .9rem;
}

.hero-highlight {
  color: var(--gold-400);
  display: block;
}

.hero-subtitle {
  color: rgba(255, 255, 255, .78);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-search {
  display: flex;
  align-items: stretch;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .25);
  margin-bottom: 2rem;
  position: relative;
}

.search-ico {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--slate-500);
  font-size: .9rem;
  pointer-events: none;
}

.hero-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: .95rem 1rem .95rem 2.8rem;
  font-size: .95rem;
  font-family: var(--font-body);
  color: var(--slate-900);
  min-width: 0;
  background: var(--white);
}

.search-btn {
  background: var(--green-600);
  color: var(--white);
  padding: 0 1.5rem;
  font-weight: 600;
  font-size: .9rem;
  transition: background var(--transition);
  white-space: nowrap;
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  cursor: pointer;
}

.search-btn:hover {
  background: var(--green-500);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
}

.stat-pill {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .2);
  color: var(--white);
  padding: .5rem 1rem;
  border-radius: 99px;
  font-size: .85rem;
}

.stat-pill i {
  color: var(--gold-400);
}

.stat-pill strong {
  color: var(--gold-400);
}

.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .5rem;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  transition: all var(--transition);
}

.dot.active {
  background: var(--gold-400);
  width: 22px;
  border-radius: 4px;
}

.ticker-bar {
  background: var(--green-700);
  color: var(--white);
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 40px;
  font-size: .82rem;
}

.ticker-label {
  background: var(--gold-500);
  padding: 0 1rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  font-size: .78rem;
  letter-spacing: .05em;
}

.ticker-track {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track span {
  display: inline-block;
  padding-left: 100%;
  animation: ticker 36s linear infinite;
  color: rgba(255, 255, 255, .9);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.quick-access {
  padding: 2.5rem 0;
  background: var(--green-50);
}

.qa-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.qa-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .65rem;
  border-radius: var(--radius-lg);
  padding: 1.4rem .75rem 1.2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition);
}

.qa-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.qa-card:nth-child(1) {
  background: #e8f5eb;
  border-color: #b2dfbd;
}

.qa-card:nth-child(1) span {
  color: #1a5228;
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.3;
}

.qa-card:nth-child(2) {
  background: #fff3e0;
  border-color: #ffc97a;
}

.qa-card:nth-child(2) span {
  color: #7c4a00;
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.3;
}

.qa-card:nth-child(3) {
  background: #e3f2fd;
  border-color: #90c4ef;
}

.qa-card:nth-child(3) span {
  color: #0c447c;
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.3;
}

.qa-card:nth-child(4) {
  background: #ede7f6;
  border-color: #bdb5e8;
}

.qa-card:nth-child(4) span {
  color: #3c3489;
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.3;
}

.qa-card:nth-child(5) {
  background: #e0f2f1;
  border-color: #80cbc4;
}

.qa-card:nth-child(5) span {
  color: #085041;
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.3;
}

.qa-card:nth-child(6) {
  background: #f1f8e9;
  border-color: #aed581;
}

.qa-card:nth-child(6) span {
  color: #27500a;
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.3;
}

.qa-card span {
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.3;
}

.qa-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
}

.qa-icon.blue {
  background: var(--accent-blue);
}

.qa-icon.green {
  background: var(--green-600);
}

.qa-icon.orange {
  background: var(--accent-orange);
}

.qa-icon.red {
  background: var(--accent-red);
}

.qa-icon.purple {
  background: var(--accent-purple);
}

.qa-icon.teal {
  background: var(--accent-teal);
}

/* ── SECTION HEAD ── */
.section-head {
  margin-bottom: 2rem;
}

.section-head.center {
  text-align: center;
}

.section-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: .4rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--green-900);
  margin-bottom: .5rem;
}

.section-head p {
  color: var(--slate-500);
  font-size: .94rem;
}

.head-rule {
  width: 52px;
  height: 3px;
  background: var(--gold-500);
  border-radius: 2px;
  margin: .75rem auto .75rem;
}

.section-head:not(.center) .head-rule {
  margin-left: 0;
}

/* ── ABOUT ── */
.about-section {
  padding: 5rem 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-lead {
  font-size: 1.05rem;
  color: var(--slate-700);
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--slate-500);
  margin-bottom: .9rem;
  font-size: .95rem;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1.5rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--green-50);
  border-left: 3px solid var(--green-600);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: .75rem 1rem;
}

.highlight-item i {
  color: var(--green-600);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.highlight-item strong {
  display: block;
  color: var(--slate-900);
  font-size: .95rem;
}

.highlight-item small {
  color: var(--slate-500);
  font-size: .8rem;
}

.about-modes {
  background: var(--green-900);
  border-radius: var(--radius-xl);
  padding: 2rem;
  color: var(--white);
}

.modes-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--gold-400);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.mode-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.mode-step:last-child {
  border-bottom: none;
}

.mode-num {
  font-size: 1.6rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: rgba(255, 255, 255, .12);
  min-width: 2rem;
  line-height: 1;
}

.mode-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--white);
  flex-shrink: 0;
}

.mode-icon.orange {
  background: var(--accent-orange);
}

.mode-icon.blue {
  background: var(--accent-blue);
}

.mode-icon.green {
  background: var(--green-500);
}

.mode-detail strong {
  display: block;
  font-size: .92rem;
  font-weight: 600;
  color: var(--white);
}

.mode-detail small {
  color: rgba(255, 255, 255, .6);
  font-size: .78rem;
}

.leadership-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--green-50) 0%, var(--white) 100%);
}

.leader-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.leader-card {
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1.5px solid;
  transition: transform var(--transition), box-shadow var(--transition);
}

.leader-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.leader-card:nth-child(1) {
  background: linear-gradient(135deg, #fff8e7 0%, #fffdf5 100%);
  border: 2px solid #e0aa3a;
  /* was 1.5px, explicit border shorthand fixes rendering */
  outline: none;
}

.leader-card:nth-child(2) {
  background: linear-gradient(135deg, #f1f8e9 0%, #f9fdf6 100%);
  border: 2px solid #a5d16a;
  outline: none;
}

.leader-img-wrap {
  width: 170px;
  height: 210px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--slate-200);
  flex-shrink: 0;
  background: var(--slate-100);
}

.leader-img-wrap.cm {
  border-color: var(--gold-400);
}

.leader-img-wrap.minister {
  border-color: #a5d16a;
}

.leader-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.leader-img-wrap.no-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-500);
  font-size: 2.5rem;
}

@media (max-width: 768px) {
  .leader-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .leader-card {
    flex-direction: column;
    gap: 1.25rem;
  }

  .leader-img-wrap {
    width: 100%;
    height: 220px;
  }
}

@media (max-width: 480px) {
  .leader-img-wrap {
    height: 260px;
  }

  .leader-card {
    padding: 1.25rem;
  }
}

.leader-role {
  display: inline-block;
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-600);
  background: var(--green-100);
  padding: .2rem .6rem;
  border-radius: 99px;
  margin-bottom: .5rem;
}

.leader-info h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--green-900);
  margin-bottom: .7rem;
}

.leader-info p {
  font-size: .87rem;
  color: var(--slate-500);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.leader-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}

.leader-tags span {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .72rem;
  font-weight: 600;
  color: var(--green-700);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  padding: .2rem .6rem;
  border-radius: 99px;
}

.leader-tags span i {
  font-size: .65rem;
}

.services-section {
  padding: 0;
  background: var(--slate-100);
}

.services-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
}

.services-layout--full {
  grid-template-columns: 1fr;
}

.services-grid--wide {
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
}

@media (max-width: 1024px) {
  .services-grid--wide {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 90px;
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-200);
}

.sidebar-card-head {
  background: var(--green-800);
  color: var(--white);
  padding: .85rem 1.1rem;
  font-size: .85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.sidebar-list {
  padding: .5rem 0;
}

.sidebar-list li a {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem 1.1rem;
  font-size: .85rem;
  color: var(--slate-700);
  transition: background var(--transition), color var(--transition);
}

.sidebar-list li a:hover {
  background: var(--green-50);
  color: var(--green-700);
}

.sidebar-list li a i {
  color: var(--green-600);
  font-size: .8rem;
  width: 14px;
}

.rtps-card p {
  padding: 1rem 1.1rem .5rem;
  font-size: .82rem;
  color: var(--slate-600);
  line-height: 1.55;
}

.rtps-appeal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin: .5rem 1rem 1rem;
  background: var(--green-600);
  color: var(--white);
  padding: .55rem 1rem;
  border-radius: var(--radius-md);
  font-size: .82rem;
  font-weight: 600;
  transition: background var(--transition);
}

.rtps-appeal-btn:hover {
  background: var(--green-500);
}

.help-card p {
  padding: 1rem 1.1rem .5rem;
  font-size: .82rem;
  color: var(--slate-600);
  line-height: 1.55;
}

.helpline-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin: .5rem 1rem 1rem;
  background: var(--gold-500);
  color: var(--white);
  padding: .55rem 1rem;
  border-radius: var(--radius-md);
  font-size: .82rem;
  font-weight: 600;
  transition: background var(--transition);
}

.helpline-btn:hover {
  background: var(--gold-400);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.service-card {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid transparent;
  border-left-width: 4px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card[data-title*="scheduled tribe"] {
  background: #e8f5eb;
  border-color: #b2dfbd;
  border-left-color: #1e6b32;
}

.service-card[data-title*="scheduled tribe"] h3 {
  color: #1a5228;
}

.service-card[data-title*="scheduled caste"] {
  background: #e3f2fd;
  border-color: #90c4ef;
  border-left-color: #185fa5;
}

.service-card[data-title*="scheduled caste"] h3 {
  color: #0c447c;
}

.service-card[data-title*="permanent residence"] {
  background: #ede7f6;
  border-color: #bdb5e8;
  border-left-color: #534ab7;
}

.service-card[data-title*="permanent residence"] h3 {
  color: #3c3489;
}

.service-card[data-title*="residence certificate"] {
  background: #e0f7fa;
  border-color: #80deea;
  border-left-color: #0097a7;
}

.service-card[data-title*="residence certificate"] h3 {
  color: #005662;
}

.service-card[data-title*="migrant"] {
  background: hsl(37, 100%, 94%);
  border-color: #ccd078;
  border-left-color: #e3f290;
}

.service-card[data-title*="migrant"] h3 {
  color: #007c1f;
}


.service-card[data-title*="income"] {
  background: #fff3e0;
  border-color: #ffc97a;
  border-left-color: #d97706;
}

.service-card[data-title*="income"] h3 {
  color: #7c4a00;
}

.service-card[data-title*="armed"] {
  background: #fbe9e7;
  border-color: #ffab91;
  border-left-color: #bf360c;
}

.service-card[data-title*="armed"] h3 {
  color: #7f2508;
}

.service-card[data-title*="marriage"] {
  background: #fce4ec;
  border-color: #f4aec7;
  border-left-color: #993556;
}

.service-card[data-title*="marriage"] h3 {
  color: #72243e;
}

.service-card[data-title*="senior"] {
  background: #f3e5f5;
  border-color: #ce93d8;
  border-left-color: #6a1b9a;
}

.service-card[data-title*="senior"] h3 {
  color: #4a148c;
}

.service-card[data-title*="registration"] {
  background: #fff8e1;
  border-color: #ffe082;
  border-left-color: #f9a825;
}

.service-card[data-title*="registration"] h3 {
  color: #7a5600;
}

.service-card[data-title*="farmer"] {
  background: #e0f2f1;
  border-color: #80cbc4;
  border-left-color: #0f6e56;
}

.service-card[data-title*="farmer"] h3 {
  color: #085041;
}

.service-card[data-title*="land"] {
  background: #e0f2f1;
  border-color: #80cbc4;
  border-left-color: #0f6e56;
}

.service-card[data-title*="land"] h3 {
  color: #085041;
}

.service-card[data-title*="encumbrance"] {
  background: #e0f2f1;
  border-color: #80cbc4;
  border-left-color: #0f6e56;
}

.service-card[data-title*="encumbrance"] h3 {
  color: #085041;
}

.service-card[data-title*="events"] {
  background: #f1ece5;
  border-color: #ddc1af;
  border-left-color: #9c7c64;
}

.service-card[data-title*="events"] h3 {
  color: #085041;
}

.service-card[data-title*="film"] {
  background: #ddd8d8;
  border-color: #e3afaf;
  border-left-color: #f15656;
}

.service-card[data-title*="film"] h3 {
  color: #085041;
}

.service-card[data-title*="transport"] {
  background: #f1ece5;
  border-color: #ddc1af;
  border-left-color: #9c7c64;
}

.service-card[data-title*="transport"] h3 {
  color: #085041;
}

.service-card[data-title*="crackers"] {
  background: #f8f8d1;
  border-color: #edf5bc;
  border-left-color: #b26565;
}

.service-card[data-title*="crackers"] h3 {
  color: #085041;
}

.service-card[data-title*="commissioner"] {
  background: #eaf2f3;
  border-color: #99e9ea;
  border-left-color: #92c9cf;
}

.service-card[data-title*="commissioner"] h3 {
  color: #085041;
}

.service-card[data-title*="renewal"] {
  background: #e3f2fd;
  border-color: #7e9bb3;
  border-left-color: #a5caf8;
}

.service-card[data-title*="renewal"] h3 {
  color: #5985b1;
}

.service-card[data-title*="Asset"] {
  background: #e3f2fd;
  border-color: #7e9bb3;
  border-left-color: #a5caf8;
}

.service-card[data-title*="Asset"] h3 {
  color: #5985b1;
}

.service-card[data-title*="hailing"] {
  background: #e3f2fd;
  border-color: #7e9bb3;
  border-left-color: #a5caf8;
}

.service-card[data-title*="hailing"] h3 {
  color: #5985b1;
}

.service-card[data-title*="police"] {
  background: #e3f2fd;
  border-color: #7e9bb3;
  border-left-color: #a5caf8;
}

.service-card[data-title*="police"] h3 {
  color: #5985b1;
}

.service-card[data-title*="passport"] {
  background: #e3f2fd;
  border-color: #7e9bb3;
  border-left-color: #a5caf8;
}

.service-card[data-title*="passport"] h3 {
  color: #5985b1;
}

.service-card[data-title*="dg"] {
  background: #e3f2fd;
  border-color: #7e9bb3;
  border-left-color: #a5caf8;
}

.service-card[data-title*="dg"] h3 {
  color: #5985b1;
}

.service-card[data-title*="shops"] {
  background: #e3f2fd;
  border-color: #7e9bb3;
  border-left-color: #a5caf8;
}

.service-card[data-title*="shops"] h3 {
  color: #5985b1;
}

.service-card[data-title*="tour"] {
  background: #f8f8d1;
  border-color: #edf5bc;
  border-left-color: #b26565;
}

.service-card[data-title*="tour"] h3 {
  color: #085041;
}

.service-card[data-title*="act"] {
  background: #ddd8d8;
  border-color: #e3afaf;
  border-left-color: #f15656;
}

.service-card[data-title*="act"] h3 {
  color: #085041;
}

.service-card[data-title*="shop"] {
  background: #e3f2fd;
  border-color: #7e9bb3;
  border-left-color: #a5caf8;
}

.service-card[data-title*="shop"] h3 {
  color: #5985b1;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
}

.card-icon.st {
  background: linear-gradient(135deg, #1e6b32, #2e7d46);
}

.card-icon.sc {
  background: linear-gradient(135deg, #1d6fa4, #2196c4);
}

.card-icon.prc {
  background: linear-gradient(135deg, #7c3aed, #9b59d6);
}

.card-icon.rc {
  background: linear-gradient(135deg, #0097a7, #00bcd4);
}

.card-icon.income {
  background: linear-gradient(135deg, #d97706, #f59e0b);
}

.card-icon.afc {
  background: linear-gradient(135deg, #bf360c, #e64a19);
}

.card-icon.marriage {
  background: linear-gradient(135deg, #b91c1c, #e53e3e);
}

.card-icon.senior {
  background: linear-gradient(135deg, #6a1b9a, #9c27b0);
}

.card-icon.ros {
  background: linear-gradient(135deg, #f9a825, #ffd54f);
}

.card-icon.farmer {
  background: linear-gradient(135deg, #0d9488, #14b8a6);
}

.card-icon.land {
  background: linear-gradient(135deg, #7c3aed, #9b59d6);
}

.card-icon.encumbrance {
  background: linear-gradient(135deg, #f9a825, #ffd54f);
}

.card-icon.events {
  background: linear-gradient(135deg, #c4af8d, #ff8a4f);
}

.card-icon.film {
  background: linear-gradient(135deg, #987a49, #eb8888);
}

.card-icon.transport {
  background: linear-gradient(135deg, #987a49, #eb8888);
}

.card-icon.crackers {
  background: linear-gradient(135deg, #987a49, #eb8888);
}

.card-icon.commissioner {
  background: linear-gradient(135deg, #baced0, #3fc0cf);
}

.card-icon.migrant {
  background: linear-gradient(135deg, #35493c, #14b8a6);
}

.card-icon.renewal {
  background: linear-gradient(135deg, #baced0, #3fc0cf);
}

.card-icon.Asset {
  background: linear-gradient(135deg, #baced0, #3fc0cf);
}

.card-icon.hailing {
  background: linear-gradient(135deg, #baced0, #3fc0cf);
}

.card-icon.police {
  background: linear-gradient(135deg, #baced0, #3fc0cf);
}

.card-icon.passport {
  background: linear-gradient(135deg, #baced0, #3fc0cf);
}

.card-icon.dg {
  background: linear-gradient(135deg, #baced0, #3fc0cf);
}

.card-icon.shops {
  background: linear-gradient(135deg, #baced0, #a7af6f);
}

.card-icon.tour {
  background: linear-gradient(135deg, #baced0, #a7af6f);
}

.card-icon.act {
  background: linear-gradient(135deg, #baced0, #af715b);
}


.card-icon.shop {
  background: linear-gradient(135deg, #baced0, #af715b);
}

.card-badges {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .3rem;
}

.badge-rtps {
  background: #dcfce7;
  color: #15803d;
  font-size: .68rem;
  font-weight: 700;
  padding: .2rem .5rem;
  border-radius: 99px;
  display: flex;
  align-items: center;
  gap: .25rem;
}

.badge-days {
  background: var(--gold-100);
  color: var(--gold-500);
  font-size: .6rem;
  font-weight: 700;
  padding: .6rem .5rem;
  border-radius: 99px;
}

.service-card h3 {
  font-size: .97rem;
  font-weight: 700;
  margin-bottom: .4rem;
}

.service-card p {
  font-size: .83rem;
  color: var(--slate-500);
  flex: 1;
  margin-bottom: 1.1rem;
  line-height: 1.55;
}

.card-actions {
  display: flex;
  gap: .6rem;
  margin-top: auto;
}

.btn-docs {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  background: rgba(255, 255, 255, .65);
  color: var(--slate-700);
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: var(--radius-md);
  padding: .5rem .4rem;
  font-size: .78rem;
  font-weight: 600;
  transition: background var(--transition);
}

.btn-docs:hover {
  background: rgba(255, 255, 255, .9);
}

.btn-apply {
  flex: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  background: var(--green-600);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: .5rem .4rem;
  font-size: .78rem;
  font-weight: 700;
  transition: background var(--transition), transform var(--transition);
}

.btn-apply:hover {
  background: var(--green-500);
  transform: translateY(-1px);
}

.service-card-viewall {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
  border-color: var(--green-700);
  border-left-color: var(--gold-500);
  cursor: pointer;
  text-decoration: none;
  justify-content: center;
  align-items: flex-start;
}

.service-card-viewall h3 {
  color: var(--white) !important;
}

.service-card-viewall p {
  color: rgba(255, 255, 255, .65);
}

.card-icon.viewall {
  background: rgba(255, 255, 255, .12);
  color: var(--gold-400);
}

.btn-viewall {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  background: var(--gold-500);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: .55rem .5rem;
  font-size: .8rem;
  font-weight: 700;
  transition: background var(--transition), transform var(--transition);
}

.service-card-viewall:hover .btn-viewall {
  background: var(--gold-400);
  transform: translateY(-1px);
}

.ext-portals {
  padding: 5rem 0;
  background: var(--white);
}

.ext-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.ext-card {
  border: 1.5px solid;
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .6rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.ext-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.ext-card:nth-child(1) {
  background: #fce4ec;
  border-color: #f4aec7;
}

.ext-card:nth-child(1) .ext-icon {
  background: #f48fb1;
  color: #4a1b2a;
}

.ext-card:nth-child(1) h4 {
  color: #710f2d;
}

.ext-card:nth-child(1) p,
.ext-card:nth-child(1) .ext-link {
  color: #993556;
}

.ext-card:nth-child(2) {
  background: #e3f2fd;
  border-color: #90c4ef;
}

.ext-card:nth-child(2) .ext-icon {
  background: #90caf9;
  color: #042c53;
}

.ext-card:nth-child(2) h4 {
  color: #0c447c;
}

.ext-card:nth-child(2) p,
.ext-card:nth-child(2) .ext-link {
  color: #185fa5;
}

.ext-card:nth-child(3) {
  background: #e0f2f1;
  border-color: #80cbc4;
}

.ext-card:nth-child(3) .ext-icon {
  background: #80cbc4;
  color: #04342c;
}

.ext-card:nth-child(3) h4 {
  color: #085041;
}

.ext-card:nth-child(3) p,
.ext-card:nth-child(3) .ext-link {
  color: #0f6e56;
}

.ext-card:nth-child(4) {
  background: #faeeda;
  border-color: #f5c87a;
}

.ext-card:nth-child(4) .ext-icon {
  background: #fac76e;
  color: #412402;
}

.ext-card:nth-child(4) h4 {
  color: #633806;
}

.ext-card:nth-child(4) p,
.ext-card:nth-child(4) .ext-link {
  color: #854f0b;
}

.ext-card:nth-child(5) {
  background: #ede7f6;
  border-color: #bdb5e8;
}

.ext-card:nth-child(5) .ext-icon {
  background: #bdb5e8;
  color: #26215c;
}

.ext-card:nth-child(5) h4 {
  color: #3c3489;
}

.ext-card:nth-child(5) p,
.ext-card:nth-child(5) .ext-link {
  color: #534ab7;
}

.ext-card:nth-child(6) {
  background: #eaf3de;
  border-color: #aed581;
}

.ext-card:nth-child(6) .ext-icon {
  background: #aed581;
  color: #173404;
}

.ext-card:nth-child(6) h4 {
  color: #27500a;
}

.ext-card:nth-child(6) p,
.ext-card:nth-child(6) .ext-link {
  color: #3b6d11;
}


.ext-card:nth-child(7) {
  background: #ede7f6;
  border-color: #bdb5e8;
}

.ext-card:nth-child(7) .ext-icon {
  background: #bdb5e8;
  color: #26215c;
}

.ext-card:nth-child(7) h4 {
  color: #3c3489;
}

.ext-card:nth-child(7) p,
.ext-card:nth-child(7) .ext-link {
  color: #534ab7;
}

.ext-card:nth-child(8) {
  background: #faeeda;
  border-color: #f5c87a;
}

.ext-card:nth-child(8) .ext-icon {
  background: #fac76e;
  color: #412402;
}

.ext-card:nth-child(8) h4 {
  color: #633806;
}

.ext-card:nth-child(8) p,
.ext-card:nth-child(8) .ext-link {
  color: #854f0b;
}

.ext-card:nth-child(9) {
  background: #fce4ec;
  border-color: #f4aec7;
}

.ext-card:nth-child(9) .ext-icon {
  background: #f48fb1;
  color: #4a1b2a;
}

.ext-card:nth-child(9) h4 {
  color: #710f2d;
}

.ext-card:nth-child(9) p,
.ext-card:nth-child(9) .ext-link {
  color: #993556;
}


.ext-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.ext-card h4 {
  font-size: .95rem;
  font-weight: 700;
}

.ext-card p {
  font-size: .83rem;
  line-height: 1.5;
  flex: 1;
}

.ext-link {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .8rem;
  font-weight: 700;
  margin-top: .25rem;
}

.faq-section {
  padding: 5rem 0;
  background: var(--green-50);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.faq-category {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid;
}

.faq-category:nth-child(1) {
  background: #e8f5eb;
  border-color: #b2dfbd;
}

.faq-category:nth-child(1) .faq-cat-head {
  background: #1a5228;
}

.faq-category:nth-child(1) .faq-item {
  border-bottom-color: #c8e6c9;
}

.faq-category:nth-child(1) .faq-question:hover {
  background: #d4edda;
}

.faq-category:nth-child(1) .faq-question.active {
  background: #c8e6c9;
}

.faq-category:nth-child(2) {
  background: #e3f2fd;
  border-color: #90c4ef;
}

.faq-category:nth-child(2) .faq-cat-head {
  background: #0c447c;
}

.faq-category:nth-child(2) .faq-item {
  border-bottom-color: #bbdefb;
}

.faq-category:nth-child(2) .faq-question:hover {
  background: #d0e8f8;
}

.faq-category:nth-child(2) .faq-question.active {
  background: #bbdefb;
}

.faq-cat-head {
  color: var(--white);
  padding: 1rem 1.5rem;
  font-size: .88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.faq-item {
  border-bottom: 1px solid;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 1.5rem;
  text-align: left;
  background: none;
  transition: background var(--transition);
}

.faq-question.active .faq-toggle {
  transform: rotate(180deg);
  color: var(--green-600);
}

.faq-q-text {
  flex: 1;
  font-size: .88rem;
  font-weight: 600;
  color: var(--slate-800);
}

.faq-toggle {
  color: var(--slate-400);
  font-size: .75rem;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.2rem;
  font-size: .87rem;
  color: var(--slate-600);
  line-height: 1.65;
}

.faq-answer.open {
  display: block;
}

.faq-answer ul {
  list-style: disc;
  padding-left: 1.2rem;
}

.faq-answer ul li {
  margin-bottom: .45rem;
}

.faq-answer p {
  margin-bottom: .6rem;
}

.faq-note {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  background: var(--gold-100);
  border-left: 3px solid var(--gold-500);
  padding: .65rem .85rem;
  margin-top: .75rem;
  font-size: .82rem;
  color: #7a5a00;
}

.faq-note i {
  color: var(--gold-500);
  margin-top: .1rem;
  flex-shrink: 0;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10, 24, 40, 0.68);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--modal-shadow);
  width: 100%;
  max-width: 840px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-backdrop.active .modal-box {
  transform: translateY(0) scale(1);
}

.modal-hd {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 26px 18px;
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-900) 100%);
  position: relative;
  flex-shrink: 0;
}

.modal-hd::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500) 0%, transparent 70%);
}

.modal-hd h3 {
  flex: 1;
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
}

.modal-hd h3 i {
  color: var(--gold-400);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.10);
  color: var(--white);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: background 0.18s, border-color 0.18s, transform 0.18s;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.6);
  transform: rotate(90deg);
}

.modal-body {
  overflow-y: auto;
  padding: 26px 28px 10px;
  flex: 1;
  scroll-behavior: smooth;
}

.modal-body::-webkit-scrollbar {
  width: 5px;
}

.modal-body::-webkit-scrollbar-track {
  background: var(--modal-surface-2);
}

.modal-body::-webkit-scrollbar-thumb {
  background: var(--slate-200);
  border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
  background: #b0bdd0;
}

.modal-body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-800);
  margin: 0 0 18px;
  padding: 0 0 11px;
  border-bottom: 2px solid var(--green-100);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
}

.modal-body h4::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 16px;
  background: var(--gold-500);
  border-radius: 2px;
  flex-shrink: 0;
}

.modal-body table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0 0 24px;
  font-size: 0.855rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--modal-border), 0 2px 6px rgba(0, 0, 0, 0.06);
}

.modal-body table thead tr {
  background: var(--green-800);
}

.modal-body table thead th {
  color: var(--white);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 11px 14px;
  text-align: left;
  border: none;
  white-space: nowrap;
}

.modal-body table thead th:first-child {
  width: 48px;
  text-align: center;
}

.modal-body table tbody tr {
  background: var(--white);
  transition: background 0.14s;
}

.modal-body table tbody tr:nth-child(even) {
  background: var(--modal-surface-2);
}

.modal-body table tbody tr:hover {
  background: var(--green-50);
}

.modal-body table tbody td {
  padding: 11px 14px;
  color: var(--modal-text);
  border: none;
  border-bottom: 1px solid var(--modal-border);
  vertical-align: top;
  line-height: 1.5;
}

.modal-body table tbody tr:last-child td {
  border-bottom: none;
}

.modal-body table tbody td:first-child {
  font-weight: 700;
  color: var(--green-700);
  text-align: center;
  font-size: 0.8rem;
}

.modal-body table tbody td:nth-child(2) {
  font-weight: 600;
  color: var(--slate-900);
  min-width: 130px;
}

.modal-body table tbody td:last-child:not(:nth-child(2)):not(:nth-child(3)) {
  font-size: 0.8rem;
  color: var(--modal-warn);
  font-style: italic;
}

.modal-body h5 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--slate-900);
  margin: 4px 0 12px;
  padding: 10px 14px;
  background: var(--green-50);
  border-left: 4px solid var(--green-600);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
}

.modal-body h5::before {
  content: '\f0eb';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.82rem;
  color: var(--gold-500);
}

.modal-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 6px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.modal-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 9px 13px;
  background: var(--modal-success-bg);
  border-radius: var(--radius-md);
  font-size: 0.845rem;
  color: var(--modal-text-2);
  line-height: 1.5;
  border: 1px solid rgba(30, 126, 80, 0.12);
  transition: background 0.14s;
}

.modal-body ul li:hover {
  background: #d0ead9;
}

.modal-body ul li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--modal-success);
  font-size: 0.82rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.modal-body ul li strong {
  color: var(--slate-900);
  font-weight: 600;
}

.modal-body ul li:last-child {
  background: var(--modal-warn-bg);
  border-color: rgba(180, 83, 9, 0.14);
  color: var(--modal-warn);
}

.modal-body ul li:last-child::before {
  content: '\f071';
  color: var(--modal-warn);
}

.modal-body ul:only-of-type li:last-child {
  background: var(--modal-success-bg);
  border-color: rgba(30, 126, 80, 0.12);
  color: var(--modal-text-2);
}

.modal-body ul:only-of-type li:last-child::before {
  content: '\f058';
  color: var(--modal-success);
}

.modal-footer-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 14px 24px;
  border-top: 1px solid var(--modal-border);
  background: var(--modal-surface-2);
  flex-shrink: 0;
}

.btn-modal-close {
  padding: 8px 18px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--slate-200);
  background: transparent;
  color: var(--slate-700);
  font-size: 0.85rem;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: border-color 0.16s, color 0.16s;
}

.btn-modal-close:hover {
  border-color: var(--green-600);
  color: var(--green-700);
}

.btn-modal-apply {
  padding: 8px 20px;
  border-radius: var(--radius-md);
  border: none;
  background: var(--green-600);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background 0.18s, transform 0.12s;
}

.btn-modal-apply:hover {
  background: var(--green-500);
  transform: translateY(-1px);
}

.footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, .75);
  padding: 3.5rem 0 0;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1rem;
}

.footer-brand img {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: none;
}

.footer-brand h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
}

.footer-brand span {
  font-size: .78rem;
  color: var(--gold-400);
}

.brand-col p {
  font-size: .83rem;
  line-height: 1.65;
  margin-bottom: .75rem;
}

.nic-credit {
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
}

.nic-credit strong {
  color: var(--gold-400);
}

.footer-col h5 {
  color: var(--white);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col ul li {
  margin-bottom: .5rem;
}

.footer-col ul li a {
  font-size: .83rem;
  color: rgba(255, 255, 255, .6);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold-400);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 1.25rem 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Centers the text horizontally */
  gap: .3rem;
  font-size: .78rem;
  color: rgba(255, 255, 255, .45);
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1024px) {
  .qa-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-layout {
    grid-template-columns: 240px 1fr;
  }

  .ext-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .leader-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--green-900);
    padding: 1rem;
    gap: .25rem;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-auth {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .nav-inner {
    position: relative;
    flex-wrap: wrap;
  }

  .nav-brand {
    flex: 1;
  }

  .qa-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
  }

  .services-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .ext-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: .35rem;
  }

  .modal-backdrop {
    padding: 0;
    align-items: flex-end;
  }

  .modal-box {
    max-width: 100%;
    max-height: 92vh;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    transform: translateY(100%);
  }

  .modal-backdrop.active .modal-box {
    transform: translateY(0);
  }

  .modal-hd {
    padding: 16px 18px 14px;
  }

  .modal-body {
    padding: 18px 16px 8px;
  }

  .modal-body table thead th:nth-child(4),
  .modal-body table tbody td:nth-child(4) {
    display: none;
  }

  .modal-footer-bar {
    padding: 12px 16px;
  }
}

@media (max-width: 540px) {
  .qa-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ext-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .modal-body table thead th:nth-child(3),
  .modal-body table tbody td:nth-child(3) {
    display: none;
  }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  .ticker-track span {
    animation: none;
  }

  .slide {
    transition: none;
  }

  * {
    transition-duration: .01ms !important;
  }
}

.ct-nav {
  position: sticky;
  top: 0;
  background: var(--green-900);
  box-shadow: 0 2px 16px rgba(0, 0, 0, .28);
}

.ct-nav .nav-link {
  color: rgba(255, 255, 255, .82);
}

.ct-nav .nav-link:hover,
.ct-nav .nav-link.active {
  background: rgba(255, 255, 255, .12);
  color: var(--white);
}

.ct-hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ct-hero-bg {
  position: absolute;
  inset: 0;
  background: url('assets/img/banner/9.jpeg') center/cover no-repeat;
}

.ct-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(10, 26, 14, .92) 0%,
      rgba(15, 46, 26, .82) 55%,
      rgba(26, 82, 40, .72) 100%);
}

.ct-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 4rem 1.5rem 3.5rem;
  width: 100%;
}

.ct-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--white);
  line-height: 1.15;
  margin: .5rem 0 .9rem;
}

.ct-hero-sub {
  color: rgba(255, 255, 255, .78);
  font-size: 1.02rem;
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.ct-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.ct-chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(6px);
  color: var(--white);
  padding: .45rem 1rem;
  border-radius: 99px;
  font-size: .82rem;
  font-weight: 500;
}

.ct-chip i {
  color: var(--gold-400);
  font-size: .78rem;
}

.ct-breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
}

.ct-breadcrumb-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: .75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: var(--slate-500);
}

.ct-breadcrumb-inner a {
  color: var(--green-700);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: .35rem;
  transition: color var(--transition);
}

.ct-breadcrumb-inner a:hover {
  color: var(--green-500);
}

.ct-bc-sep {
  font-size: .65rem;
  color: var(--slate-200);
}

.ct-main {
  background: #ffffff;
  padding: 2.5rem 0 5rem;
  min-height: 60vh;
}

.ct-info-strip {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  background: var(--gold-100);
  border-left: 4px solid var(--gold-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: .95rem 1.2rem;
  margin-bottom: 2.5rem;
  font-size: .88rem;
  color: #7a5600;
  line-height: 1.55;
}

.ct-info-strip i {
  color: var(--gold-500);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: .1rem;
}

.ct-info-strip strong {
  color: #5a3c00;
}

.ct-section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--slate-200);
}

.ct-section-label-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
}

.admin-icon {
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
}

.tech-icon {
  background: linear-gradient(135deg, var(--accent-blue), #1a8fc7);
}

.ct-section-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--green-900);
  margin: 0;
  line-height: 1.2;
}

.ct-dept-tag {
  margin-left: auto;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 99px;
  flex-shrink: 0;
}

.admin-tag {
  background: var(--green-100);
  color: var(--green-700);
}

.tech-tag {
  background: #dbeafe;
  color: #1e40af;
}

.ct-cards-row {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.ct-cards-1col {
  grid-template-columns: minmax(0, 520px);
  justify-content: center;
}

.ct-cards-2col {
  grid-template-columns: repeat(2, 1fr);
}

.ct-person-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--slate-200);
  transition: transform var(--transition), box-shadow var(--transition);
}

.ct-person-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.ct-card-stripe {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.4rem 1.5rem;
}

.admin-stripe {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
  border-bottom: 3px solid var(--gold-500);
}

.tech-stripe {
  background: linear-gradient(135deg, #0c3566 0%, var(--accent-blue) 100%);
  border-bottom: 3px solid #60a5fa;
}

.ct-avatar-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .15);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
  font-size: 1.8rem;
}

.ct-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ct-avatar-fallback::after {
  content: '\f007';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: rgba(255, 255, 255, .45);
  font-size: 1.8rem;
}

.ct-card-meta {
  flex: 1;
}

.ct-person-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .2rem;
  line-height: 1.3;
}

.ct-person-role {
  font-size: .8rem;
  color: rgba(255, 255, 255, .72);
  line-height: 1.45;
}

.ct-card-body {
  padding: 1.4rem 1.5rem;
}

.ct-dept-badge {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-md);
  padding: .75rem 1rem;
  font-size: .84rem;
  color: var(--green-800);
  font-weight: 500;
  margin-bottom: 1.1rem;
  line-height: 1.5;
}

.ct-dept-badge i {
  color: var(--green-600);
  flex-shrink: 0;
  margin-top: .1rem;
}

.tech-dept {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1e3a6e;
}

.tech-dept i {
  color: var(--accent-blue);
}

.ct-contact-links {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.ct-contact-btn {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .85rem 1rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  border: 1.5px solid transparent;
}

.ct-contact-btn:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
  filter: brightness(0.97);
}

.email-btn {
  background: var(--green-50);
  border-color: var(--green-100);
}

.phone-btn {
  background: var(--gold-100);
  border-color: #f5d98a;
}

.ct-btn-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
}

.email-btn .ct-btn-icon {
  background: var(--green-600);
  color: var(--white);
}

.phone-btn .ct-btn-icon {
  background: var(--gold-500);
  color: var(--white);
}

.ct-btn-detail {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ct-btn-detail small {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  margin-bottom: .1rem;
}

.email-btn .ct-btn-detail {
  color: var(--green-800);
}

.email-btn .ct-btn-detail small {
  color: var(--green-600);
}

.phone-btn .ct-btn-detail {
  color: #7a4f00;
}

.phone-btn .ct-btn-detail small {
  color: var(--gold-500);
}

.ct-btn-arrow {
  font-size: .7rem;
  opacity: .35;
  margin-left: auto;
  transition: opacity var(--transition), transform var(--transition);
}

.ct-contact-btn:hover .ct-btn-arrow {
  opacity: .7;
  transform: translateX(3px);
}

.ct-helpline-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: var(--green-900);
  border-radius: var(--radius-xl);
  padding: 1.75rem 2rem;
  margin-top: 3rem;
  box-shadow: var(--shadow-lg);
}

.ct-helpline-left {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.ct-helpline-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--gold-400);
  flex-shrink: 0;
}

.ct-helpline-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .2rem;
}

.ct-helpline-sub {
  font-size: .83rem;
  color: rgba(255, 255, 255, .62);
}

.ct-helpline-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--gold-500);
  color: var(--white);
  padding: .75rem 1.4rem;
  border-radius: var(--radius-md);
  font-size: .88rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}

.ct-helpline-btn:hover {
  background: var(--gold-400);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .ct-cards-2col {
    grid-template-columns: 1fr;
  }

  .ct-cards-1col {
    grid-template-columns: 1fr;
  }

  .ct-helpline-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .ct-helpline-btn {
    width: 100%;
    justify-content: center;
  }

  .ct-hero-content {
    padding: 3rem 1.5rem 2.5rem;
  }

  .ct-hero-title {
    font-size: 2rem;
  }

  .ct-section-label {
    flex-wrap: wrap;
  }

  .ct-dept-tag {
    order: -1;
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .ct-card-stripe {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .ct-hero-chips {
    flex-direction: column;
  }
}

.hl-quick-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hl-quick-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .55rem;
  padding: 1.3rem .75rem 1.1rem;
  border-radius: var(--radius-lg);
  background: var(--qcl, #f4faf5);
  border: 1.5px solid var(--qcb, #b2dfbd);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.hl-quick-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

.hl-qc-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: #fff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.hl-qc-num {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--qc, #1e6b32);
  line-height: 1;
  font-family: var(--font-display);
}

.hl-qc-label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.hl-table-section {
  margin-bottom: 1rem;
}

.hl-table-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--slate-200);
  overflow: hidden;
}

.hl-search-wrap {
  position: relative;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--slate-200);
  background: var(--slate-100);
}

.hl-search-ico {
  position: absolute;
  left: 2.4rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--slate-500);
  font-size: .9rem;
  pointer-events: none;
}

.hl-search-input {
  width: 100%;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: .7rem 1rem .7rem 2.8rem;
  font-size: .9rem;
  font-family: var(--font-body);
  color: var(--slate-900);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.hl-search-input:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(30, 107, 50, .12);
}

.hl-search-input::placeholder {
  color: var(--slate-500);
}

.hl-table-wrap {
  overflow-x: auto;
}

.hl-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
}

.hl-table thead tr {
  background: var(--green-800);
}

.hl-table thead th {
  color: var(--white);
  font-weight: 600;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 12px 16px;
  text-align: left;
  white-space: nowrap;
  border: none;
}

.hl-th-no {
  width: 52px;
  text-align: center;
}

.hl-th-dial {
  width: 64px;
  text-align: center;
}

.hl-table tbody tr {
  border-bottom: 1px solid var(--slate-200);
  transition: background var(--transition);
}

.hl-table tbody tr:last-child {
  border-bottom: none;
}

.hl-table tbody tr:nth-child(even) {
  background: var(--slate-100);
}

.hl-table tbody tr:hover {
  background: var(--green-50);
}

.hl-table tbody td {
  padding: 12px 16px;
  color: var(--slate-700);
  vertical-align: middle;
  line-height: 1.45;
}

.hl-td-no {
  text-align: center;
  font-weight: 700;
  color: var(--green-700);
  font-size: .8rem;
}

.hl-td-service {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-weight: 600;
  color: var(--slate-900);
  white-space: nowrap;
}

.hl-svc-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
}

.hl-td-num {
  font-weight: 700;
  font-size: .92rem;
  color: var(--green-800);
  font-family: var(--font-display);
  white-space: nowrap;
}

.hl-cat-badge {
  display: inline-block;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .22rem .6rem;
  border-radius: 99px;
  white-space: nowrap;
}

.hl-cat-badge.emergency {
  background: #fef2f2;
  color: #dc2626;
}

.hl-cat-badge.welfare {
  background: #faf5ff;
  color: #9333ea;
}

.hl-cat-badge.utility {
  background: #f0fdf4;
  color: #1e6b32;
}

.hl-cat-badge.health {
  background: #ecfeff;
  color: #0891b2;
}

.hl-cat-badge.banking {
  background: #e3f2fd;
  color: #1d6fa4;
}

.hl-cat-badge.consumer {
  background: #fff7ed;
  color: #ea580c;
}

.hl-dial-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-600);
  color: var(--white);
  font-size: .8rem;
  margin: 0 auto;
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
}

.hl-dial-btn:hover {
  background: var(--green-500);
  transform: scale(1.12);
}

.hl-no-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  padding: 3rem 1.5rem;
  color: var(--slate-500);
  font-size: .9rem;
}

.hl-no-results i {
  font-size: 2rem;
  color: var(--slate-200);
}

@media (max-width: 1024px) {
  .hl-quick-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .hl-quick-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: .65rem;
  }

  .hl-qc-num {
    font-size: 1rem;
  }

  .hl-table thead th:nth-child(3) {
    display: none;
  }

  .hl-table tbody td:nth-child(3) {
    display: none;
  }

  .hl-td-service {
    white-space: normal;
  }
}

@media (max-width: 420px) {
  .hl-quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.os-section {
  padding: 5rem 0;
  background: var(--white);
}

.os-tabs {
  display: flex;
  gap: .5rem;
  border-bottom: 2px solid var(--slate-200);
  margin-bottom: 1.75rem;
}

.os-tab {
  padding: .65rem 1.25rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--slate-500);
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color var(--transition), border-color var(--transition);
  font-family: var(--font-body);
}

.os-tab:hover {
  color: var(--green-700);
}

.os-tab.active {
  color: var(--green-800);
  border-bottom-color: var(--green-600);
}

.os-tab-panel {
  display: none;
}

.os-tab-panel.active {
  display: block;
}

.os-table-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--slate-200);
  overflow: hidden;
}

.os-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}

.os-table thead tr {
  background: var(--green-800);
}

.os-table thead th {
  color: var(--white);
  font-weight: 600;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 12px 20px;
  text-align: left;
  border: none;
}

.os-table thead th:first-child {
  width: 75%;
}

.os-table tbody tr {
  border-bottom: 1px solid var(--slate-200);
  transition: background var(--transition);
}

.os-table tbody tr:last-child {
  border-bottom: none;
}

.os-table tbody tr:nth-child(even) {
  background: var(--slate-100);
}

.os-table tbody tr:hover {
  background: var(--green-50);
}

.os-table tbody td {
  padding: 14px 20px;
  color: var(--slate-700);
  vertical-align: middle;
  line-height: 1.5;
}

.os-svc-name {
  font-weight: 600;
  color: var(--slate-900);
  font-size: .88rem;
}

.os-visit-btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--green-600);
  color: var(--white);
  padding: .45rem 1rem;
  border-radius: var(--radius-md);
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
}

.os-visit-btn:hover {
  background: var(--green-500);
  transform: translateY(-1px);
}

.os-empty {
  padding: 2.5rem;
  text-align: center;
  color: var(--slate-500);
  font-size: .9rem;
  line-height: 1.7;
}

.os-empty i {
  display: block;
  font-size: 2rem;
  color: var(--slate-200);
  margin-bottom: .75rem;
}

.os-empty a {
  color: var(--green-600);
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 640px) {
  .os-tabs {
    flex-wrap: wrap;
    gap: .25rem;
  }

  .os-tab {
    font-size: .8rem;
    padding: .5rem .85rem;
  }
}

.appeal-section {
  padding: 4.5rem 0;
  background: var(--white);
}

.appeal-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 55%, var(--green-700) 100%);
  border-radius: var(--radius-xl);
  padding: 3.25rem 3rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.appeal-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500) 0%, var(--gold-400) 45%, transparent 90%);
  z-index: 2;
}

.appeal-watermark {
  position: absolute;
  right: -1.5rem;
  bottom: -2rem;
  font-size: 13rem;
  color: rgba(255, 255, 255, .05);
  transform: rotate(-18deg);
  z-index: 0;
  pointer-events: none;
  line-height: 1;
}

.appeal-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(201, 149, 42, .16);
  border: 1px solid rgba(201, 149, 42, .4);
  color: var(--gold-400);
  padding: .4rem 1rem;
  border-radius: 99px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 1.15rem;
}

.appeal-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 1.7rem);
  color: var(--white);
  line-height: 1.25;
  max-width: 640px;
  margin: 0 auto .85rem;
}

.appeal-desc {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, .72);
  font-size: .95rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 2rem;
}

.appeal-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.appeal-link-know {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: rgba(255, 255, 255, .88);
  font-size: .9rem;
  font-weight: 600;
  padding: .5rem 0;
  border-bottom: 1.5px solid rgba(255, 255, 255, .3);
  transition: color var(--transition), border-color var(--transition);
}

.appeal-link-know i:first-child {
  color: var(--gold-400);
  font-size: .85rem;
}

.appeal-link-know:hover {
  color: var(--white);
  border-color: var(--gold-400);
}

.appeal-arrow {
  display: inline-flex;
  transition: transform var(--transition);
}

.appeal-link-know:hover .appeal-arrow {
  transform: translateX(4px);
}

.appeal-btn-raise {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--gold-500);
  color: var(--white);
  padding: .85rem 1.8rem;
  border-radius: var(--radius-md);
  font-size: .92rem;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(201, 149, 42, .35);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.appeal-btn-raise i {
  font-size: .85rem;
}

.appeal-btn-raise:hover {
  background: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(201, 149, 42, .45);
}

@media (max-width: 768px) {
  .appeal-banner {
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-lg);
  }

  .appeal-watermark {
    font-size: 8rem;
    right: -1rem;
    bottom: -1.5rem;
  }

  .appeal-actions {
    flex-direction: column;
    gap: 1.1rem;
  }

  .appeal-btn-raise {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .appeal-section {
    padding: 3rem 0;
  }

  .appeal-title {
    font-size: 1.9rem;
  }
}

.ct-copyright-full {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
}

.ct-copyright-stripe {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 2rem 1.5rem;
  border-bottom: 3px solid var(--gold-500);
}

.ct-copyright-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .12);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.ct-copyright-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .2rem;
}

.ct-copyright-sub {
  font-size: .85rem;
  color: rgba(255, 255, 255, .7);
}

.ct-copyright-body {
  background: var(--white);
  padding: 1rem 9rem;
  font-family: 'Noto Sans', sans-serif;
}

.ct-copyright-body p {
  max-width: none;
  width: 100%;
  font-size: 1rem;
  color: var(--slate-700);
  line-height: 1.9;
  margin-bottom: 1.4rem;
}

.ct-copyright-body p:last-child {
  margin-bottom: 0;
}

.ct-points-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2.5rem 0;
}

.ct-point-card {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.ct-point-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.ct-point-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  color: var(--white);
  flex-shrink: 0;
}

.ct-point-icon.good {
  background: var(--green-600);
}

.ct-point-icon.warn {
  background: var(--gold-500);
}

.ct-point-text {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.ct-point-text strong {
  font-size: .9rem;
  color: var(--slate-900);
}

.ct-point-text span {
  font-size: .82rem;
  color: var(--slate-500);
  line-height: 1.5;
}

@media (max-width: 640px) {
  .ct-points-grid {
    grid-template-columns: 1fr;
  }

  .ct-copyright-stripe {
    padding: 1.4rem 1.25rem;
  }

  .ct-copyright-body {
    padding: 1rem 8rem;
  }

  .ct-copyright-body p {
    font-size: .80rem;
    line-height: 1.75;
  }
}

.more-services-cta {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--green-700);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.more-services-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500) 0%, transparent 75%);
}

.more-services-cta:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.msc-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .1);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.msc-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  min-width: 0;
}

.msc-text strong {
  color: var(--white);
  font-size: .98rem;
  font-weight: 700;
}

.msc-text span {
  color: rgba(255, 255, 255, .65);
  font-size: .84rem;
  line-height: 1.5;
}

.msc-arrow {
  display: flex;
  align-items: center;
  gap: .55rem;
  background: var(--gold-500);
  color: var(--white);
  padding: .7rem 1.2rem;
  border-radius: var(--radius-md);
  font-size: .85rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}

.more-services-cta:hover .msc-arrow {
  background: var(--gold-400);
  transform: translateX(3px);
}

@media (max-width: 640px) {
  .more-services-cta {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1.25rem;
  }

  .msc-arrow {
    width: 100%;
    justify-content: center;
  }
}

.service-search-wrap {
  margin: 0 0 1.4rem;
}

.service-search {
  position: relative;
  max-width: 480px;
}

.service-search input {
  width: 100%;
  padding: .85rem 2.6rem .85rem 2.7rem;
  font-size: .9rem;
  font-family: inherit;
  border: 1.5px solid var(--gold-500);
  border-radius: 12px;
  background: #fff;
  color: var(--slate-700, #334155);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.service-search input:focus {
  border-color: var(--gold-500, #b8860b);
  box-shadow: 0 0 0 3px var(--gold-100, #f5e6c8);
}

.service-search .search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--slate-500, #64748b);
  font-size: .85rem;
  pointer-events: none;
}

.service-search .search-clear {
  position: absolute;
  right: .7rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--slate-500, #64748b);
  font-size: .8rem;
  padding: .3rem;
  line-height: 1;
}

.service-search .search-clear:hover {
  color: var(--gold-500, #b8860b);
}

.search-count {
  margin: .5rem 0 0;
  font-size: .78rem;
  color: var(--slate-500, #64748b);
}

.service-card.hidden-by-search {
  display: none !important;
}

.no-results-msg {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--slate-500, #64748b);
  font-size: .9rem;
}

.no-results-msg i {
  display: block;
  font-size: 1.6rem;
  margin-bottom: .6rem;
  color: var(--slate-300, #cbd5e1);
}

.gov-swal {
  background: #0d2412 !important;
  border-radius: 16px !important;
  padding: 2.2rem 2rem 1.8rem !important;
  max-width: 420px !important;
  box-shadow: 0 20px 60px rgba(157, 170, 202, 0.25) !important;
  border-top: 5px solid var(--gold-500, #e1a50e);
  font-family: 'Inter', sans-serif;
}

.gov-swal~.sweet-overlay,
.sweet-overlay {
  background: rgba(15, 23, 42, 0.55) !important;
  backdrop-filter: blur(3px);
}

.gov-swal .sweet-alert .sa-icon.sa-info,
.gov-swal .sa-icon.sa-info {
  border-color: var(--gold-500, #c47637) !important;
  width: 62px !important;
  height: 62px !important;
  margin: 0 auto 1.2rem !important;
}

.gov-swal .sa-icon.sa-info::before,
.gov-swal .sa-icon.sa-info::after {
  background-color: var(--gold-500, #b8860b) !important;
}

.gov-swal h2,
.gov-swal .swal-title {
  font-size: 1.55rem !important;
  font-weight: 700 !important;
  color: var(--gold-500, #b8860b) !important;
  margin: 0 0 .6rem !important;
  padding: 0 !important;
}

.gov-swal p,
.gov-swal .swal-text {
  font-size: .92rem !important;
  color: var(--gold-100, #fdf3d7) !important;
  text-align: center;
  line-height: 1.55 !important;
  margin: 0 0 1.6rem !important;
}

.gov-swal .sa-button-container {
  display: flex !important;
  gap: .7rem !important;
  justify-content: center !important;
}

.gov-swal button {
  flex: 1 1 auto !important;
  background-color: #d78c13 !important;
  padding: .75rem 1rem !important;
  font-size: .85rem !important;
  font-weight: 700 !important;
  font-family: inherit !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  color: #050000 !important;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease !important;
}

.gov-swal .cancel,
.gov-swal .swal-button--cancel {
  background: #fff !important;
  color: #050000 !important;
  border: 1.5px solid var(--slate-200, #dc9f21) !important;
}

.gov-swal .cancel:hover,
.gov-swal .swal-button--cancel:hover {
  background: #f0f4f0 !important;
  border-color: var(--slate-200, #c98f18) !important;
}

.gov-swal .confirm {
  background: var(--gold-500, #c47637) !important;
  color: #fff !important;
  border: none !important;
}

.gov-swal .confirm:hover {
  background: var(--gold-600, #9a6f08) !important;
  box-shadow: 0 6px 16px rgba(184, 134, 11, 0.35) !important;
  transform: translateY(-1px) !important;
}

.gov-swal .confirm:focus,
.gov-swal .cancel:focus {
  outline: none !important;
}

.gov-swal h2::before {
  content: "\f35d";
  font-family: "Times New Roman", Times, serif;
  font-weight: 900;
  color: var(--gold-500, #b8860b);
  display: block;
  font-size: 1.4rem;
  margin-bottom: .5rem;
}

@media (max-width: 480px) {
  .gov-swal {
    padding: 1.8rem 1.4rem 1.5rem !important;
    margin: 0 1rem !important;
  }

  .gov-swal .sa-button-container {
    flex-direction: column !important;
  }
}

.hl-quick-card.qc-police {
  --qc: #dc2626;
  --qcl: #fef2f2;
  --qcb: #fecaca;
}

.hl-quick-card.qc-fire {
  --qc: #ea580c;
  --qcl: #fff7ed;
  --qcb: #fed7aa;
}

.hl-quick-card.qc-ambulance {
  --qc: #0891b2;
  --qcl: #ecfeff;
  --qcb: #a5f3fc;
}

.hl-quick-card.qc-women {
  --qc: #9333ea;
  --qcl: #faf5ff;
  --qcb: #e9d5ff;
}

.hl-quick-card.qc-child {
  --qc: #d97706;
  --qcl: #fffbeb;
  --qcb: #fde68a;
}

.hl-quick-card.qc-electricity {
  --qc: #1e6b32;
  --qcl: #f0fdf4;
  --qcb: #bbf7d0;
}

.hl-quick-card {
  background: var(--qcl);
  border: 1px solid var(--qcb);
  color: var(--qc);
}

.hl-quick-card .hl-qc-icon,
.hl-quick-card .hl-qc-num {
  color: var(--qc);
}

.hl-svc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hl-svc-icon.svc-police {
  background: #fef2f2;
  color: #dc2626;
}

.hl-svc-icon.svc-fire {
  background: #fff7ed;
  color: #ea580c;
}

.hl-svc-icon.svc-ambulance,
.hl-svc-icon.svc-covid {
  background: #ecfeff;
  color: #0891b2;
}

.hl-svc-icon.svc-telephone,
.hl-svc-icon.svc-electricity {
  background: #f0fdf4;
  color: #1e6b32;
}

.hl-svc-icon.svc-women {
  background: #faf5ff;
  color: #9333ea;
}

.hl-svc-icon.svc-child {
  background: #fffbeb;
  color: #d97706;
}

.hl-svc-icon.svc-pds {
  background: #fdf6e3;
  color: #c9952a;
}

.hl-svc-icon.svc-disability {
  background: #ede7f6;
  color: #7c3aed;
}

.hl-svc-icon.svc-consumer {
  background: #fff7ed;
  color: #ea580c;
}

.hl-svc-icon.svc-banking {
  background: #e3f2fd;
  color: #1d6fa4;
}

.ct-section-label-icon.section-icon-green {
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
}