/* ==========================================================================
   GLOBAL & RESET STYLES
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  background-color: #f8f9fa;
  color: #333;
}

/* ==========================================================================
   FULL-PAGE LOADER
   ========================================================================== */
#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-container {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #0060a8;
  border-bottom: 4px solid #ff0606;
  border-radius: 50%;
  animation: spinLoader 1.2s linear infinite;
}

.loader-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 50%;
}

.loader-text {
  margin-top: 18px;
  font-size: 15px;
  font-weight: 700;
  color: #002244;
  letter-spacing: 0.5px;
}

@keyframes spinLoader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ==========================================================================
   LAYOUT WRAPPER & TOP BAR
   ========================================================================== */
.hero-viewport-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.top-bar-wrapper {
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid #dcdcdc;
  flex-shrink: 0;
}

.top-bar {
  width: 95%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 6px 0;
  font-size: 12px;
  flex-wrap: wrap;
}

.top-bar-item {
  padding: 4px 10px;
  border-right: 1px solid #ccc;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #000;
}

.top-bar-item:last-child {
  border-right: none;
  padding-right: 0;
}

.top-header-left-group {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-right: auto;
}

.gov-block strong {
  font-size: 13px;
  color: #000;
  font-weight: 700;
  line-height: 1.2;
}

.gov-block span {
  font-size: 10.5px;
  color: #000;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.divider-line {
  width: 1px;
  height: 28px;
  background-color: #bbb;
}

.social-icons-grid {
  display: flex;
  gap: 8px;
  font-size: 12px;
}
.social-icons-grid a { text-decoration: none; }

.accessibility-controls {
  display: flex;
  align-items: center;
  gap: 3px;
  font-weight: bold;
  color: #000;
}

.top-bar select {
  padding: 2px 6px;
  font-size: 12px;
  border: 1px solid #ccc;
  border-radius: 2px;
  background: #fff;
}

/* ==========================================================================
   MAIN HEADER & NAVIGATION
   ========================================================================== */
