/* ================= PREMIUM TABS ================= */

.tabs-section {
  position: sticky;
  top: 110px;
  z-index: 1200;

  padding: 10px;
  background: #f2e6d8;
}

/* HEADER */
.tabs-header {
  display: flex;
  gap: 6px;

  background: #e6d3bd;
  border-radius: 16px;
  padding: 6px;

  overflow-x: auto;
  scroll-behavior: smooth;
}

/* HIDE SCROLLBAR */
.tabs-header::-webkit-scrollbar {
  display: none;
}

/* TAB BUTTON */
.tab-btn {
  flex: 0 0 auto;
  min-width: 120px;

  padding: 12px;
  border: none;
  background: transparent;

  cursor: pointer;
  font-weight: 600;
  font-size: 14px;

  color: #222;
  border-radius: 12px;

  transition: all 0.3s ease;
}

/* ACTIVE */
.tab-btn.active {
  background: linear-gradient(135deg, #ff6e00, #ff8c1a);
  color: #000;
}

/* CONTENT */
.tabs-content {
  margin-top: 15px;
  background: white;
  padding: 20px;
  border-radius: 12px;

  overflow: hidden;
}

/* CONTENT ANIMATION */
.tab-content {
  display: none;
  animation: slideFade 0.4s ease;
}

.tab-content.active {
  display: block;
}

/* ANIMATION */
@keyframes slideFade {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .tab-btn {
    min-width: 100px;
    font-size: 12px;
  }
}
/* ================= COMMAND CENTER ================= */

.command-center {
  padding: 25px 15px;
  background: #f4f4f4;
}

/* TITLE */
.cc-title {
  color: #148a44;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* GRID */
.cc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.cc-card {
  background: #eaeaea;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
}

/* HEADINGS */
.cc-card h3 {
  color: #ff6e00;
  margin-bottom: 15px;
  font-size: 16px;
}

/* STATS */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.stat-box {
  background: #ddd;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
}

.stat-box h2 {
  color: #148a44;
  font-size: 22px;
}

.stat-box p {
  font-size: 13px;
}

/* LIST */
.cc-list {
  list-style: none;
  padding: 0;
}

.cc-list li {
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
  font-size: 14px;
}

/* MAP */
.cc-map {
  width: 100%;
  height: 180px;
  border: none;
  border-radius: 10px;
}

/* ALERT */
.alert-box {
  background: #ff6e00;
  color: white;
  padding: 18px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
}

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

/* TABLET */
@media (max-width: 1024px) {
  .cc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .cc-grid {
    grid-template-columns: 1fr;
  }

  .cc-title {
    font-size: 22px;
  }

  .cc-map {
    height: 160px;
  }
}
/* ================= ADMIN SECTION ================= */

.admin-section {
  padding: 20px;
  background: #f4f4f4;
}

/* GRID */
.admin-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 20px;
}

/* LEFT STACK */
.admin-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* CARD */
.card {
  background: #eaeaea;
  padding: 18px;
  border-radius: 12px;
}

/* HEADINGS */
.card h3 {
  color: #ff6e00;
  margin-bottom: 12px;
}

/* LIST */
.card ul {
  list-style: none;
  padding: 0;
}

.card li {
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
}

/* FORM */
select,
textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

textarea {
  min-height: 80px;
}

button {
  background: #148a44;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
}

/* TABLE */
.table-wrapper {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

thead {
  background: #ff6e00;
  color: white;
}

th,
td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: center;
}

/* TOTAL BOXES */
.totals {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.total-box {
  flex: 1;
  background: #ddd;
  text-align: center;
  padding: 15px;
  border-radius: 10px;
}

.total-box h2 {
  color: #148a44;
}

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

@media (max-width: 1024px) {
  .admin-grid {
    grid-template-columns: 1fr;
  }
}
.hospital-section {
  padding: 20px;
  background: #f4f4f4;
}

.table-title {
  background: #ff6e00;
  color: white;
  text-align: center;
  padding: 10px;
  font-weight: bold;
}

#searchInput {
  margin: 10px 0;
  padding: 8px;
  width: 200px;
}

.table-wrapper {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

thead {
  background: #ff6e00;
  color: white;
}

th,
td {
  border: 1px solid #ccc;
  padding: 8px;
  font-size: 13px;
  text-align: center;
}

td:nth-child(5) {
  text-align: left;
}

/* MOBILE */
@media (max-width: 768px) {
  th,
  td {
    font-size: 11px;
  }
}
.tabs-content {
  max-height: calc(100vh - 180px);
  overflow-y: auto;
}
.two-column-section {
  padding: 20px;
  background: #f4f4f4;
}

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.card {
  background: #eaeaea;
  padding: 15px;
  border-radius: 10px;
}

/* TABLES */
table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

thead {
  background: #ff6e00;
  color: white;
}

th,
td {
  border: 1px solid #ccc;
  padding: 8px;
  font-size: 13px;
  text-align: center;
}

td:first-child,
td:nth-child(2) {
  text-align: left;
}

.section-title {
  color: #ff6e00;
  margin-bottom: 10px;
}

/* TOTAL ROW */
.total-row {
  font-weight: bold;
  background: #ddd;
}

/* MOBILE */
@media (max-width: 900px) {
  .two-col-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= KPI SECTION (50% WIDTH) ================= */

.kpi-section {
  padding: 15px;
  background: #f4f4f4;

  display: flex;
  flex-direction: column;
  gap: 12px;

  /* ✅ THIS DOES THE MAGIC */
  max-width: 600px; /* ~50% width */
  margin: 0 auto; /* center it */
}

/* ITEM */
.kpi-item {
  background: #e6e6e6;
  padding: 14px 18px;
  border-radius: 10px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  font-size: 15px;
  font-weight: 500;

  transition: all 0.3s ease;
}

/* HOVER (UPGRADE) */
.kpi-item:hover {
  background: #ddd;
  transform: translateY(-2px);
}

/* VALUE */
.kpi-value {
  color: #ff6e00;
  font-weight: bold;
  font-size: 16px;
}

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

@media (max-width: 768px) {
  .kpi-item {
    font-size: 13px;
    padding: 12px;
  }

  .kpi-value {
    font-size: 14px;
  }
}
/* ================= DIRECTORATE BADGE ================= */

.directorate-section {
  padding: 30px 15px;
  background: #f4f4f4;
  max-width: 750px;
  margin: 0 auto;
}

/* GRID */
.directorate-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* CARD */
.directorate-card {
  text-decoration: none;
  text-align: center;
  position: relative;
}

/* PERFECT CIRCLE BADGE */
.directorate-circle {
  width: 100%;
  aspect-ratio: 1/1; /* 🔥 keeps perfect square */
  border-radius: 50%;
  overflow: hidden;

  /* 🔥 THE RING (LIKE YOUR IMAGE) */
  border: 12px solid #2f9bb3;

  background: white;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.4s ease;
}

/* IMAGE */
.directorate-circle img {
  width: 90%;
  height: 90%;
  object-fit: contain; /* keeps icon inside nicely */
}

/* TITLE BELOW */
.directorate-overlay {
  margin-top: 10px;
  font-weight: 600;
  font-size: 14px;
  color: #222;
}

/* HOVER EFFECT 🔥 */
.directorate-card:hover .directorate-circle {
  transform: scale(1.05);
  border-color: #ff6e00;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .directorate-grid {
    grid-template-columns: 1fr;
  }

  .directorate-overlay {
    font-size: 13px;
  }
}
/* ================= PROFILE SECTION ================= */

.profile-section {
  background: #f4f4f4;
  padding: 20px;
  text-align: center;
}

/* PROFILE HEADER */
.profile-header {
  margin-bottom: 25px;
}

.profile-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
}

/* NAME */
.profile-header h2 {
  color: #166534;
  margin: 10px 0 5px;
}

/* ROLE */
.profile-header p {
  color: #666;
  margin-bottom: 15px;
}

/* BADGES */
.profile-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.profile-badges span {
  background: #ff6e00;
  color: white;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
}

/* ================= CARD ================= */

.personnel-card {
  background: #eaeaea;
  border-radius: 15px;
  padding: 20px;
  max-width: 420px;
  margin: auto;
  text-align: left;
}

/* TITLE */
.personnel-card h3 {
  text-align: center;
  margin-bottom: 5px;
}

.personnel-card .date {
  text-align: center;
  color: #ff6e00;
  font-weight: bold;
  margin-bottom: 20px;
}

/* LIST */
.personnel-list .row {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 12px 0;
  border-bottom: 1px solid #ccc;
}

/* COUNT BOX */
.count {
  border: 2px solid #ff6e00;
  padding: 5px 12px;
  border-radius: 6px;
  font-weight: bold;
}

/* TOTAL BAR */
.total-bar {
  background: #ff6e00;
  color: white;
  margin-top: 20px;
  padding: 12px 15px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  border-radius: 8px;
  font-weight: bold;
}
/* ================= FACILITY GRID ================= */

.facility-section {
  padding: 20px;
  background: #f4f4f4;

  max-width: 900px;
  margin: auto;
}

/* GRID */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* CARD */
.facility-card {
  position: relative;
  display: block;
  height: 200px;

  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* IMAGE */
.facility-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform 0.5s ease;
}

/* OVERLAY */
.facility-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);

  color: white;
  font-size: 20px;
  font-weight: 700;
  text-align: center;

  transition: all 0.3s ease;
}