.header-wrapper {
  width: 100%;
  background-color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.main-header {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  gap: 20px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-left img.emblem { height: 75px; }

.dept-title h1 {
  font-size: 22px;
  color: #002244;
  font-weight: 800;
  line-height: 1.2;
}

.dept-title p {
  font-size: 15px;
  color: #002244;
  font-weight: 700;
  margin-top: 3px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-right img { height: 70px; }

.navbar-wrapper {
  width: 100%;
  background-color: #0060a8;
  position: relative;
  flex-shrink: 0;
}

.navbar {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  background-color: #0060a8;
}

.nav-home {
  background-color: #003a66;
  padding: 12px 18px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 22px;
  padding: 10px 14px;
  cursor: pointer;
  margin-left: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  width: 100%;
  flex-wrap: wrap;
}

.nav-links li a {
  color: #ffffff;
  text-decoration: none;
  padding: 12px 16px;
  display: block;
  font-size: 15px;
  font-weight: 600;
  transition: background-color 0.2s;
}

.nav-links li a:hover,
.nav-links li a.active-link { background-color: #004b85; }

/* ==========================================================================
   PAGE BANNER & HERO SLIDER
   ========================================================================== */
.page-title-banner {
  background: linear-gradient(135deg, #003a66 0%, #0060a8 100%);
  color: #ffffff;
  padding: 35px 0;
  border-bottom: 4px solid #ff0606;
}

.banner-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.banner-container h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 6px;
}

.breadcrumb-text {
  font-size: 14px;
  color: #d0e8ff;
}

.breadcrumb-text a {
  color: #ffffff;
  text-decoration: none;
}

.hero-slider-wrapper {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #f8f9fa;
  overflow: hidden;
}

.hero-slider-container {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hero-slider-track {
  display: flex;
  width: 100%;
  transition: transform 0.6s ease-in-out;
}

.hero-slide { 
  min-width: 100%; 
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-slide img {
  width: 100vw;
  height: auto;
  max-height: 85vh;
  object-fit: cover;
  display: block;
}

.hero-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  width: 42px;
  height: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 10;
  transition: background-color 0.2s;
}

.hero-arrow-btn:hover { background-color: #0060a8; }
.hero-arrow-btn.left { left: 15px; border-radius: 4px; }
.hero-arrow-btn.right { right: 15px; border-radius: 4px; }

/* ==========================================================================
   HELPLINE STRIP
   ========================================================================== */
.helpline-banner-wrapper {
  width: 100%;
  background-color: #d8eefc;
  overflow: hidden;
  flex-shrink: 0;
}

.helpline-container {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  color: #111;
  height: 60px;
}

.helpline-blue-tag {
  background-color: #0060a8;
  height: 100%;
  position: relative;
  clip-path: polygon(0 0, 88% 0, 80% 100%, 0 100%);
  width: 24%;
  flex-shrink: 0;
  z-index: 2;
}

.helpline-text-marquee {
  width: 100%;
  padding-left: 15px;
  display: flex;
  align-items: center;
}

.helpline-text-marquee marquee {
  font-size: 15px;
  font-weight: bold;
  color: #111;
}

.main-page-content { width: 100%; }

/* ==========================================================================
   ABOUT SECTION & LEADERSHIP SLIDER
   ========================================================================== */
.about-section-wrapper {
  width: 90%;
  max-width: 1200px;
  margin: 30px auto;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.about-content {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: stretch;
}

.about-left {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #721c38;
  margin-bottom: 15px;
}

.about-header i { font-size: 26px; }
.about-header h2 { font-size: 24px; font-weight: bold; }

.about-text p {
  font-size: 15px;
  line-height: 1.65;
  color: #333333;
  text-align: justify;
  margin-bottom: 14px;
}

.about-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.btn-card {
  flex: 1;
  min-width: 120px;
  border: 1px solid #721c38;
  border-radius: 6px;
  padding: 12px 8px;
  text-align: center;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background-color: #fff;
  transition: all 0.2s ease-in-out;
}

.btn-card i { font-size: 22px; color: #721c38; }
.btn-card:hover { background-color: #fdf2f4; }

.about-right-slider {
  flex: 0.85;
  overflow: hidden;
  position: relative;
  border-left: 1px solid #eee;
  padding-left: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.minister-slider-viewport {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}

.minister-slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.minister-card {
  box-sizing: border-box;
  padding: 0 6px;
  text-align: center;
  flex: 0 0 50%;
  max-width: 50%;
}

.minister-img-box {
  border: 1px solid #dcdcdc;
  border-bottom: 3px solid #0060a8;
  background-color: #ffffff;
  padding: 4px;
  margin-bottom: 8px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  width: 100%;
}

.minister-img-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

.minister-card h3 {
  font-size: 14px;
  color: #002244;
  font-weight: 700;
  margin-bottom: 3px;
  line-height: 1.3;
  text-transform: uppercase;
}

.minister-card p {
  font-size: 11px;
  color: #666;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.m-arrow-btn {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #0060a8;
  border: 1px solid #d0d5dd;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  z-index: 5;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.m-arrow-btn:hover { background-color: #0060a8; color: #ffffff; }
.m-arrow-btn.prev { left: 4px; }
.m-arrow-btn.next { right: 4px; }

.minister-controls-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.minister-dot {
  width: 8px;
  height: 8px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.minister-dot.active {
  background-color: #0060a8;
  width: 18px;
  border-radius: 4px;
}

/* ==========================================================================
   STATISTICS & DASHBOARD SECTION
   ========================================================================== */
.health-stats-fullwidth {
  width: 100%;
  background: radial-gradient(circle at top right, #004d80 0%, #00294d 50%, #001933 100%);
  padding: 55px 0 50px 0;
  color: #ffffff;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}

.health-stats-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.health-stats-title {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 30px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.3px;
}

.health-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 28px;
}

.health-data-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 22px 20px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: all 0.35s ease;
}

.health-data-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-8px);
}

.card-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.card-head-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.card-theme-orange .card-head-icon { background: linear-gradient(135deg, #ff9900, #ff5500); color: #fff; }
.card-theme-green .card-head-icon { background: linear-gradient(135deg, #00e676, #00b0ff); color: #fff; }
.card-theme-cyan .card-head-icon { background: linear-gradient(135deg, #00d2ff, #0077ff); color: #fff; }
.card-theme-purple .card-head-icon { background: linear-gradient(135deg, #a855f7, #ec4899); color: #fff; }

.card-head-badge {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.12);
  color: #e0f2fe;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-number-value {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 4px;
}

.card-title-text {
  font-size: 15px;
  color: #bae6fd;
  font-weight: 600;
  margin-bottom: 16px;
}

.card-progress-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  overflow: hidden;
}

.card-progress-bar-fill { height: 100%; border-radius: 10px; }
.card-theme-orange .card-progress-bar-fill { background: linear-gradient(90deg, #ff9900, #ff5500); }
.card-theme-green .card-progress-bar-fill { background: linear-gradient(90deg, #00e676, #00b0ff); }
.card-theme-cyan .card-progress-bar-fill { background: linear-gradient(90deg, #00d2ff, #0077ff); }
.card-theme-purple .card-progress-bar-fill { background: linear-gradient(90deg, #a855f7, #ec4899); }

.insights-banner-card {
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  margin-top: 10px;
  gap: 20px;
}

.banner-center-text h3 {
  font-size: 19px;
  font-weight: 800;
  color: #00294d;
  margin-bottom: 4px;
}

.banner-center-text p {
  font-size: 14.5px;
  color: #475569;
  font-weight: 500;
}

.click-here-btn {
  background: linear-gradient(135deg, #0066cc, #004499);
  color: #ffffff;
  padding: 12px 26px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

/* ==========================================================================
   SUCCESS STORY SECTION
   ========================================================================== */
.success-story-section {
  width: 90%;
  max-width: 1200px;
  margin: 30px auto;
  background: #ffffff;
  border-radius: 12px;
  padding: 25px 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.story-slider-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 15px;
}

.story-slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.story-card {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  padding: 0 10px;
  box-sizing: border-box;
}

.story-card-inner {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.story-card-inner:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.story-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.story-card-body {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.story-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #002244;
  margin-bottom: 8px;
}

.story-card-text {
  font-size: 13.5px;
  color: #555;
  line-height: 1.5;
}

.story-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background-color: #ffffff;
  color: #0060a8;
  border: 1px solid #d0d5dd;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  z-index: 5;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
  transition: all 0.2s ease;
}

.story-arrow-btn:hover { background-color: #0060a8; color: #ffffff; }
.story-arrow-btn.prev { left: -5px; }
.story-arrow-btn.next { right: -5px; }

.story-controls-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}

.story-dot {
  width: 8px;
  height: 8px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.story-dot.active {
  background-color: #0060a8;
  width: 20px;
  border-radius: 4px;
}

.view-more-container {
  display: flex;
  justify-content: flex-end;
  margin-top: 15px;
  padding-right: 10px;
}

.view-more-btn {
  color: #6a1b29;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.view-more-btn:hover {
  color: #0056b3;
  transform: translateX(3px);
}

/* ==========================================================================
   INFORMATION CATEGORIES SECTION
   ========================================================================== */
.info-categories-section {
  width: 90%;
  max-width: 1200px;
  margin: 40px auto;
}

.category-section-header {
  text-align: center;
  margin-bottom: 30px;
}

.category-section-title {
  font-size: 26px;
  font-weight: 800;
  color: #721c38;
  display: inline-block;
  position: relative;
}

.category-section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: #e50914;
  margin: 8px auto 0;
  border-radius: 2px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.category-card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 4px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.category-icon-box {
  width: 55px;
  height: 55px;
  background-color: #0060a8;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  flex-shrink: 0;
}

.category-card-content {
  display: flex;
  flex-direction: column;
}

.category-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #024;
  margin-bottom: 6px;
}

.category-card-desc {
  font-size: 13px;
  color: #666666;
  line-height: 1.45;
}

/* ==========================================================================
   DOCUMENTS & LINKS SECTION
   ========================================================================== */
.portal-info-section {
  width: 90%;
  max-width: 1200px;
  margin: 30px auto;
  background: #ffffff;
  border-radius: 12px;
  padding: 25px 30px;
}

.portal-info-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.info-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #721c38;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 18px;
}

.docs-scroll-area {
  max-height: 260px;
  overflow-y: auto;
  padding-right: 10px;
}

.doc-item { 
  padding: 12px; 
  border-bottom: 1px solid #efefef;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}

.doc-item:hover {
  background-color: #fdf2f4;
  padding-left: 18px;
}

.doc-item p { 
  font-size: 15px;
  color: #001b36; 
  transition: color 0.2s ease;
}

.doc-item:hover p {
  color: #721c38;
  font-weight: 600;
}

.links-list-box { border: 1px solid #f0f0f0; border-radius: 6px; }

.link-item { 
  display: flex; 
  justify-content: space-between; 
  padding: 13px 15px; 
  border-bottom: 1px solid #f0f0f0; 
  color: #444; 
  text-decoration: none; 
  font-size: 14.5px;
  transition: background-color 0.2s;
}

.link-item:hover { background-color: #f8f9fa; color: #0060a8; }

/* ==========================================================================
   LOGIN CARD SECTION
   ========================================================================== */
.login-section {
  width: 100%;
  padding: 45px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-card {
  width: 100%;
  max-width: 520px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  padding: 32px 30px 28px 30px;
  border: 1px solid #cbd5e1;
}

.login-card-top-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  display: flex;
}

.top-line-orange {
  width: 35%;
  height: 100%;
  background-color: #f97316;
}

.top-line-blue {
  width: 65%;
  height: 100%;
  background-color: #0060a8;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #e0f2fe;
  color: #0060a8;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background-color: #0060a8;
  border-radius: 50%;
}

.login-title {
  font-size: 26px;
  font-weight: 800;
  color: #002244;
  margin-bottom: 6px;
}

.login-subtitle {
  font-size: 13.5px;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.input-box {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 14px;
  color: #64748b;
  font-size: 15px;
}

.custom-login-input {
  width: 100%;
  padding: 11px 14px 11px 40px;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  background-color: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 6px;
  outline: none;
  transition: all 0.2s ease;
}

.custom-login-input:focus {
  border-color: #0060a8;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 96, 168, 0.12);
}

.btn-login {
  width: 100%;
  background-color: #0060a8;
  color: #ffffff;
  border: none;
  padding: 12px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  transition: background-color 0.2s ease;
}

.btn-login:hover {
  background-color: #004b85;
}

.secured-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 24px 0 18px 0;
}

.secured-divider::before,
.secured-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #e2e8f0;
}

.secured-divider span {
  padding: 0 12px;
  font-size: 11px;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 1px;
}

.security-notice-box {
  background-color: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 12px 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.security-notice-box i {
  color: #0060a8;
  font-size: 15px;
  margin-top: 2px;
}

.security-notice-box p {
  font-size: 12px;
  color: #334155;
  font-weight: 600;
  line-height: 1.4;
}

/* ==========================================================================
   SUGGESTION FORM SECTION
   ========================================================================== */
.suggestion-section {
  width: 90%;
  max-width: 1100px;
  margin: 40px auto;
}


.suggestion-header-title {
  font-size: 18px;
  font-weight: 800;
  color: #0060a8;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.suggestion-header-title i {
  font-size: 20px;
  color: #0060a8;
}

.suggestion-inner-box {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 25px 30px;
}

.form-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-label {
  font-size: 13.5px;
  font-weight: 700;
  color: #1e293b;
}

.required-star {
  color: #ef4444;
}

.custom-input, .custom-select, .custom-textarea {
  width: 100%;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 14px;
  color: #0f172a;
  outline: none;
  transition: all 0.2s ease;
}

.custom-input:focus, .custom-select:focus, .custom-textarea:focus {
  border-color: #0060a8;
  box-shadow: 0 0 0 3px rgba(0, 96, 168, 0.12);
}

.textarea-group {
  margin-bottom: 6px;
}

.custom-textarea {
  height: 140px;
  resize: vertical;
}

.meta-text-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #0284c7;
  margin-top: 4px;
  margin-bottom: 18px;
  font-weight: 600;
}

.file-upload-box {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 6px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.file-upload-box input[type="file"] {
  font-size: 13px;
  color: #475569;
}

.captcha-row-group {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.captcha-input-wrapper {
  width: 250px;
}

.captcha-box-display {
  background: #ffffff;
  border: 1px solid #a855f7;
  padding: 6px 18px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 8px;
  color: #881337;
  border-radius: 4px;
  user-select: none;
  font-family: 'Courier New', Courier, monospace;
}

.captcha-refresh-btn {
  background: none;
  border: none;
  color: #0f172a;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.2s;
}

.captcha-refresh-btn:hover {
  transform: rotate(180deg);
}

.btn-action-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-submit {
  background: #0060a8;
  color: #ffffff;
  border: none;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s ease;
}

.btn-submit:hover {
  background: #004b85;
}

.btn-reset {
  background: #0284c7;
  color: #ffffff;
  border: none;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-reset:hover {
  background: #0369a1;
}

/* ==========================================================================
   TRACK FORM & STATUS SECTION
   ========================================================================== */
.track-section {
  width: 90%;
  max-width: 1100px;
  margin: 45px auto;
}


.track-header-title {
  font-size: 18px;
  font-weight: 800;
  color: #0060a8;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.track-header-title i {
  font-size: 20px;
}

.track-inner-box {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 25px 30px;
}

.radio-selection-row {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.radio-label-title {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
}

.custom-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
}

.custom-radio input[type="radio"] {
  accent-color: #0060a8;
  width: 16px;
  height: 16px;
}

.form-grid-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.input-box-group {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.input-box-group:focus-within {
  border-color: #0060a8;
  box-shadow: 0 0 0 3px rgba(0, 96, 168, 0.12);
}

.input-prefix {
  padding: 10px 12px;
  background-color: #f8fafc;
  color: #475569;
  font-weight: 700;
  font-size: 13.5px;
  border-right: 1px solid #cbd5e1;
  white-space: nowrap;
}

.custom-input {
  flex: 1;
  border: none;
  padding: 10px 14px;
  font-size: 14px;
  outline: none;
  color: #0f172a;
  font-weight: 500;
  background: transparent;
  width: 100%;
}

.captcha-row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.captcha-box {
  background: #ffffff;
  border: 1px solid #a855f7;
  padding: 6px 18px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 8px;
  color: #881337;
  border-radius: 4px;
  user-select: none;
  font-family: 'Courier New', Courier, monospace;
}

.btn-track {
  background: #0060a8;
  color: #ffffff;
  border: none;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s ease;
  margin-top: 10px;
}

.btn-track:hover {
  background: #004b85;
}

.status-result-panel {
  margin-top: 30px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 25px;
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.result-title {
  font-size: 16px;
  font-weight: 800;
  color: #002244;
  margin-bottom: 15px;
  border-bottom: 2px solid #0060a8;
  padding-bottom: 8px;
}

.status-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.status-table th, .status-table td {
  border: 1px solid #e2e8f0;
  padding: 12px 14px;
  font-size: 13.5px;
  text-align: left;
}

.status-table th {
  background-color: #f1f5f9;
  color: #1e293b;
  font-weight: 700;
}

.status-badge-pending {
  background-color: #fef3c7;
  color: #d97706;
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 12px;
}

/* ==========================================================================
   MULTI-STEP FORM & STEPPER WIZARD
   ========================================================================== */
.form-section {
  width: 90%;
  max-width: 1200px;
  margin: 45px auto;
  background: #ffffff;
  padding: 45px 50px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 34, 68, 0.08);
  border: 1px solid #eef2f6;
}

.form-header-box {
  text-align: center;
  margin-bottom: 40px;
}

.form-heading-title {
  color: #002244;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 8px;
}

.form-sub-title {
  color: #64748b;
  font-size: 15px;
  font-weight: 500;
}

.stepper-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 45px;
  padding: 0 10px;
}

.stepper-progress-line {
  position: absolute;
  top: 25px;
  left: 50px;
  right: 50px;
  height: 4px;
  background-color: #e2e8f0;
  z-index: 1;
  border-radius: 2px;
}

.stepper-progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #0060a8, #10b981);
  border-radius: 2px;
  transition: width 0.4s ease-in-out;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.step-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border: 2.5px solid #cbd5e1;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.step-item.active .step-icon-box {
  background: linear-gradient(135deg, #0060a8 0%, #004b85 100%);
  color: #ffffff;
  border-color: #0060a8;
  box-shadow: 0 6px 16px rgba(0, 96, 168, 0.3);
}

.step-item.completed .step-icon-box {
  background: #10b981;
  color: #ffffff;
  border-color: #10b981;
}

.step-label {
  margin-top: 12px;
}

/* ==========================================================================
   IMAGE POPUP (MODAL) STYLES
   ========================================================================== */
.popup-trigger {
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.popup-trigger:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.img-modal-overlay {
  display: none; 
  position: fixed; 
  z-index: 999999; 
  top: 0;
  left: 0;
  width: 100%; 
  height: 100%; 
  background-color: rgba(0, 0, 0, 0.88); 
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
  animation: fadeInModal 0.25s ease-out forwards;
}

@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}

.img-modal-box {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  animation: zoomInImage 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes zoomInImage {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.img-modal-close-btn {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #ffffff;
  font-size: 38px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 1000000;
}

.img-modal-close-btn:hover {
  color: #ff4d4d;
}

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */
.footer-wrapper {
  background-color: #002244;
  color: #ffffff;
  padding: 40px 0 25px 0;
  margin-top: 35px;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1fr;
  gap: 30px;
}

.footer-col h4 { 
  font-size: 16px;
  color: #52b2bf; 
  margin-bottom: 14px; 
}

.footer-col p, .footer-links a { 
  font-size: 14px;
  color: #cccccc; 
  text-decoration: none; 
  line-height: 1.5;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }

.bottom-footer-policy-bar {
  background-color: #062d6f;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bottom-footer-policy-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #d1d5db;
  text-align: center;
}

.bottom-footer-policy-container a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.2s ease;
}

.bottom-footer-policy-container a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.bottom-footer-policy-container .policy-divider {
  color: #6b7280;
  font-size: 11px;
}

.bottom-footer-copyright-bar {
  background-color: #cccccc;
  padding: 14px 0;
  color: #111827;
  font-size: 13.5px;
  text-align: center;
  line-height: 1.6;
}

.bottom-footer-copyright-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE STYLES)
   ========================================================================== */
@media (max-width: 1024px) {
  .top-bar { justify-content: center; gap: 8px; }
  .top-header-left-group { margin-right: 0; width: 100%; justify-content: center; margin-bottom: 4px; }
  
  .main-header { padding: 12px 0; gap: 15px; }
  .dept-title h1 { font-size: 18px; }
  .dept-title p { font-size: 13px; }
  .header-left img.emblem { height: 60px; }
  .header-right img { height: 55px; }

  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .health-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .footer-container { grid-template-columns: repeat(2, 1fr); gap: 25px; }
  
  .about-content { flex-direction: column; gap: 25px; }
  .about-right-slider {
    border-left: none;
    border-top: 1px solid #eee;
    padding-left: 0;
    padding-top: 20px;
  }

  .hero-slide img { max-height: 50vh; }
}

@media (max-width: 900px) {
  .form-grid-3 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header-right { display: none !important; }
  .menu-toggle { display: block; }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #004b85;
  }
  .nav-links.active { display: flex; }
  .nav-links li a {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .main-header {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  .header-left {
    flex-direction: column;
    text-align: center;
  }

  .hero-slide img {
    height: auto;
    max-height: 35vh;
    object-fit: cover;
  }

  .hero-arrow-btn {
    width: 32px;
    height: 38px;
    font-size: 16px;
  }

  .helpline-container { height: 36px; }
  .helpline-blue-tag { width: 35%; }
  .helpline-text-marquee marquee { font-size: 13px; }

  .about-section-wrapper, 
  .success-story-section, 
  .info-categories-section, 
  .portal-info-section {
    width: 94%;
    padding: 20px 15px;
    margin: 20px auto;
  }

  .minister-card { flex: 0 0 100%; max-width: 100%; }

  .minister-img-box {
    width: 100%;
    max-width: 280px;
    margin: 0 auto 10px auto;
  }

  .minister-img-box img {
    width: 100%;
    height: auto;
    max-height: 240px;
    object-fit: cover;
  }

  .story-card { flex: 0 0 100%; max-width: 100%; }
  .categories-grid { grid-template-columns: 1fr; }
  .portal-info-grid { grid-template-columns: 1fr; gap: 25px; }

  .health-stats-fullwidth { padding: 35px 0; margin: 25px 0; }
  .health-stats-title { font-size: 22px; }
  .health-cards-grid { grid-template-columns: 1fr; }

  .insights-banner-card {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
  }

  .form-grid-row { grid-template-columns: 1fr; }
  .login-card { padding: 25px 20px; }

  .footer-container { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .footer-col h4 { margin-bottom: 8px; }
  
  .bottom-footer-policy-container {
    flex-direction: column;
    gap: 8px;
  }
  .bottom-footer-policy-container .policy-divider { display: none; }
}

@media (max-width: 576px) {
  .top-header-left-group {
    flex-direction: column;
    gap: 2px;
    text-align: center;
  }
  .divider-line { display: none; }
  
  .top-bar-item { padding: 3px 6px; font-size: 11px; }

  .dept-title h1 { font-size: 16px; }
  .dept-title p { font-size: 12px; }

  .btn-card { min-width: 100%; }

  .category-card {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .category-icon-box {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .card-number-value { font-size: 26px; }
  .card-title-text { font-size: 13.5px; }
}


 @keyframes spinLoader {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* Top Bar */
    .top-bar-wrapper {
      width: 100%;
      background-color: #ffffff;
      border-bottom: 1px solid #dcdcdc;
    }

    .top-bar {
      width: 95%;
      max-width: 1300px;
      margin: 0 auto;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      padding: 6px 0;
      font-size: 12px;
      flex-wrap: wrap;
    }

    .top-bar-item {
      padding: 4px 10px;
      border-right: 1px solid #ccc;
      display: flex;
      align-items: center;
      gap: 6px;
      color: #000;
    }

    .top-bar-item:last-child {
      border-right: none;
      padding-right: 0;
    }

    .top-header-left-group {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-right: auto;
    }

    .gov-block span {
      font-size: 10.5px;
      color: #000;
      font-weight: 800;
      letter-spacing: 0.4px;
    }

    .divider-line {
      width: 1px;
      height: 28px;
      background-color: #bbb;
    }

    .social-icons-grid {
      display: flex;
      gap: 8px;
      font-size: 12px;
    }
    .social-icons-grid a { text-decoration: none; }

    .top-bar select {
      padding: 2px 6px;
      font-size: 12px;
      border: 1px solid #ccc;
      border-radius: 2px;
      background: #fff;
    }

    /* Header */
    .header-wrapper {
      width: 100%;
      background-color: #ffffff;
      box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    }

    .main-header {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 0;
      gap: 20px;
    }

    .header-left {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .header-left img.emblem { height: 75px; }

    .dept-title h1 {
      font-size: 22px;
      color: #002244;
      font-weight: 800;
      line-height: 1.2;
    }

    .dept-title p {
      font-size: 15px;
      color: #002244;
      font-weight: 700;
      margin-top: 3px;
    }

    .header-right {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .header-right img { height: 70px; }

    /* Navigation */
    .navbar-wrapper {
      width: 100%;
      background-color: #0060a8;
    }

    .navbar {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      background-color: #0060a8;
    }

    .nav-home {
      background-color: #003a66;
      padding: 12px 18px;
      color: #fff;
      text-decoration: none;
      font-size: 18px;
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      color: white;
      font-size: 22px;
      padding: 10px 14px;
      cursor: pointer;
      margin-left: auto;
    }

    .nav-links {
      display: flex;
      list-style: none;
      width: 100%;
      flex-wrap: wrap;
    }

    .nav-links li a {
      color: #ffffff;
      text-decoration: none;
      padding: 12px 16px;
      display: block;
      font-size: 15px;
      font-weight: 600;
      transition: background-color 0.2s;
    }

    .nav-links li a:hover,
    .nav-links li a.active-link { background-color: #004b85; }

    /* Page Banner Header */
    .page-title-banner {
      background: linear-gradient(135deg, #003a66 0%, #0060a8 100%);
      color: #ffffff;
      padding: 35px 0;
      border-bottom: 4px solid #ff0606;
    }

    .banner-container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
    }

    .banner-container h2 {
      font-size: 30px;
      font-weight: 800;
      margin-bottom: 6px;
    }

    .breadcrumb-text {
      font-size: 14px;
      color: #d0e8ff;
    }

    .breadcrumb-text a {
      color: #ffffff;
      text-decoration: none;
    }

    /* Main Form Layout */
    .form-section {
      width: 90%;
      max-width: 1200px;
      margin: 45px auto;
      background: #ffffff;
      padding: 45px 50px;
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0, 34, 68, 0.08);
      border: 1px solid #eef2f6;
    }

    .form-header-box {
      text-align: center;
      margin-bottom: 40px;
    }

    .form-heading-title {
      color: #002244;
      font-size: 26px;
      font-weight: 800;
      margin-bottom: 8px;
    }

    .form-sub-title {
      color: #64748b;
      font-size: 15px;
      font-weight: 500;
    }

    /* STEPPER WIZARD DESIGN */
    .stepper-container {
      position: relative;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 45px;
      padding: 0 10px;
    }

    .stepper-progress-line {
      position: absolute;
      top: 25px;
      left: 50px;
      right: 50px;
      height: 4px;
      background-color: #e2e8f0;
      z-index: 1;
      border-radius: 2px;
    }

    .stepper-progress-fill {
      width: 0%;
      height: 100%;
      background: linear-gradient(90deg, #0060a8, #10b981);
      border-radius: 2px;
      transition: width 0.4s ease-in-out;
    }

    .step-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .step-icon-box {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background-color: #ffffff;
      color: #94a3b8;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      border: 2.5px solid #cbd5e1;
      transition: all 0.3s ease;
      box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    }

    .step-item.active .step-icon-box {
      background: linear-gradient(135deg, #0060a8 0%, #004b85 100%);
      color: #ffffff;
      border-color: #0060a8;
      box-shadow: 0 6px 16px rgba(0, 96, 168, 0.3);
    }

    .step-item.completed .step-icon-box {
      background: #10b981;
      color: #ffffff;
      border-color: #10b981;
    }

    .step-label {
      margin-top: 12px;
      font-size: 13.5px;
      font-weight: 600;
      color: #64748b;
      transition: color 0.3s ease;
    }

    .step-item.active .step-label {
      color: #002244;
      font-weight: 700;
    }

    .step-item.completed .step-label {
      color: #10b981;
      font-weight: 700;
    }

    /* FORM CARDS */
    .form-card-body {
      background: #f8fafc;
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      padding: 35px;
      max-width: 850px;
      margin: 0 auto;
    }

    .step-form-content {
      display: none;
    }

    .step-form-content.active {
      display: block;
      animation: fadeInStep 0.3s ease-in-out;
    }

    @keyframes fadeInStep {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .input-field-wrapper {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 20px;
    }

    .field-label {
      font-size: 14px;
      font-weight: 700;
      color: #1e293b;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .field-label .required-star { color: #ef4444; }

    .input-box-group {
      display: flex;
      align-items: center;
      background: #ffffff;
      border: 1.5px solid #cbd5e1;
      border-radius: 8px;
      overflow: hidden;
      transition: all 0.25s ease;
    }

    .input-box-group:focus-within {
      border-color: #0060a8;
      box-shadow: 0 0 0 4px rgba(0, 96, 168, 0.12);
    }

    .input-prefix {
      padding: 12px 14px;
      background-color: #f1f5f9;
      color: #475569;
      font-weight: 600;
      font-size: 14px;
      border-right: 1px solid #cbd5e1;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .custom-input, .custom-select, .custom-textarea {
      flex: 1;
      border: none;
      padding: 12px 16px;
      font-size: 14.5px;
      outline: none;
      color: #0f172a;
      font-weight: 500;
      background: transparent;
      width: 100%;
    }

    .custom-select {
      background: #ffffff;
      border: 1.5px solid #cbd5e1;
      border-radius: 8px;
      padding: 12px 16px;
    }

    .custom-textarea {
      resize: vertical;
      min-height: 110px;
      border: 1.5px solid #cbd5e1;
      border-radius: 8px;
      background: #ffffff;
    }

    .radio-group-row {
      display: flex;
      gap: 20px;
      align-items: center;
      padding: 8px 0;
    }

    .radio-option {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
    }

    .radio-option input[type="radio"] {
      accent-color: #0060a8;
      width: 16px;
      height: 16px;
    }

    .char-count-hint {
      font-size: 12px;
      color: #0284c7;
      margin-top: 4px;
      text-align: right;
    }

    .captcha-container {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-top: 8px;
    }

    .captcha-box {
      background: #e2e8f0;
      border: 1px solid #cbd5e1;
      padding: 8px 20px;
      font-size: 20px;
      font-weight: 800;
      letter-spacing: 6px;
      color: #0f172a;
      border-radius: 6px;
      user-select: none;
    }

    .captcha-refresh-btn {
      background: none;
      border: none;
      color: #0060a8;
      font-size: 18px;
      cursor: pointer;
      transition: transform 0.2s;
    }

    .captcha-refresh-btn:hover {
      transform: rotate(180deg);
    }

    .declaration-box {
      margin-top: 20px;
      padding: 14px;
      background: #eff6ff;
      border: 1px solid #bfdbfe;
      border-radius: 8px;
      display: flex;
      gap: 10px;
      align-items: flex-start;
    }

    .declaration-box input[type="checkbox"] {
      accent-color: #0060a8;
      width: 18px;
      height: 18px;
      margin-top: 2px;
    }

    .declaration-box label {
      font-size: 13px;
      color: #1e3a8a;
      font-weight: 600;
      line-height: 1.4;
      cursor: pointer;
    }

    .btn-group-row {
      display: flex;
      gap: 12px;
      margin-top: 25px;
    }

    .submit-btn-action {
     
      background: linear-gradient(135deg, #0060a8 0%, #004b85 100%);
      color: #ffffff;
      border: none;
      padding: 14px 20px;
      font-size: 15px;
      font-weight: 700;
      border-radius: 8px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      box-shadow: 0 4px 12px rgba(0, 96, 168, 0.25);
      transition: all 0.25s ease;
    }

    .submit-btn-action:hover {
      background: linear-gradient(135deg, #004b85 0%, #003a66 100%);
      transform: translateY(-2px);
    }

    .btn-secondary {
      background: #e2e8f0;
      color: #475569;
      box-shadow: none;
      flex: 0 0 140px;
    }

    .btn-secondary:hover {
      background: #cbd5e1;
      color: #0f172a;
      transform: none;
    }

    /* RECEIPT STYLES */
    .receipt-container {
      background: #ffffff;
      border: 1px solid #cbd5e1;
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }

    .receipt-header {
      border-bottom: 2px dashed #cbd5e1;
      padding-bottom: 15px;
      margin-bottom: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .receipt-title h3 {
      font-size: 18px;
      color: #002244;
      font-weight: 800;
    }

    .receipt-title p {
      font-size: 12px;
      color: #64748b;
    }

    .status-badge {
      background-color: #dcfce7;
      color: #15803d;
      padding: 6px 14px;
      border-radius: 20px;
      font-weight: 700;
      font-size: 13px;
      border: 1px solid #86efac;
    }

    .receipt-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-bottom: 20px;
    }

    .receipt-item {
      display: flex;
      flex-direction: column;
    }

    .receipt-label {
      font-size: 12px;
      color: #64748b;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .receipt-value {
      font-size: 14.5px;
      color: #0f172a;
      font-weight: 700;
      margin-top: 2px;
    }

    .receipt-full-width {
      grid-column: span 2;
    }

    .receipt-box-content {
      background: #f8fafc;
      padding: 12px;
      border-radius: 6px;
      border: 1px solid #e2e8f0;
      font-size: 14px;
      color: #334155;
      line-height: 1.5;
    }

    /* MODAL OVERLAY */
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(15, 23, 42, 0.65);
      backdrop-filter: blur(4px);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      padding: 20px;
    }

    .modal-card {
      background: #ffffff;
      width: 100%;
      max-width: 680px;
      border-radius: 12px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
      overflow: hidden;
      animation: modalFadeIn 0.3s ease-out;
      border: 1px solid #e2e8f0;
    }

    @keyframes modalFadeIn {
      from { opacity: 0; transform: translateY(-20px) scale(0.98); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }

    .modal-header {
      padding: 16px 20px;
      background: #ffffff;
      border-bottom: 1px solid #eef2f6;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .modal-title {
      font-size: 20px;
      font-weight: 700;
      color: #002244;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .modal-close-btn {
      background: #f1f5f9;
      border: none;
      font-size: 14px;
      color: #475569;
      cursor: pointer;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
    }

    .modal-close-btn:hover { background: #e2e8f0; color: #0f172a; }

    .modal-body {
      padding: 24px;
      max-height: 70vh;
      overflow-y: auto;
    }

    /* THEME-ALIGNED OTP POPUP STYLES */
    .otp-popup-card {
      max-width: 580px;
    }

    .otp-popup-card .modal-header {
      background: #ffffff;
      border-bottom: 1px solid #eef2f6;
      padding: 18px 24px;
    }

    .otp-inner-box {
      background-color: #f8fafc;
      border: 1px solid #e2e8f0;
      border-radius: 8px;
      padding: 20px;
      margin-bottom: 15px;
    }

    .otp-notice-text {
      font-size: 13.5px;
      color: #475569;
      line-height: 1.5;
      margin-bottom: 16px;
    }

    .otp-field-label {
      font-weight: 700;
      font-size: 14px;
      color: #1e293b;
      margin-bottom: 8px;
      display: block;
    }

    .otp-input-control {
      width: 100%;
      padding: 12px 16px;
      font-size: 15px;
      border: 1.5px solid #cbd5e1;
      border-radius: 8px;
      background: #ffffff;
      outline: none;
      color: #0f172a;
      font-weight: 600;
      transition: all 0.25s ease;
    }

    .otp-input-control:focus {
      border-color: #0060a8;
      box-shadow: 0 0 0 4px rgba(0, 96, 168, 0.12);
    }

    .otp-resend-row {
      margin-top: 20px;
      font-size: 13.5px;
      color: #475569;
    }

    .otp-resend-action-bar {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 8px;
    }

    .btn-resend-highlight {
      background-color: #0060a8;
      color: #ffffff;
      padding: 8px 16px;
      font-size: 13.5px;
      font-weight: 600;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      display: inline-block;
      transition: background 0.2s;
    }

    .btn-resend-highlight:hover {
      background-color: #004b85;
    }

    .otp-timer-text {
      font-weight: 700;
      font-size: 15px;
      color: #002244;
    }

    .otp-footer-actions {
      display: flex;
      justify-content: flex-end;
      gap: 10px;
      margin-top: 20px;
    }

    .btn-otp-action {
      padding: 10px 22px;
      font-size: 14px;
      font-weight: 600;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .btn-otp-close {
      background-color: #f1f5f9;
      color: #475569;
      border: 1px solid #cbd5e1;
    }

    .btn-otp-close:hover {
      background-color: #e2e8f0;
      color: #0f172a;
    }

    .btn-otp-verify {
      background: linear-gradient(135deg, #0060a8 0%, #004b85 100%);
      color: #ffffff;
      box-shadow: 0 4px 12px rgba(0, 96, 168, 0.2);
    }

    .btn-otp-verify:hover {
      background: linear-gradient(135deg, #004b85 0%, #003a66 100%);
    }

    .notice-title {
      font-size: 14px;
      font-weight: 700;
      color: #1e293b;
      margin-bottom: 14px;
      line-height: 1.5;
      background: #f8fafc;
      padding: 12px 16px;
      border-left: 4px solid #0060a8;
      border-radius: 4px;
    }

    .terms-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      padding-left: 5px;
    }

    .terms-list li {
      font-size: 13.5px;
      color: #334155;
      line-height: 1.5;
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }

    .terms-list li span.item-num {
      font-weight: 700;
      color: #0060a8;
      min-width: 18px;
    }

    .checkbox-container {
      margin-top: 20px;
      padding-top: 16px;
      border-top: 1px solid #e2e8f0;
      display: flex;
      align-items: flex-start;
      gap: 12px;
      cursor: pointer;
    }

    .checkbox-container input[type="checkbox"] {
      width: 18px;
      height: 18px;
      accent-color: #0060a8;
      cursor: pointer;
      margin-top: 2px;
    }

    .checkbox-label {
      font-size: 13px;
      font-weight: 600;
      color: #1e293b;
      line-height: 1.5;
      cursor: pointer;
      user-select: none;
    }

    .modal-footer {
      padding: 16px 24px;
      background: #f8fafc;
      border-top: 1px solid #e2e8f0;
      display: flex;
      justify-content: flex-end;
      gap: 12px;
    }

    .btn {
      padding: 10px 22px;
      font-size: 14px;
      font-weight: 600;
      border-radius: 8px;
      cursor: pointer;
      border: none;
      transition: all 0.25s ease;
    }

    .btn-cancel {
      background: #ffffff;
      color: #475569;
      border: 1px solid #cbd5e1;
    }

    .btn-continue {
      background: #0060a8;
      color: #ffffff;
      box-shadow: 0 4px 12px rgba(0, 96, 168, 0.2);
    }

    .btn-continue:disabled {
      background: #94a3b8;
      cursor: not-allowed;
      box-shadow: none;
      opacity: 0.7;
    }

    /* Footer */
    .footer-wrapper {
      background-color: #002244;
      color: #ffffff;
      padding: 40px 0 25px 0;
      margin-top: 60px;
    }

    .footer-container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1.5fr 1fr 1fr;
      gap: 30px;
    }

    .footer-col h4 { font-size: 16px; color: #52b2bf; margin-bottom: 14px; }
    .footer-col p, .footer-links a { font-size: 14px; color: #cccccc; text-decoration: none; line-height: 1.5; }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 8px; }

    .bottom-footer-policy-bar {
      background-color: #062d6f;
      padding: 12px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .bottom-footer-policy-container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      font-size: 13px;
      color: #d1d5db;
    }

    .bottom-footer-copyright-bar {
      background-color: #cccccc;
      padding: 14px 0;
      color: #111827;
      font-size: 13.5px;
      text-align: center;
    }

    .bottom-footer-copyright-container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
      font-weight: 600;
    }

    @media (max-width: 768px) {
      .header-right { display: none !important; }
      .menu-toggle { display: block; }
      .nav-links { display: none; flex-direction: column; width: 100%; background-color: #004b85; }
      .nav-links.active { display: flex; }
      .form-section { padding: 30px 20px; }
      .stepper-container { flex-wrap: wrap; gap: 15px; justify-content: center; }
      .stepper-progress-line { display: none; }
      .footer-container { grid-template-columns: 1fr; text-align: center; }
      .receipt-grid { grid-template-columns: 1fr; }
      .receipt-full-width { grid-column: span 1; }
    }

    /* HIGH-QUALITY PRINT MEDIA STYLES */
    @media print {
      body * {
        visibility: hidden !important;
      }
      
      #printableReceipt, #printableReceipt * {
        visibility: visible !important;
      }
      
      #printableReceipt {
        position: absolute !important;
        left: 0 !important;
        top: 0 !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 20px !important;
        border: 1px solid #000 !important;
        box-shadow: none !important;
        background: #fff !important;
      }

      .status-badge {
        border: 1px solid #000 !important;
        color: #000 !important;
      }

      @page {
        size: A4;
        margin: 15mm;
      }
    }