/* HOVER EFFECT 🔥 */
.facility-card:hover img {
  transform: scale(1.1);
}

.facility-card:hover .facility-overlay {
  background: rgba(0, 0, 0, 0.55);
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .facility-grid {
    grid-template-columns: 1fr;
  }

  .facility-card {
    height: 180px;
  }

  .facility-overlay {
    font-size: 18px;
  }
}
/* ================= CLINIC SECTION ================= */

.clinic-section {
  padding: 30px 15px;
  background: linear-gradient(135deg, #f4f4f4, #eaeaea);
}

.section-title {
  text-align: center;
  margin-bottom: 25px;
  color: #166534;
  font-size: 22px;
  font-weight: 700;
}

/* GRID */
.clinic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;

  max-width: 900px;
  margin: auto;
}

/* CARD */
.clinic-card {
  background: white;
  padding: 18px;
  border-radius: 14px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);

  transition: all 0.3s ease;
}

/* TITLE */
.clinic-card h3 {
  color: #ff6e00;
  margin-bottom: 10px;
  font-size: 16px;
}

/* LIST */
.clinic-card ul {
  list-style: none;
  padding: 0;
}

.clinic-card li {
  display: flex;
  justify-content: space-between;

  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

/* NUMBERS */
.clinic-card span {
  font-weight: bold;
  color: #166534;
}

/* HOVER 🔥 */
.clinic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* SPECIAL CARD */
.highlight {
  border-left: 5px solid #ff6e00;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .clinic-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= HEADER ================= */

.gov-header {
  background: #f2f2f2;
  padding: 15px 20px;
}

/* CONTENT */
.header-content {
  display: flex;
  align-items: center;
  justify-content: center; /* center everything */

  gap: 15px; /* 🔥 controls closeness */
}

/* TITLE */
.header-content h1 {
  font-size: 24px;
  color: #14532d;
  letter-spacing: 2px;
  font-weight: 700;
  margin: 0;
}

/* IMAGES */
.header-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
}

/* LEFT IMAGE (CIRCLE) */
.header-img.left {
  border-radius: 50%;
}

/* RIGHT LOGO */
.header-img.right {
  object-fit: contain;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .header-content h1 {
    font-size: 18px;
  }

  .header-img {
    width: 90px;
    height: 90px;
  }

  .header-content {
    gap: 10px;
  }
}
/* ================= SECTION ================= */

.private-section {
  padding: 30px 20px;
  background: #f4f4f4;
}

/* SUMMARY CARD */
.summary-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  max-width: 900px;
  margin: auto;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.summary-card h2 {
  text-align: center;
  color: #166534;
  margin-bottom: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.summary-row strong {
  color: #ff6e00;
}

/* SECTION TITLES */
.section-title {
  margin: 30px auto 15px;
  max-width: 900px;
  color: #166534;
}

/* TABLE */
.table-wrapper {
  max-width: 900px;
  margin: auto;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

thead {
  background: #ff6e00;
  color: white;
}

th,
td {
  padding: 12px;
  border: 1px solid #ddd;
  font-size: 14px;
}

/* STATUS */
.status.green {
  color: green;
  font-weight: bold;
}

.status.orange {
  color: orange;
  font-weight: bold;
}

/* BUTTON */
.btn {
  background: #166534;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
}

.btn:hover {
  background: #0f3d24;
}

/* MAP */
.map-container {
  display: flex;
  gap: 20px;
  max-width: 900px;
  margin: auto;
}

.map-box {
  flex: 3;
  height: 220px;
  border: 2px dashed #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
}

.map-key {
  flex: 1;
  background: white;
  padding: 15px;
  border-radius: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
  margin-right: 5px;
}

.blue {
  background: blue;
}
.red {
  background: red;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .map-container {
    flex-direction: column;
  }
}
/* ================= SECTION ================= */

.lab-section {
  padding: 40px 20px;
  background: linear-gradient(135deg, #f4f4f4, #eaeaea);
}

/* HEADER */
.lab-header {
  text-align: center;
  margin-bottom: 25px;
}

.lab-header h2 {
  color: #166534;
  font-size: 26px;
  letter-spacing: 2px;
}

.lab-header p {
  color: #666;
  font-size: 14px;
}

/* CARD */
.lab-table-card {
  max-width: 950px;
  margin: auto;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);

  padding: 20px;
  border-radius: 16px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* TABLE */
.table-wrapper {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

/* HEADER */
thead {
  background: #ff6e00;
  color: white;
}

th {
  padding: 12px;
  text-align: left;
}

/* BODY */
td {
  padding: 12px;
  border-bottom: 1px solid #ddd;
}

/* ROW HOVER 🔥 */
tbody tr {
  transition: all 0.3s ease;
}

tbody tr:hover {
  background: #fff7f0;
  transform: scale(1.01);
}

/* STATUS */
.status.active {
  color: green;
  font-weight: bold;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .lab-header h2 {
    font-size: 20px;
  }
}
/* ================= SECTION ================= */

.mortuary-section {
  padding: 40px 20px;
  background: linear-gradient(135deg, #f0f0f0, #e5e5e5);
}

/* HEADER */
.mortuary-header {
  text-align: center;
  margin-bottom: 25px;
}

.mortuary-header h2 {
  color: #14532d;
  font-size: 26px;
  letter-spacing: 2px;
}

.mortuary-header p {
  color: #555;
  font-size: 14px;
}

/* CARD */
.mortuary-card {
  max-width: 950px;
  margin: auto;

  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 20px;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* TABLE */
.table-wrapper {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

/* HEADER */
thead {
  background: #ff6e00;
  color: white;
}

th {
  padding: 12px;
  text-align: left;
}

/* BODY */
td {
  padding: 12px;
  border-bottom: 1px solid #ddd;
}

/* ROW EFFECT 🔥 */
tbody tr {
  transition: all 0.3s ease;
}

tbody tr:hover {
  background: #fff3ea;
  transform: scale(1.01);
}

/* STATUS */
.status.active {
  color: green;
  font-weight: bold;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .mortuary-header h2 {
    font-size: 20px;
  }
}
/* ================= SECTION ================= */

.nysc-section {
  padding: 50px 20px;
  background: linear-gradient(135deg, #f4f4f4, #eaeaea);
}

/* HEADER */
.nysc-header {
  text-align: center;
  margin-bottom: 25px;
}

.nysc-header h2 {
  font-size: 28px;
  color: #14532d;
  letter-spacing: 3px;
  font-weight: 700;
}

/* CARD */
.nysc-card {
  max-width: 1100px;
  margin: auto;

  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);

  border-radius: 16px;
  overflow: hidden;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* TABLE */
.table-wrapper {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

/* HEADER */
thead {
  background: #ff6e00;
  color: white;
}

th {
  padding: 14px;
  text-align: left;
  white-space: nowrap;
}

/* BODY */
td {
  padding: 14px;
  border-bottom: 1px solid #ddd;
}

/* ROW HOVER */
tbody tr {
  transition: all 0.3s ease;
}

tbody tr:hover {
  background: #fff4eb;
  transform: scale(1.01);
}

/* STATUS */
.status.approved {
  color: #16a34a;
  font-weight: bold;
}

.status.pending {
  color: #ff6e00;
  font-weight: bold;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .nysc-header h2 {
    font-size: 22px;
  }

  th,
  td {
    padding: 10px;
    font-size: 13px;
  }
}
/* ================= WRAPPER ================= */
.disability-wrapper {
  width: 100%;
  padding: 40px 15px;
  display: flex;
  justify-content: center;
}

/* ================= MAIN CONTAINER ================= */
.container {
  width: 100%;
  max-width: 1100px; /* 🔥 THIS FIXES YOUR ALIGNMENT */
}

/* ================= CARD ================= */
.disability-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 30px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* HEADER */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-header h2 {
  color: #14532d;
  font-size: 22px;
}

/* BUTTON */
.edit-btn {
  background: #ff6e00;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
}

/* PROGRAM BOX */
.program-box {
  background: #f1f1f1;
  padding: 14px;
  margin-top: 12px;

  border-left: 5px solid #ff6e00;
  border-radius: 6px;
}

/* ================= OUTREACH ================= */
.outreach-section {
  margin-bottom: 30px;
}

.outreach-section h3 {
  color: #14532d;
  font-size: 18px;
}

.sub {
  color: #777;
  margin-bottom: 10px;
}

/* TABLE FIX */
.table-wrapper {
  width: 100%;
  overflow-x: auto; /* prevents breaking */
  border-radius: 10px;
}

table {
  width: 100%;
  min-width: 900px; /* 🔥 prevents squashing */
  border-collapse: collapse;
  background: #fff;
}

/* HEADER */
thead {
  background: #ff6e00;
  color: white;
}

th {
  padding: 12px;
  text-align: left;
}

/* BODY */
td {
  padding: 12px;
  border-bottom: 1px solid #ddd;
}

/* BUTTONS */
.btn {
  padding: 6px 12px;
  border-radius: 6px;
  border: none;
  color: #fff;
}

.review {
  background: #14532d;
}

.approved {
  background: green;
}

/* ================= HISTORY ================= */
.history-section h3 {
  color: #14532d;
  margin-bottom: 10px;
}

.history-item {
  background: #fff;
  padding: 14px;
  margin-bottom: 10px;

  border-left: 5px solid #ff6e00;
  border-radius: 8px;

  display: flex;
  align-items: center;
  gap: 12px;

  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
}

/* BADGE */
.badge {
  background: #ff6e00;
  color: white;

  width: 26px;
  height: 26px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  font-size: 13px;
  font-weight: bold;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .card-header {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  table {
    min-width: 700px;
  }
}
/* ================= DIRECTOR PUBLIC HEALTH PAGE ================= */
/* ================= SECTION ================= */
.ph-section {
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}

.ph-container {
  width: 100%;
  max-width: 1100px;
}

/* ================= HEADER ================= */
.ph-title {
  text-align: center;
  color: #14532d;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* ================= CARD ================= */
.ph-card {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 25px;
}

.ph-card h3 {
  color: #14532d;
}

.line {
  height: 2px;
  background: #ccc;
  margin-top: 10px;
}

/* ================= PROGRAM TITLE ================= */
.program-title {
  color: #14532d;
  margin-bottom: 15px;
}

/* ================= GRID ================= */
.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

/* ================= CARD ================= */
.program-card {
  position: relative;
  height: 150px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* IMAGE */
.program-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

/* 🔥 LIGHT OVERLAY (NOT TOO DARK) */
.program-card::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.1),
    transparent
  );
}

/* TEXT */
.label {
  position: absolute;
  bottom: 10px;
  left: 10px;

  color: white;
  font-weight: 700;
  font-size: 14px;

  z-index: 2;

  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

/* HOVER */
.program-card:hover img {
  transform: scale(1.08);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .program-grid {
    grid-template-columns: 1fr;
  }

  .ph-title {
    font-size: 22px;
  }
}
/*===========================TUBERCULOSIS============================*/
/* ================= SECTION ================= */
.tb-section {
  display: flex;
  justify-content: center;
  padding: 50px 20px;
}

/* ================= CARD ================= */
.tb-card {
  width: 100%;
  max-width: 800px;

  background: #f5f5f5;
  border-radius: 12px;
  padding: 40px 20px;

  text-align: center;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}

/* HOVER EFFECT */
.tb-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

/* ================= TEXT ================= */

/* TITLE */
.tb-title {
  color: #14532d;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

/* LABEL */
.tb-label {
  color: #666;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* NAME */
.tb-name {
  color: #14532d;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* PHONE */
.tb-phone {
  color: #ff6e00;
  font-size: 18px;
  font-weight: 700;
}

/* ================= MOBILE ================= */
@media (max-width: 600px) {
  .tb-title {
    font-size: 22px;
  }

  .tb-name {
    font-size: 18px;
  }

  .tb-phone {
    font-size: 16px;
  }
}
/*=========================================MALARIA===================*/
.malaria-section {
  padding: 20px;
}

.card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* HEADER */
.malaria-header {
  text-align: center;
}

.malaria-header h1 {
  color: #14532d;
}

.phone {
  color: #ff6600;
  font-weight: bold;
}

/* IMAGE AREA */
.circle-wrapper {
  position: relative;
  width: 200px;
  margin: 20px auto;
}

.circle-wrapper img {
  width: 100%;
  border-radius: 50%;
}

.label-left {
  position: absolute;
  left: -45px;
  top: 50%;
}

.label-bottom {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
}

.section-title {
  text-align: center;
  color: #14532d;
  margin: 30px 0 10px;
}

/* TABLE */
.table-box {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead {
  background: #ff6600;
  color: white;
}

th,
td {
  padding: 10px;
  border: 1px solid #ddd;
}

td:first-child {
  text-align: left;
}
/*=========================================HIV AIDS===================*/
/* ================= HIV SECTION ================= */

.hiv-section {
  padding: 20px;
  max-width: 1000px;
  margin: auto;
}

/* CARD */
.card {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* HEADER */
.hiv-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.hiv-header h2 {
  color: #14532d;
  margin-bottom: 5px;
}

.hiv-header img {
  width: 50px;
}

/* SECTION TITLE */
.card h3 {
  color: #14532d;
  margin: 20px 0 10px;
}

/* ROW */
.data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

/* INPUT */
.data-row input {
  width: 80px;
  padding: 5px;
  border: 2px solid #333;
  border-radius: 4px;
}

/* CHART */
.chart-box {
  margin-top: 20px;
}

.chart-box h4 {
  margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .data-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .data-row input {
    width: 100%;
  }

  .hiv-header {
    flex-direction: column;
    gap: 10px;
  }
}
/*<!--=========================================NTDS===================-->*/
/* ================= NTD SECTION ================= */

.ntd-section {
  padding: 20px;
  max-width: 1000px;
  margin: auto;
}

/* CARD */
.ntd-card {
  background: #f5f5f5;
  border-radius: 12px;
  padding: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}

/* HOVER EFFECT */
.ntd-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* LEFT */
.ntd-content h2 {
  color: #14532d;
  font-size: 28px;
  margin-bottom: 20px;
}

/* INFO ROW */
.ntd-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

/* ORANGE BAR */
.ntd-info .bar {
  width: 5px;
  height: 40px;
  background: #ff6600;
  border-radius: 3px;
}

/* TEXT */
.ntd-info .title {
  font-weight: 600;
  margin-bottom: 5px;
}

/* IMAGE */
.ntd-image img {
  width: 120px;
  object-fit: contain;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .ntd-card {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .ntd-info {
    justify-content: center;
  }

  .ntd-image img {
    width: 100px;
  }
}
/*<!--=========================================NCDS===================-->*/
/* ================= NCDs SECTION ================= */

.ncds-section {
  padding: 20px;
  display: flex;
  justify-content: center;
}

/* CARD */
.ncds-card {
  background: #f5f5f5;
  width: 100%;
  max-width: 900px;
  text-align: center;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);

  /* Animation base */
  opacity: 0;
  transform: translateY(30px);
}

/* TITLE */
.ncds-card h2 {
  color: #14532d;
  font-size: 28px;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

/* OFFICER */
.ncds-card .officer {
  font-size: 16px;
  margin-bottom: 10px;
}

/* SUBTEXT */
.ncds-card .subtitle {
  font-size: 14px;
  color: #666;
  font-style: italic;
}

/* HOVER EFFECT */
.ncds-card:hover {
  transform: translateY(-5px);
  transition: 0.3s ease;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .ncds-card {
    padding: 20px 15px;
  }

  .ncds-card h2 {
    font-size: 22px;
  }
}
