@charset "UTF-8";
:root {
  /* Colors */
  --color-primary: #0b7b37;
  --color-primary-dark: #06652b;
  --color-primary-light: #158d43;
  --color-gold: #e0b52d;
  --color-red: #c91b1b;
  --color-red-dark: #9f1111;
  --color-text: #111111;
  --color-text-light: #444444;
  --color-text-muted: #6d6d6d;
  --color-white: #ffffff;
  --color-border: #e8e8e8;
  --color-bg: #ffffff;
  --color-bg-soft: #f7f7f7;
  /* Gradients */
  --gradient-primary:
    linear-gradient(
      180deg,
      var(--color-primary-light),
      var(--color-primary-dark)
    );
  --gradient-dark-green:
    linear-gradient(
      90deg,
      #012e17,
      #024121,
      #00552a,
      #01351b
    );
  --gradient-footer:
    linear-gradient(
      90deg,
      #02070b,
      #091116,
      #000000
    );
  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  /* Shadows */
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
  /* Container */
  --container-width: 92%;
  --container-max: 1400px;
  /* Typography */
  --font-family: 'Montserrat', sans-serif;
  --fs-xs: 0.6875rem; /* 11px */
  --fs-sm: 0.75rem; /* 12px */
  --fs-base: 0.875rem; /* 14px */
  --fs-md: 0.9375rem; /* 15px */
  --fs-lg: 1rem; /* 16px */
  --fs-xl: 1.125rem; /* 18px */
  --fs-2xl: 1.25rem; /* 20px */
  --fs-3xl: 1.5rem; /* 24px */
  --fs-4xl: 1.875rem; /* 30px */
  --fs-5xl: 2.625rem; /* 42px */
  --fs-6xl: 3.45rem; /* 58px */
  --fs-7xl: 4rem; /* 64px */
  --fs-8xl: 7.5rem; /* already rem — 120px */
  /* Font Weights */
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --fw-black: 900;
  /* Transitions */
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overscroll-behavior: contain;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-family);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all var(--transition);
}
a:is(:hover) {
  color: var(--color-primary-light);
}

li {
  list-style: none;
}

label {
  display: inline-block;
}

button {
  background: none;
  font: inherit;
  border: none;
  cursor: pointer;
}

img,
ion-icon,
button,
a {
  display: block;
}

img {
  max-width: 100%;
  display: block;
}

span {
  display: inline-block;
}

/* Container padding for all screens */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Small screen container padding */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }
}
/* General spacing utilities */
section {
  padding: 60px 0;
}

@media (max-width: 768px) {
  section {
    padding: 40px 0;
  }
}
@media (max-width: 480px) {
  section {
    padding: 30px 0;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-weight: var(--fw-extrabold);
  transition: var(--transition);
  cursor: pointer;
}
.btn svg {
  width: 16px;
  height: 16px;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn.btn-green {
  background: var(--gradient-primary);
  color: var(--color-white);
}
.btn.btn-white {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  color: var(--color-text);
}
.btn.btn-red {
  background: linear-gradient(180deg, var(--color-red), var(--color-red-dark));
  color: var(--color-white);
}

.header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}
.header .nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.header .logo {
  flex-shrink: 0;
}
.header .logo .logo-main {
  font-size: var(--fs-5xl);
  font-weight: var(--fw-black);
  line-height: 0.9;
}
.header .logo .logo-main .black {
  color: #000;
}
.header .logo .logo-main .green {
  color: var(--color-primary);
}
.header .logo .logo-sub {
  margin-top: 2px;
  font-size: 8px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.4px;
  color: #666;
}
.header .nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.header .nav a {
  position: relative;
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  transition: var(--transition);
  color: #333;
  text-decoration: none;
}
.header .nav a:hover, .header .nav a.active {
  color: var(--color-primary);
}
.header .nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 3px;
  border-radius: 20px;
  background: var(--color-primary);
}
.header .btn {
  padding: 12px 22px;
  flex-shrink: 0;
}
.header {
  /* Mobile elements - hidden by default (desktop) */
}
.header .mobile-menu-btn,
.header .mobile-nav {
  display: none;
}

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .header .nav {
    gap: 16px;
  }
  .header .nav a {
    font-size: 11px;
  }
  .header .btn {
    padding: 10px 14px;
    font-size: 11px;
  }
}
/* Mobile (max-width: 768px) - ONLY show mobile elements here */
@media (max-width: 768px) {
  .header .nav-wrapper {
    height: 64px;
  }
  .header .logo .logo-main {
    font-size: 28px;
  }
  .header .logo .logo-sub {
    font-size: 7px;
  }
  .header {
    /* Hide desktop navigation and CTA button on mobile */
  }
  .header .nav,
  .header .btn {
    display: none;
  }
  .header {
    /* Show mobile menu button on mobile */
  }
  .header .mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
  }
  .header .mobile-menu-btn svg {
    width: 24px;
    height: 24px;
    stroke: #333;
  }
  .header {
    /* Mobile navigation drawer - only visible when open */
  }
  .header .mobile-nav {
    position: fixed;
    top: 64px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 64px);
    background: var(--color-white);
    z-index: 200;
    transition: left 0.3s ease;
    padding: 20px 0;
    overflow-y: auto;
    display: block;
  }
  .header .mobile-nav.open {
    left: 0;
  }
  .header .mobile-nav .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .header .mobile-nav .mobile-nav-links a {
    padding: 16px 24px;
    font-size: 16px;
    font-weight: var(--fw-bold);
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid var(--color-border);
  }
  .header .mobile-nav .mobile-nav-links a:hover, .header .mobile-nav .mobile-nav-links a.active {
    color: var(--color-primary);
    background: #f0faf4;
  }
  .header .mobile-nav .mobile-cta {
    padding: 20px 24px;
  }
  .header .mobile-nav .mobile-cta .btn {
    display: inline-block;
    width: 100%;
    text-align: center;
  }
}
/* Small mobile (max-width: 480px) */
@media (max-width: 480px) {
  .header .logo .logo-main {
    font-size: 24px;
  }
  .header .logo .logo-sub {
    font-size: 6px;
  }
}
/* =========================
   FOOTER
========================= */
.footer {
  background: var(--gradient-footer);
  color: var(--color-white);
  padding: 60px 0 40px;
  margin-top: auto;
}
.footer .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer .footer-logo {
  font-size: 42px;
  line-height: 0.9;
  font-weight: var(--fw-black);
  margin-bottom: 16px;
}
.footer .footer-logo .gold {
  color: #f2c94c;
}
.footer .footer-col h4 {
  font-size: var(--fs-md);
  font-weight: var(--fw-extrabold);
  margin-bottom: 20px;
  color: #fff;
}
.footer .footer-col p {
  font-size: var(--fs-sm);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}
.footer .footer-col ul {
  list-style: none;
  padding: 0;
}
.footer .footer-col ul li {
  margin-bottom: 10px;
}
.footer .footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: var(--fs-sm);
  transition: var(--transition);
}
.footer .footer-col ul li a:hover {
  color: var(--color-white);
}
.footer .footer-col .newsletter {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.footer .footer-col .newsletter input {
  flex: 1;
  height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  outline: none;
  font-family: var(--font-family);
  font-size: var(--fs-sm);
}
.footer .footer-col .newsletter input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.footer .footer-col .newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.footer .footer-col .newsletter input:focus {
  border-color: var(--color-primary);
}
.footer .footer-col .newsletter .btn {
  padding: 0 20px;
  white-space: nowrap;
  height: 44px;
}
.footer .footer-col .social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer .footer-col .social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: var(--transition);
}
.footer .footer-col .social-links a:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}
.footer .footer-col .coat_of_arms {
  text-align: center;
}
.footer .footer-col .coat_of_arms img {
  width: 80px;
  height: auto;
  margin-bottom: 12px;
}
.footer .footer-col .coat_of_arms p {
  font-size: var(--fs-xs);
  margin-bottom: 4px;
  text-align: center;
}
.footer .footer-col .coat_of_arms p.upper {
  text-transform: uppercase;
  font-weight: var(--fw-bold);
}

/* Footer Responsive - Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .footer {
    padding: 50px 0 30px;
  }
  .footer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .footer .footer-col:first-child {
    grid-column: span 2;
  }
}
/* Footer Responsive - Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 25px;
  }
  .footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer .footer-col:first-child {
    grid-column: span 1;
  }
  .footer .footer-logo {
    font-size: 36px;
  }
  .footer .footer-col h4 {
    margin-bottom: 16px;
  }
  .footer .footer-col {
    /* Keep newsletter inline on mobile */
  }
  .footer .footer-col .newsletter {
    flex-direction: row;
    gap: 8px;
  }
  .footer .footer-col .newsletter input {
    flex: 1;
    height: 40px;
    font-size: var(--fs-xs);
  }
  .footer .footer-col .newsletter .btn {
    padding: 0 16px;
    height: 40px;
    font-size: var(--fs-xs);
    white-space: nowrap;
  }
  .footer .footer-col {
    /* Compact coat of arms - horizontal layout */
  }
  .footer .footer-col .coat_of_arms {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: 16px;
    text-align: left;
    margin-top: 10px;
  }
  .footer .footer-col .coat_of_arms img {
    width: 4rem;
    margin-bottom: 0;
  }
  .footer .footer-col .coat_of_arms div {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .footer .footer-col .coat_of_arms p {
    text-align: left;
    margin-bottom: 0;
    font-size: 11px;
  }
}
/* Footer Responsive - Small mobile (max-width: 480px) */
@media (max-width: 480px) {
  .footer {
    padding: 30px 0 20px;
  }
  .footer .footer-logo {
    font-size: 32px;
  }
  .footer .footer-col {
    /* Keep newsletter inline even on very small screens */
  }
  .footer .footer-col .newsletter {
    gap: 6px;
  }
  .footer .footer-col .newsletter input {
    height: 38px;
    padding: 0 10px;
  }
  .footer .footer-col .newsletter .btn {
    padding: 0 12px;
    height: 38px;
  }
  .footer .footer-col {
    /* Even more compact coat of arms */
  }
  .footer .footer-col .coat_of_arms {
    gap: 0.5rem;
  }
  .footer .footer-col .coat_of_arms img {
    width: 4rem;
  }
  .footer .footer-col .coat_of_arms p {
    font-size: 10px;
  }
}
/* about.css – page-specific styles for About TUTAM page */
/* =========================
   ABOUT HERO (full-bleed, taller)
========================= */
.about-hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: linear-gradient(135deg, #021a0c 0%, #014a24 55%, #022e14 100%);
  display: flex;
  align-items: center;
}
.about-hero .about-hero-img {
  position: absolute;
  inset: 0;
}
.about-hero .about-hero-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  opacity: 0.18;
}
.about-hero .about-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 380px;
  align-items: center;
  gap: 40px;
  padding: 60px 0;
  width: 100%;
}
.about-hero .about-hero-left {
  color: #fff;
}
.about-hero .about-hero-left .ah-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 1.5px;
  color: #8ee33d;
  margin-bottom: 18px;
}
.about-hero .about-hero-left h1 {
  font-size: 58px;
  font-weight: var(--fw-black);
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.about-hero .about-hero-left h1 span {
  color: var(--color-gold);
}
.about-hero .about-hero-left p {
  font-size: var(--fs-md);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
  margin-bottom: 28px;
}
.about-hero .about-hero-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-hero .about-hero-right .vmp-card {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  backdrop-filter: blur(8px);
}
.about-hero .about-hero-right .vmp-card .vmp-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-hero .about-hero-right .vmp-card .vmp-icon svg {
  width: 18px;
  height: 18px;
  color: #8ee33d;
}
.about-hero .about-hero-right .vmp-card .vmp-text h4 {
  font-size: var(--fs-sm);
  font-weight: var(--fw-extrabold);
  color: #fff;
  margin-bottom: 4px;
}
.about-hero .about-hero-right .vmp-card .vmp-text p {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0;
}

/* =========================
   VISION / MISSION / PROMISE / VALUES
========================= */
.vmpv-section {
  padding: 52px 0;
  border-bottom: 1px solid var(--color-border);
}
.vmpv-section .vmpv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.vmpv-section .vmpv-card {
  padding: 28px 22px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  transition: var(--transition);
}
.vmpv-section .vmpv-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(11, 123, 55, 0.25);
}
.vmpv-section .vmpv-card .vmpv-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f0faf4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.vmpv-section .vmpv-card .vmpv-icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
}
.vmpv-section .vmpv-card h3 {
  font-size: var(--fs-md);
  font-weight: var(--fw-extrabold);
  margin-bottom: 10px;
}
.vmpv-section .vmpv-card p, .vmpv-section .vmpv-card ul {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: 1.7;
}
.vmpv-section .vmpv-card ul {
  list-style: none;
}
.vmpv-section .vmpv-card ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.vmpv-section .vmpv-card ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}

/* =========================
   OUR STORY
========================= */
.story-section {
  padding: 60px 0;
}
.story-section .story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.story-section .story-text .section-tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-extrabold);
  letter-spacing: 1.5px;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.story-section .story-text h2 {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-black);
  line-height: 1.15;
  margin-bottom: 18px;
}
.story-section .story-text p {
  font-size: var(--fs-md);
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 24px;
}
.story-section .story-text .read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--color-primary);
  background: transparent;
  color: var(--color-primary);
  font-size: var(--fs-sm);
  font-weight: var(--fw-extrabold);
  cursor: pointer;
  font-family: var(--font-family);
  transition: var(--transition);
  text-decoration: none;
}
.story-section .story-text .read-more-btn svg {
  width: 14px;
  height: 14px;
}
.story-section .story-text .read-more-btn:hover {
  background: var(--color-primary);
  color: #fff;
}
.story-section .story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 380px;
}
.story-section .story-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* =========================
   LEADERSHIP
========================= */
.leadership-section {
  padding: 60px 0;
  background: var(--color-bg-soft);
}
.leadership-section .ls-label {
  text-align: center;
  margin-bottom: 40px;
}
.leadership-section .ls-label h2 {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-black);
}
.leadership-section .ls-label .underline {
  width: 60px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 99px;
  margin: 10px auto 0;
}
.leadership-section .leadership-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
  align-items: start;
}
.leadership-section .president-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.leadership-section .president-card .president-img {
  height: 280px;
  overflow: hidden;
}
.leadership-section .president-card .president-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.leadership-section .president-card .president-info {
  padding: 20px;
}
.leadership-section .president-card .president-info h3 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-black);
  margin-bottom: 4px;
  line-height: 1.3;
}
.leadership-section .president-card .president-info .p-title {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  font-weight: var(--fw-semibold);
  margin-bottom: 12px;
}
.leadership-section .president-card .president-info p {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 14px;
}
.leadership-section .president-card .president-info .msg-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-primary);
  background: transparent;
  color: var(--color-primary);
  font-size: var(--fs-sm);
  font-weight: var(--fw-extrabold);
  cursor: pointer;
  font-family: var(--font-family);
  transition: var(--transition);
}
.leadership-section .president-card .president-info .msg-btn svg {
  width: 14px;
  height: 14px;
}
.leadership-section .president-card .president-info .msg-btn:hover {
  background: var(--color-primary);
  color: #fff;
}
.leadership-section .other-leaders {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.leadership-section .leader-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  transition: var(--transition);
}
.leadership-section .leader-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.leadership-section .leader-card .leader-img {
  height: 180px;
  overflow: hidden;
}
.leadership-section .leader-card .leader-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.leadership-section .leader-card .leader-info {
  padding: 14px;
}
.leadership-section .leader-card .leader-info h4 {
  font-size: var(--fs-md);
  font-weight: var(--fw-extrabold);
  margin-bottom: 3px;
  line-height: 1.3;
}
.leadership-section .leader-card .leader-info .l-title {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  font-weight: var(--fw-semibold);
  margin-bottom: 10px;
  display: block;
}
.leadership-section .leader-card .leader-info .bio-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-extrabold);
  color: var(--color-primary);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-family);
  padding: 0;
}
.leadership-section .leader-card .leader-info .bio-link svg {
  width: 12px;
  height: 12px;
}

/* =========================
   JOURNEY TIMELINE
========================= */
.journey-section {
  padding: 64px 0;
}
.journey-section .journey-label {
  text-align: center;
  margin-bottom: 48px;
}
.journey-section .journey-label h2 {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-black);
}
.journey-section .journey-label .underline {
  width: 60px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 99px;
  margin: 10px auto 0;
}
.journey-section .timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.journey-section .timeline::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), #8ee33d);
  border-radius: 99px;
  z-index: 0;
}
.journey-section .timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 8px;
}
.journey-section .timeline-item .ti-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gradient-primary);
  border: 4px solid #fff;
  box-shadow: 0 0 0 3px var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.journey-section .timeline-item .ti-icon svg {
  width: 28px;
  height: 28px;
  color: #fff;
}
.journey-section .timeline-item .ti-year {
  font-size: var(--fs-xl);
  font-weight: var(--fw-black);
  color: var(--color-primary);
  margin-bottom: 6px;
}
.journey-section .timeline-item h4 {
  font-size: var(--fs-md);
  font-weight: var(--fw-extrabold);
  margin-bottom: 8px;
}
.journey-section .timeline-item p {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: 1.6;
}

/* =========================
   CTA BANNER
========================= */
.about-cta {
  padding: 44px 0;
  background: var(--color-primary);
}
.about-cta .about-cta-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.about-cta .about-cta-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-cta .about-cta-icon svg {
  width: 28px;
  height: 28px;
  color: #fff;
}
.about-cta .about-cta-text h3 {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-black);
  color: #fff;
  margin-bottom: 4px;
}
.about-cta .about-cta-text p {
  font-size: var(--fs-md);
  color: rgba(255, 255, 255, 0.8);
}
.about-cta .btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--color-primary);
  font-size: var(--fs-sm);
  font-weight: var(--fw-extrabold);
  border: none;
  cursor: pointer;
  font-family: var(--font-family);
  text-decoration: none;
  transition: var(--transition);
}
.about-cta .btn-white svg {
  width: 14px;
  height: 14px;
}
.about-cta .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
  section {
    padding-inline: 1rem;
  }
  .about-hero .about-hero-content {
    grid-template-columns: 1fr;
    padding: 40px 0;
  }
  .vmpv-section .vmpv-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .leadership-section .leadership-grid {
    grid-template-columns: 1fr;
  }
  .leadership-section .other-leaders {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .about-hero .about-hero-left h1 {
    font-size: 42px;
  }
  .vmpv-section .vmpv-grid {
    grid-template-columns: 1fr;
  }
  .story-section .story-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .story-section .story-img {
    height: 250px;
  }
  .leadership-section .other-leaders {
    grid-template-columns: 1fr;
  }
  .journey-section .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .journey-section .timeline::before {
    display: none;
  }
  .about-cta .about-cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .about-hero .about-hero-left h1 {
    font-size: 32px;
  }
  .journey-section .timeline {
    grid-template-columns: 1fr;
  }
  .about-cta .about-cta-text h3 {
    font-size: 24px;
  }
}
/* counties.css – page-specific styles for Counties page */
/* Page Hero */
.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  background: linear-gradient(rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.52)), linear-gradient(135deg, #021a0c 0%, #014a24 60%, #022e14 100%);
  display: flex;
  align-items: center;
}
.page-hero .hero-bg-text {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 220px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  letter-spacing: -10px;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.page-hero .page-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 55px 0;
}
.page-hero .page-hero-left {
  color: var(--color-white);
}
.page-hero .page-hero-left .page-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 1.5px;
  color: #8ee33d;
  margin-bottom: 18px;
}
.page-hero .page-hero-left h1 {
  font-size: 68px;
  font-weight: var(--fw-black);
  line-height: 0.95;
  letter-spacing: -2px;
}
.page-hero .page-hero-left .page-hero-sub {
  margin-top: 14px;
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--color-gold);
}
.page-hero .page-hero-left .page-hero-desc {
  margin-top: 14px;
  font-size: var(--fs-md);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 500px;
}
.page-hero .page-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.page-hero .hero-stat {
  padding: 22px 24px;
  text-align: center;
  color: var(--color-white);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.page-hero .hero-stat:last-child {
  border-right: none;
}
.page-hero .hero-stat .hstat-icon {
  width: 38px;
  height: 38px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-gold);
}
.page-hero .hero-stat .hstat-icon svg {
  width: 20px;
  height: 20px;
}
.page-hero .hero-stat h3 {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-black);
  color: #8ee33d;
}
.page-hero .hero-stat p {
  margin-top: 4px;
  font-size: 10px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* Breadcrumb */
.breadcrumb {
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-white);
}
.breadcrumb .breadcrumb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.breadcrumb .breadcrumb-path {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}
.breadcrumb .breadcrumb-path a {
  color: var(--color-text-muted);
  transition: var(--transition);
}
.breadcrumb .breadcrumb-path a:hover {
  color: var(--color-primary);
}
.breadcrumb .breadcrumb-path .sep {
  color: #ccc;
}
.breadcrumb .breadcrumb-path .current {
  color: var(--color-text);
  font-weight: var(--fw-semibold);
}
.breadcrumb .breadcrumb-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  flex-wrap: wrap;
}
.breadcrumb .breadcrumb-note .note-flag {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Counties Layout */
.counties-layout {
  padding: 36px 0 60px;
}
.counties-layout .counties-top-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.counties-layout .counties-search-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.counties-layout .search-box {
  position: relative;
  width: 220px;
}
.counties-layout .search-box input {
  width: 100%;
  height: 44px;
  padding: 0 14px 0 40px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-family: var(--font-family);
  outline: none;
  transition: var(--transition);
}
.counties-layout .search-box input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(11, 123, 55, 0.08);
}
.counties-layout .search-box .search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
}
.counties-layout .search-box .search-icon svg {
  width: 16px;
  height: 16px;
}
.counties-layout .filter-select {
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-family: var(--font-family);
  color: var(--color-text);
  background: var(--color-white);
  cursor: pointer;
  outline: none;
  min-width: 160px;
}
.counties-layout .filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 18px;
  border-radius: var(--radius-sm);
  background: var(--gradient-primary);
  color: var(--color-white);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.counties-layout .filter-btn svg {
  width: 14px;
  height: 14px;
}
.counties-layout .filter-btn:hover {
  transform: translateY(-1px);
}
.counties-layout .reset-btn {
  height: 44px;
  padding: 0 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: var(--color-white);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  cursor: pointer;
  transition: var(--transition);
}
.counties-layout .reset-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.counties-layout .map-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-primary);
  background: transparent;
  color: var(--color-primary);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  cursor: pointer;
  transition: var(--transition);
}
.counties-layout .map-btn svg {
  width: 16px;
  height: 16px;
}
.counties-layout .map-btn:hover {
  background: var(--color-primary);
  color: #fff;
}

/* Counties Body */
.counties-body {
  display: grid;
  grid-template-columns: 270px 1fr 260px;
  gap: 28px;
  align-items: start;
}

/* Left Sidebar */
.counties-sidebar-left .sidebar-section {
  margin-bottom: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.counties-sidebar-left .sidebar-section-head {
  padding: 14px 18px;
  background: var(--color-bg-soft);
  border-bottom: 1px solid var(--color-border);
  font-size: var(--fs-sm);
  font-weight: var(--fw-extrabold);
  letter-spacing: 0.5px;
}
.counties-sidebar-left .map-placeholder {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, #e8f5ee, #d0ecdc);
  display: flex;
  align-items: center;
  justify-content: center;
}
.counties-sidebar-left .map-placeholder .map-svg {
  width: 140px;
  opacity: 0.7;
}
.counties-sidebar-left .map-placeholder .map-controls {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.counties-sidebar-left .map-placeholder .map-controls button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.counties-sidebar-left .map-placeholder .map-legend {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.counties-sidebar-left .map-placeholder .legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: var(--color-text);
}
.counties-sidebar-left .map-placeholder .legend-item .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.counties-sidebar-left .map-placeholder .legend-item .dot.high {
  background: #0b7b37;
}
.counties-sidebar-left .map-placeholder .legend-item .dot.mid {
  background: #e0b52d;
}
.counties-sidebar-left .map-placeholder .legend-item .dot.low {
  background: #f2a600;
}
.counties-sidebar-left .map-placeholder .legend-item .dot.none {
  background: #ccc;
}
.counties-sidebar-left .region-list {
  list-style: none;
}
.counties-sidebar-left .region-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  transition: var(--transition);
}
.counties-sidebar-left .region-list li a:hover {
  background: #f0faf4;
  color: var(--color-primary);
}
.counties-sidebar-left .region-list .region-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  font-size: 11px;
  font-weight: var(--fw-bold);
  color: var(--color-text-muted);
}
.counties-sidebar-left .region-list li:last-child a {
  border-bottom: none;
}

/* Counties Main */
.counties-main .counties-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 12px;
}
.counties-main .counties-section-head h2 {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-extrabold);
}
.counties-main .counties-section-head .view-toggle {
  display: flex;
  gap: 4px;
}
.counties-main .counties-section-head .view-toggle button {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.counties-main .counties-section-head .view-toggle button svg {
  width: 16px;
  height: 16px;
}
.counties-main .counties-section-head .view-toggle button.active, .counties-main .counties-section-head .view-toggle button:hover {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
}
.counties-main .counties-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* County Card */
.county-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-white);
  transition: var(--transition);
  cursor: pointer;
}
.county-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(11, 123, 55, 0.2);
}
.county-card .county-img {
  position: relative;
  height: 160px;
  overflow: hidden;
}
.county-card .county-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s ease;
}
.county-card .county-img:hover img {
  transform: scale(1.04);
}
.county-card .county-img .county-coa {
  position: absolute;
  bottom: -16px;
  left: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
}
.county-card .county-body {
  padding: 24px 16px 16px;
}
.county-card .county-body h3 {
  font-size: var(--fs-lg);
  font-weight: var(--fw-extrabold);
  margin-bottom: 4px;
}
.county-card .county-body .constituencies {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  margin-bottom: 12px;
}
.county-card .county-body .constituencies svg {
  width: 12px;
  height: 12px;
  color: var(--color-primary);
}
.county-card .county-body .county-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 12px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 14px;
}
.county-card .county-body .cstat {
  text-align: center;
}
.county-card .county-body .cstat .cstat-label {
  font-size: 10px;
  color: var(--color-text-muted);
  font-weight: var(--fw-semibold);
  display: block;
}
.county-card .county-body .cstat .cstat-val {
  font-size: var(--fs-sm);
  font-weight: var(--fw-extrabold);
  color: var(--color-text);
  display: block;
  margin-top: 2px;
}
.county-card .county-body .cstat .cstat-val.green {
  color: var(--color-primary);
}
.county-card .county-body .view-county-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-border);
  background: transparent;
  font-size: var(--fs-sm);
  font-weight: var(--fw-extrabold);
  color: var(--color-text);
  cursor: pointer;
  transition: var(--transition);
}
.county-card .county-body .view-county-btn svg {
  width: 14px;
  height: 14px;
}
.county-card .county-body .view-county-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: #f0faf4;
}

.load-more-row {
  margin-top: 28px;
  text-align: center;
}
.load-more-row .load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: var(--fs-sm);
  font-weight: var(--fw-extrabold);
  cursor: pointer;
  transition: var(--transition);
}
.load-more-row .load-more-btn svg {
  width: 14px;
  height: 14px;
}
.load-more-row .load-more-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* Right Sidebar */
.counties-sidebar-right .sidebar-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
}
.counties-sidebar-right .sidebar-card-head {
  padding: 14px 18px;
  background: var(--color-bg-soft);
  border-bottom: 1px solid var(--color-border);
  font-size: var(--fs-sm);
  font-weight: var(--fw-extrabold);
  letter-spacing: 0.4px;
}
.counties-sidebar-right .sidebar-card-body {
  padding: 14px 18px;
}
.counties-sidebar-right .top-county-list {
  list-style: none;
}
.counties-sidebar-right .top-county-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
  flex-wrap: wrap;
}
.counties-sidebar-right .top-county-list li:last-child {
  border-bottom: none;
}
.counties-sidebar-right .top-county-list .tc-rank {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: var(--fw-bold);
  flex-shrink: 0;
}
.counties-sidebar-right .top-county-list .tc-coa {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  flex-shrink: 0;
}
.counties-sidebar-right .top-county-list .tc-info {
  flex: 1;
}
.counties-sidebar-right .top-county-list .tc-info h5 {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
}
.counties-sidebar-right .top-county-list .tc-investment {
  font-size: var(--fs-xs);
  font-weight: var(--fw-extrabold);
  color: var(--color-primary);
}
.counties-sidebar-right .full-report-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 10px;
  margin-top: 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: transparent;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  cursor: pointer;
  transition: var(--transition);
}
.counties-sidebar-right .full-report-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.counties-sidebar-right .quick-links-list {
  list-style: none;
}
.counties-sidebar-right .quick-links-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  transition: var(--transition);
}
.counties-sidebar-right .quick-links-list li a svg {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
}
.counties-sidebar-right .quick-links-list li a .ql-arrow {
  margin-left: auto;
  color: #ccc;
}
.counties-sidebar-right .quick-links-list li a .ql-arrow svg {
  width: 12px;
  height: 12px;
}
.counties-sidebar-right .quick-links-list li a:hover {
  color: var(--color-primary);
}
.counties-sidebar-right .quick-links-list li:last-child a {
  border-bottom: none;
}
.counties-sidebar-right .promo-card {
  border-radius: var(--radius-md);
  padding: 22px;
  background: var(--gradient-primary);
  color: var(--color-white);
}
.counties-sidebar-right .promo-card h4 {
  font-size: var(--fs-lg);
  font-weight: var(--fw-extrabold);
  line-height: 1.3;
  margin-bottom: 10px;
}
.counties-sidebar-right .promo-card p {
  font-size: var(--fs-sm);
  line-height: 1.6;
  opacity: 0.88;
}

/* Page Hero */
.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  background: linear-gradient(rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.52)), linear-gradient(135deg, #021a0c 0%, #014a24 60%, #022e14 100%);
  display: flex;
  align-items: center;
}
.page-hero .page-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 55px 0;
}
.page-hero .page-hero-left {
  color: var(--color-white);
}
.page-hero .page-hero-left .page-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 1.5px;
  color: #8ee33d;
  margin-bottom: 18px;
}
.page-hero .page-hero-left h1 {
  font-size: 68px;
  font-weight: var(--fw-black);
  line-height: 0.95;
  letter-spacing: -2px;
}

/* Responsive */
@media (max-width: 1200px) {
  .page-hero .page-hero-inner {
    grid-template-columns: 1fr;
    padding: 40px 0;
    gap: 24px;
  }
  .page-hero .page-hero-left h1 {
    font-size: 52px;
  }
  .counties-body {
    grid-template-columns: 240px 1fr;
    gap: 20px;
  }
  .counties-sidebar-right {
    display: none;
  }
}
@media (max-width: 768px) {
  .page-hero .page-hero-left h1 {
    font-size: 38px;
  }
  .page-hero .page-hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .counties-body {
    grid-template-columns: 1fr;
  }
  .counties-sidebar-left {
    display: none;
  }
  .counties-main .counties-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .counties-layout {
    padding: 24px 0 40px;
  }
  .counties-layout .counties-top-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .counties-layout .counties-search-row {
    flex-wrap: wrap;
    gap: 12px;
  }
  .counties-layout .search-box {
    width: 100%;
  }
  .counties-layout .filter-select {
    flex: 1;
    min-width: auto;
  }
  .breadcrumb .breadcrumb-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .page-hero .page-hero-left h1 {
    font-size: 32px;
  }
  .page-hero .hero-stat {
    padding: 12px 16px;
  }
  .page-hero .hero-stat h3 {
    font-size: 28px;
  }
  .counties-layout {
    padding: 20px 0 30px;
  }
}
/* =========================
   HERO
========================= */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  background: linear-gradient(rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.35)), linear-gradient(90deg, #f4f2ef 0%, #ece7e2 45%, #d9d2ca 100%);
}
.hero .hero-content {
  position: relative;
  z-index: 2;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  /* Desktop background image - original positioning */
}
.hero .hero-content::after {
  content: "";
  position: absolute;
  top: -4rem;
  right: -20rem;
  background-image: url(../media/president-h1.webp);
  background-repeat: no-repeat;
  overflow: hidden;
  z-index: -1;
  min-height: 820px;
  min-width: 100%;
}
.hero .hero-left {
  width: 52%;
}
.hero .hero-left h1 {
  line-height: 0.95;
  font-weight: var(--fw-black);
}
.hero .hero-left h1 .green-text {
  font-size: var(--fs-8xl);
  color: var(--color-primary-dark);
}
.hero .hero-left .hero-title {
  font-size: var(--fs-6xl);
}
.hero .hero-left .hero-subtitle {
  font-size: var(--fs-3xl);
}
.hero .hero-left .hero-desc {
  margin-top: 24px;
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  line-height: 1.6;
  color: var(--color-text-light);
}
.hero .hero-left .signature-row {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero .hero-left .signature-row .president-info h4 {
  font-size: var(--fs-lg);
  font-weight: var(--fw-extrabold);
}
.hero .hero-left .signature-row .president-info span {
  font-size: var(--fs-base);
  color: var(--color-text-muted);
}
.hero .hero-left .hero-buttons {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero .hero-left .hero-buttons .btn {
  padding: 10px 24px;
}
.hero .hero-left .hero-buttons .btn svg {
  height: 1.5rem;
  width: 1.5rem;
}
.hero .hero-right {
  width: 26%;
  display: flex;
  justify-content: flex-end;
}
.hero .vision-card {
  width: 100%;
  max-width: 360px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(12px);
  color: var(--color-white);
}
.hero .vision-card .divider {
  height: 1px;
  margin: 20px 0;
  background: rgba(255, 255, 255, 0.15);
}
.hero .vision-card .vision-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.hero .vision-card .vision-item .vision-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 137, 59, 0.2);
  color: #8ee33d;
  flex-shrink: 0;
}
.hero .vision-card .vision-item .vision-icon svg {
  width: 24px;
  height: 24px;
  fill: #8ee33d;
}
.hero .vision-card .vision-item h4 {
  margin-bottom: 6px;
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
}
.hero .vision-card .vision-item p {
  font-size: var(--fs-md);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero {
    min-height: auto;
  }
  .hero .hero-content {
    flex-direction: column;
    padding: 60px 0;
    min-height: auto;
    /* Hide the desktop positioned background on tablet/mobile */
  }
  .hero .hero-content::after {
    display: none;
  }
  .hero .hero-left {
    width: 100%;
  }
  .hero .hero-left h1 .green-text {
    font-size: 4rem;
  }
  .hero .hero-left .hero-title {
    font-size: 2.2rem;
  }
  .hero .hero-left .hero-subtitle {
    font-size: 1.6rem;
  }
  .hero .hero-right {
    width: 100%;
    justify-content: flex-start;
  }
  .hero .vision-card {
    max-width: 100%;
  }
}
/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .hero .hero-content {
    padding: 48px 0;
    gap: 28px;
  }
  .hero .hero-left h1 .green-text {
    font-size: 3rem;
  }
  .hero .hero-left .hero-title {
    font-size: 1.8rem;
  }
  .hero .hero-left .hero-subtitle {
    font-size: 1.25rem;
  }
  .hero .hero-left .hero-desc {
    font-size: var(--fs-base);
  }
  .hero .hero-left .signature-row .president-info h4 {
    font-size: var(--fs-base);
  }
  .hero .hero-left .signature-row .president-info span {
    font-size: var(--fs-sm);
  }
  .hero .hero-left .hero-buttons {
    flex-wrap: wrap;
    gap: 12px;
  }
  .hero .hero-left .hero-buttons .btn {
    flex: 1 1 auto;
    justify-content: center;
    text-align: center;
  }
  .hero .hero-right {
    justify-content: center;
  }
  .hero .vision-card {
    max-width: 100%;
  }
}
/* Small mobile (max-width: 480px) */
@media (max-width: 480px) {
  .hero .hero-content {
    padding: 36px 0;
  }
  .hero .hero-left h1 .green-text {
    font-size: 2.25rem;
  }
  .hero .hero-left .hero-title {
    font-size: 1.5rem;
  }
  .hero .hero-left .hero-subtitle {
    font-size: 1rem;
  }
  .hero .hero-left .hero-buttons {
    flex-direction: column;
  }
  .hero .hero-left .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}
/* =========================
   STATS
========================= */
.stats-section {
  background: var(--gradient-dark-green);
  padding: 24px 0;
}
.stats-section .stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.stats-section .stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--color-white);
  padding-right: 16px;
}
.stats-section .stat-card:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.stats-section .stat-card .stat-icon {
  width: 52px;
  height: 52px;
  color: var(--color-gold);
  flex-shrink: 0;
}
.stats-section .stat-card h3 {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
}
.stats-section .stat-card p {
  margin-top: 2px;
  font-size: var(--fs-xs);
  line-height: 1.2;
}

/* =========================
   SECTION TITLE
========================= */
.section-heading {
  text-align: center;
}
.section-heading span {
  color: var(--color-primary);
  font-size: var(--fs-xl);
  font-weight: var(--fw-extrabold);
}
.section-heading h2 {
  margin-top: 8px;
  font-size: 42px;
  font-weight: var(--fw-black);
}

/* =========================
   PROJECTS
========================= */
.projects-section {
  padding: 70px 0;
}
.projects-section .projects-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.projects-section .project-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-md);
}
.projects-section .project-card .project-image {
  height: 220px;
  background: linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12)), linear-gradient(135deg, #737373, #c6c6c6);
}
.projects-section .project-card .project-image.stadium {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), linear-gradient(135deg, #8e7747, #d7b95d);
}
.projects-section .project-card .project-image.road {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), linear-gradient(135deg, #466a2c, #95c16d);
}
.projects-section .project-card .project-image.airport {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), linear-gradient(135deg, #6b7680, #d7dce1);
}
.projects-section .project-card .project-image.sgr {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), linear-gradient(135deg, #a0a0a0, #ececec);
}
.projects-section .project-card .badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--color-white);
  font-size: 10px;
  font-weight: var(--fw-extrabold);
}
.projects-section .project-card .badge.green {
  background: #10863f;
}
.projects-section .project-card .badge.yellow {
  background: #f2a600;
}
.projects-section .project-card .badge.blue {
  background: #005dc9;
}
.projects-section .project-card .project-content {
  padding: 18px;
}
.projects-section .project-card .project-content h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: var(--fw-extrabold);
  line-height: 1.4;
}
.projects-section .project-card .project-content p {
  font-size: var(--fs-md);
  line-height: 1.6;
  color: var(--color-text-light);
}
.projects-section .center-btn {
  margin-top: 34px;
  text-align: center;
}
.projects-section .center-btn .btn {
  padding: 16px 30px;
}

/* =========================
   EXPLORE
========================= */
.explore-section {
  padding: 55px 0;
  background: linear-gradient(90deg, #031d10, #014a24, #015529, #022212);
}
.explore-section .explore-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1.75fr 1.75fr;
  gap: 1rem;
}
.explore-section .explore-left {
  color: var(--color-white);
}
.explore-section .explore-left h2 {
  font-size: var(--fs-3xl);
  line-height: 1.1;
  font-weight: var(--fw-black);
}
.explore-section .explore-left p {
  margin-top: 1rem;
  font-size: var(--fs-md);
  line-height: 1.7;
}
.explore-section .explore-box {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  height: 100%;
}
.explore-section .explore-box--wrapper {
  flex: 1 1 50%;
}
.explore-section .explore-box--wrapper h3 {
  color: var(--color-primary);
  font-size: var(--fs-md);
  font-weight: var(--fw-extrabold);
}
.explore-section .explore-box--wrapper p {
  margin-top: 0.5rem;
  font-size: var(--fs-md);
  line-height: 1.2;
  color: var(--color-text-light);
}
.explore-section .explore-box--wrapper select {
  width: 100%;
  height: 2.75rem;
  margin-top: 1rem;
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: var(--fs-base);
}
.explore-section .explore-box--wrapper .btn {
  margin-top: 0.75rem;
  padding: 14px 20px;
}
.explore-section .explore-box--bg {
  flex: 1 1 40%;
}
.explore-section .explore-box--bg img {
  width: 90%;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}

/* =========================
   ACHIEVEMENTS
========================= */
.achievement-section {
  padding: 70px 0;
}
.achievement-section .achievement-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}
.achievement-section .achievement-item {
  text-align: center;
  padding-inline-end: 1rem;
}
.achievement-section .achievement-item:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}
.achievement-section .achievement-item .achievement-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: var(--color-white);
}
.achievement-section .achievement-item .achievement-icon svg {
  width: 38px;
  height: 38px;
  fill: white !important;
}
.achievement-section .achievement-item h4 {
  margin-top: 1rem;
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
}
.achievement-section .achievement-item p {
  margin-top: 10px;
  font-size: var(--fs-md);
  line-height: 1.6;
  color: var(--color-text-light);
}

/* =========================
   CTA
========================= */
.cta-section {
  position: relative;
  padding: 0;
  background: url(../media/president-3.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.cta-section .cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-section .cta-img {
  flex: 1 1 auto;
  height: 100%;
  position: relative;
}
.cta-section .cta-img {
  display: none;
}
.cta-section .cta-left {
  padding-block: 3rem;
}
.cta-section .cta-left h2 {
  font-size: 58px;
  line-height: 0.95;
  font-weight: var(--fw-black);
}
.cta-section .cta-left h2 span {
  color: var(--color-primary);
}
.cta-section .cta-left p {
  margin: 18px 0 24px;
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
}
.cta-section .cta-left .btn {
  padding: 16px 28px;
}
.cta-section .cta-card {
  width: auto;
  padding: 1rem 1rem;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-lg);
}
.cta-section .cta-card .cta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #ededed;
}
.cta-section .cta-card .cta-item:last-child {
  border-bottom: none;
}
.cta-section .cta-card .cta-item span {
  font-size: 26px;
}
.cta-section .cta-card .cta-item .cta-icon {
  height: 2.75rem;
  width: 2.75rem;
  color: var(--color-gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-section .cta-card .cta-item .cta-icon svg {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  width: 100%;
  fill: var(--color-gold);
}
.cta-section .cta-card .cta-item h4 {
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
}

/* =====================================================
   HOME PAGE RESPONSIVE BREAKPOINTS
===================================================== */
/* Large tablet / small laptop (≤1200px) */
@media (max-width: 1200px) {
  .hero .hero-content {
    flex-direction: column;
    justify-content: center;
    padding: 60px 0;
    min-height: auto;
  }
  .hero .hero-content::after {
    opacity: 0.25;
    right: -10rem;
  }
  .hero .hero-left {
    width: 100%;
  }
  .hero .hero-left h1 .green-text {
    font-size: 5rem;
  }
  .hero .hero-left .hero-title {
    font-size: 2.8rem;
  }
  .hero .hero-left .hero-subtitle {
    font-size: var(--fs-3xl);
  }
  .hero .hero-right {
    width: 100%;
    justify-content: flex-start;
  }
  .hero .vision-card {
    max-width: 100%;
  }
  .stats-section .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .stats-section .stats-grid .stat-card:nth-child(3) {
    border-right: none;
  }
  .projects-section .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .achievement-section .achievement-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .achievement-section .achievement-grid .achievement-item {
    border-right: none;
  }
  .achievement-section .achievement-grid .achievement-item:not(:nth-child(3n)) {
    border-right: 1px solid rgba(0, 0, 0, 0.05);
  }
  .explore-section .explore-grid {
    grid-template-columns: 1fr 1fr;
  }
  .explore-section .explore-left {
    grid-column: span 2;
  }
  .cta-section .cta-content {
    grid-template-columns: 1fr 1fr;
  }
  .cta-section .cta-img {
    display: none;
  }
}
/* Tablet (≤768px) */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
  }
  .hero .hero-content {
    padding: 48px 0;
    gap: 28px;
  }
  .hero .hero-content::after {
    display: none;
  }
  .hero .hero-left h1 .green-text {
    font-size: 3.5rem;
  }
  .hero .hero-left .hero-title {
    font-size: 2.25rem;
  }
  .hero .hero-left .hero-subtitle {
    font-size: 1.25rem;
  }
  .hero .hero-left .hero-desc {
    font-size: var(--fs-base);
  }
  .hero .hero-left .signature-row .president-info h4 {
    font-size: var(--fs-base);
  }
  .hero .hero-left .signature-row .president-info span {
    font-size: var(--fs-sm);
  }
  .hero .hero-left .hero-buttons {
    flex-wrap: wrap;
    gap: 12px;
  }
  .hero .hero-left .hero-buttons .btn {
    flex: 1 1 auto;
    justify-content: center;
    text-align: center;
  }
  .hero .hero-right {
    justify-content: center;
  }
  .hero .vision-card {
    max-width: 100%;
  }
  .stats-section {
    padding: 20px 0;
  }
  .stats-section .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .stats-section .stats-grid .stat-card {
    border-right: none !important;
    padding-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 14px;
  }
  .stats-section .stats-grid .stat-card:nth-last-child(-n+2) {
    border-bottom: none;
  }
  .section-heading h2 {
    font-size: 28px;
  }
  .section-heading span {
    font-size: var(--fs-base);
  }
  .projects-section {
    padding: 48px 0;
  }
  .projects-section .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 28px;
  }
  .projects-section .project-card .project-image {
    height: 160px;
  }
  .projects-section .project-card .project-content h3 {
    font-size: var(--fs-lg);
  }
  .explore-section {
    padding: 40px 0;
  }
  .explore-section .explore-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .explore-section .explore-left {
    grid-column: span 1;
  }
  .explore-section .explore-left h2 {
    font-size: var(--fs-3xl);
  }
  .explore-section .explore-box {
    flex-direction: column;
  }
  .explore-section .explore-box--bg {
    display: none;
  }
  .explore-section .explore-box--wrapper {
    flex: 1 1 100%;
  }
  .achievement-section {
    padding: 48px 0;
  }
  .achievement-section .achievement-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 28px;
  }
  .achievement-section .achievement-grid .achievement-item {
    border-right: none !important;
    padding-inline-end: 0;
  }
  .cta-section .cta-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .cta-section .cta-img {
    display: none;
  }
  .cta-section .cta-left {
    padding-block: 2rem;
  }
  .cta-section .cta-left h2 {
    font-size: 2.25rem;
  }
  .cta-section .cta-left p {
    font-size: var(--fs-base);
  }
  .cta-section .cta-card {
    margin-bottom: 2rem;
  }
}
/* Small mobile (≤480px) */
@media (max-width: 480px) {
  .hero .hero-content {
    padding: 36px 0;
  }
  .hero .hero-left h1 .green-text {
    font-size: 2.75rem;
  }
  .hero .hero-left .hero-title {
    font-size: 1.75rem;
  }
  .hero .hero-left .hero-subtitle {
    font-size: 1.1rem;
  }
  .hero .hero-left .hero-buttons {
    flex-direction: column;
  }
  .hero .hero-left .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  .stats-section .stats-grid {
    grid-template-columns: 1fr;
  }
  .projects-section .projects-grid {
    grid-template-columns: 1fr;
  }
  .achievement-section .achievement-grid {
    grid-template-columns: 1fr;
  }
  .section-heading h2 {
    font-size: 24px;
  }
  .cta-section .cta-left h2 {
    font-size: 1.75rem;
  }
}
/* ministries.css – page-specific styles for Ministries page */
.ministries-layout {
  padding: 36px 0 60px;
}

.ministries-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}

.min-filter-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.min-search-box {
  position: relative;
  width: 220px;
}
.min-search-box input {
  width: 100%;
  height: 44px;
  padding: 0 14px 0 40px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-family: var(--font-family);
  outline: none;
  transition: var(--transition);
}
.min-search-box input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(11, 123, 55, 0.08);
}
.min-search-box .si {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
}
.min-search-box .si svg {
  width: 16px;
  height: 16px;
}

.min-filter-select {
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-family: var(--font-family);
  color: var(--color-text);
  background: var(--color-white);
  cursor: pointer;
  outline: none;
  min-width: 160px;
}

.min-filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 18px;
  border-radius: var(--radius-sm);
  background: var(--gradient-primary);
  color: var(--color-white);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.min-filter-btn svg {
  width: 14px;
  height: 14px;
}
.min-filter-btn:hover {
  transform: translateY(-1px);
}

.min-reset-btn {
  height: 44px;
  padding: 0 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: var(--color-white);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  cursor: pointer;
  transition: var(--transition);
}
.min-reset-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.perf-report-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 18px;
  border: 1.5px solid var(--color-primary);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--color-primary);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  cursor: pointer;
  transition: var(--transition);
}
.perf-report-btn svg {
  width: 16px;
  height: 16px;
}
.perf-report-btn:hover {
  background: var(--color-primary);
  color: #fff;
}

/* Ministries Body */
.ministries-body {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 28px;
  align-items: start;
}

.min-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 12px;
}
.min-section-head h2 {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-extrabold);
}
.min-section-head .view-toggle {
  display: flex;
  gap: 4px;
}
.min-section-head .view-toggle button {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.min-section-head .view-toggle button svg {
  width: 16px;
  height: 16px;
}
.min-section-head .view-toggle button.active, .min-section-head .view-toggle button:hover {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
}

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

/* Ministry Card */
.ministry-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-white);
  transition: var(--transition);
}
.ministry-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(11, 123, 55, 0.2);
}
.ministry-card .min-img {
  position: relative;
  height: 170px;
  overflow: hidden;
}
.ministry-card .min-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s ease;
}
.ministry-card .min-img:hover img {
  transform: scale(1.04);
}
.ministry-card .min-img .min-icon-badge {
  position: absolute;
  bottom: -18px;
  left: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.ministry-card .min-img .min-icon-badge svg {
  width: 20px;
  height: 20px;
}
.ministry-card .min-img .min-icon-badge.green {
  background: var(--color-primary);
}
.ministry-card .min-img .min-icon-badge.gold {
  background: var(--color-gold);
}
.ministry-card .min-img .min-icon-badge.red {
  background: var(--color-red);
}
.ministry-card .min-img .min-icon-badge.blue {
  background: #005dc9;
}
.ministry-card .min-img .min-icon-badge.purple {
  background: #7c3aed;
}
.ministry-card .min-body {
  padding: 26px 16px 16px;
}
.ministry-card .min-body h3 {
  font-size: var(--fs-lg);
  font-weight: var(--fw-extrabold);
  line-height: 1.3;
  margin-bottom: 6px;
}
.ministry-card .min-body .min-tagline {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}
.ministry-card .min-body .min-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 12px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 14px;
}
.ministry-card .min-body .mstat {
  text-align: center;
}
.ministry-card .min-body .mstat .mstat-label {
  font-size: 10px;
  color: var(--color-text-muted);
  font-weight: var(--fw-semibold);
  display: block;
}
.ministry-card .min-body .mstat .mstat-val {
  font-size: var(--fs-sm);
  font-weight: var(--fw-extrabold);
  color: var(--color-text);
  display: block;
  margin-top: 2px;
}
.ministry-card .min-body .mstat .mstat-val.green {
  color: var(--color-primary);
}
.ministry-card .min-body .view-min-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-border);
  background: transparent;
  font-size: var(--fs-sm);
  font-weight: var(--fw-extrabold);
  color: var(--color-text);
  cursor: pointer;
  transition: var(--transition);
}
.ministry-card .min-body .view-min-btn svg {
  width: 14px;
  height: 14px;
}
.ministry-card .min-body .view-min-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: #f0faf4;
}

.min-load-more {
  margin-top: 28px;
  text-align: center;
}
.min-load-more button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: var(--fs-sm);
  font-weight: var(--fw-extrabold);
  cursor: pointer;
  transition: var(--transition);
}
.min-load-more button svg {
  width: 14px;
  height: 14px;
}
.min-load-more button:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* Right Sidebar */
.min-sidebar .sidebar-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
}
.min-sidebar .sidebar-head {
  padding: 14px 18px;
  background: var(--color-bg-soft);
  border-bottom: 1px solid var(--color-border);
  font-size: var(--fs-sm);
  font-weight: var(--fw-extrabold);
  letter-spacing: 0.4px;
}
.min-sidebar .sidebar-body {
  padding: 14px 18px;
}
.min-sidebar .cat-list {
  list-style: none;
}
.min-sidebar .cat-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  transition: var(--transition);
}
.min-sidebar .cat-list li a:hover {
  color: var(--color-primary);
}
.min-sidebar .cat-list li:last-child a {
  border-bottom: none;
}
.min-sidebar .cat-list .cat-count {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: var(--fw-bold);
  color: var(--color-text-muted);
}
.min-sidebar .top-perf-list {
  list-style: none;
}
.min-sidebar .top-perf-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
  flex-wrap: wrap;
}
.min-sidebar .top-perf-list li:last-child {
  border-bottom: none;
}
.min-sidebar .top-perf-list .tp-rank {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  font-size: 11px;
  font-weight: var(--fw-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.min-sidebar .top-perf-list .tp-name {
  flex: 1;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
}
.min-sidebar .top-perf-list .tp-score {
  font-size: var(--fs-xs);
  font-weight: var(--fw-extrabold);
  color: var(--color-primary);
}
.min-sidebar .top-perf-list .tp-bar-wrap {
  width: 60px;
  height: 4px;
  border-radius: 99px;
  background: #e8f5ee;
  overflow: hidden;
}
.min-sidebar .top-perf-list .tp-bar-wrap .tp-bar {
  height: 100%;
  background: var(--color-primary);
  border-radius: 99px;
}
.min-sidebar .view-perf-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 10px;
  margin-top: 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: transparent;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  cursor: pointer;
  transition: var(--transition);
}
.min-sidebar .view-perf-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.min-sidebar .min-ql-list {
  list-style: none;
}
.min-sidebar .min-ql-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  transition: var(--transition);
}
.min-sidebar .min-ql-list li a svg {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
}
.min-sidebar .min-ql-list li a .ql-arrow {
  margin-left: auto;
  color: #ccc;
}
.min-sidebar .min-ql-list li a .ql-arrow svg {
  width: 12px;
  height: 12px;
}
.min-sidebar .min-ql-list li a:hover {
  color: var(--color-primary);
}
.min-sidebar .min-ql-list li:last-child a {
  border-bottom: none;
}
.min-sidebar .min-promo-card {
  border-radius: var(--radius-md);
  padding: 22px;
  background: linear-gradient(135deg, #012e17, #015529);
  color: var(--color-white);
}
.min-sidebar .min-promo-card h4 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-extrabold);
  line-height: 1.3;
  margin-bottom: 6px;
}
.min-sidebar .min-promo-card p {
  font-size: var(--fs-sm);
  opacity: 0.88;
}

.ministries-layout {
  padding: 36px 0 60px;
}

/* Responsive */
@media (max-width: 1100px) {
  .ministries-layout {
    padding: 30px 0 50px;
  }
  .ministries-body {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .min-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .min-sidebar .min-promo-card {
    grid-column: 1/-1;
  }
}
@media (max-width: 768px) {
  .ministries-layout {
    padding: 24px 0 40px;
  }
  .ministries-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .min-sidebar {
    grid-template-columns: 1fr;
  }
  .ministries-top-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .min-filter-row {
    flex-wrap: wrap;
    gap: 12px;
  }
  .min-search-box {
    width: 100%;
  }
  .min-filter-select {
    flex: 1;
    min-width: auto;
  }
  .perf-report-btn {
    width: 100%;
    justify-content: center;
  }
  .min-section-head {
    flex-wrap: wrap;
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .ministries-layout {
    padding: 20px 0 30px;
  }
  .min-filter-row {
    flex-direction: column;
  }
  .min-filter-select {
    width: 100%;
  }
}
/* news.css – page-specific styles for News & Media page */
/* =========================
   NEWS LAYOUT
========================= */
.news-layout {
  padding: 44px 0 60px;
}

.news-body {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}

/* =========================
   FEATURED STORY
========================= */
.featured-story {
  margin-bottom: 44px;
}
.featured-story .fs-label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-extrabold);
  letter-spacing: 0.8px;
  border-bottom: 3px solid var(--color-primary);
  padding-bottom: 10px;
  margin-bottom: 20px;
  display: inline-block;
}
.featured-story .fs-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  transition: var(--transition);
}
.featured-story .fs-card:hover {
  box-shadow: var(--shadow-md);
}
.featured-story .fs-img {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}
.featured-story .fs-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s;
}
.featured-story .fs-img:hover img {
  transform: scale(1.03);
}
.featured-story .fs-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-story .fs-content .fs-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary);
  font-size: 10px;
  font-weight: var(--fw-extrabold);
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.featured-story .fs-content h2 {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-black);
  line-height: 1.2;
  margin-bottom: 14px;
}
.featured-story .fs-content p {
  font-size: var(--fs-md);
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: 20px;
}
.featured-story .fs-content .fs-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}
.featured-story .fs-content .fs-meta svg {
  width: 14px;
  height: 14px;
}
.featured-story .fs-content .fs-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* =========================
   LATEST NEWS
========================= */
.latest-news .ln-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.latest-news .ln-header h3 {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-extrabold);
  margin-right: 8px;
}
.latest-news .ln-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.latest-news .ln-tab {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--color-border);
  background: transparent;
  font-size: var(--fs-xs);
  font-weight: var(--fw-extrabold);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-family);
}
.latest-news .ln-tab.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.latest-news .ln-tab:hover:not(.active) {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.latest-news .ln-sort {
  margin-left: auto;
  height: 36px;
  padding: 0 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-family: var(--font-family);
  cursor: pointer;
  outline: none;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.news-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition);
}
.news-item:last-child {
  border-bottom: none;
}
.news-item:hover .ni-img img {
  transform: scale(1.04);
}
.news-item .ni-img {
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 110px;
}
.news-item .ni-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s;
}
.news-item .ni-content .ni-cat {
  font-size: 10px;
  font-weight: var(--fw-extrabold);
  letter-spacing: 0.8px;
  color: var(--color-primary);
  margin-bottom: 6px;
}
.news-item .ni-content .ni-cat.infra {
  color: var(--color-primary);
}
.news-item .ni-content .ni-cat.edu {
  color: #0369a1;
}
.news-item .ni-content .ni-cat.health {
  color: #dc2626;
}
.news-item .ni-content .ni-cat.agri {
  color: #16a34a;
}
.news-item .ni-content h4 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-extrabold);
  line-height: 1.3;
  margin-bottom: 8px;
}
.news-item .ni-content p {
  font-size: var(--fs-sm);
  line-height: 1.6;
  color: var(--color-text-light);
  margin-bottom: 10px;
}
.news-item .ni-content .ni-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}
.news-item .ni-content .ni-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.news-item .ni-content .ni-meta svg {
  width: 12px;
  height: 12px;
}

.view-all-news-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  margin-top: 24px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: var(--fs-sm);
  font-weight: var(--fw-extrabold);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-family);
}
.view-all-news-btn svg {
  width: 14px;
  height: 14px;
}
.view-all-news-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* =========================
   MEDIA RESOURCES STRIP
========================= */
.media-resources {
  padding: 44px 0;
  border-top: 1px solid var(--color-border);
}
.media-resources .mr-label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-extrabold);
  letter-spacing: 0.8px;
  border-bottom: 3px solid var(--color-primary);
  padding-bottom: 10px;
  margin-bottom: 24px;
  display: inline-block;
}
.media-resources .mr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.media-resources .mr-card {
  padding: 22px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
}
.media-resources .mr-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.media-resources .mr-card .mr-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: #f0faf4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--color-primary);
}
.media-resources .mr-card .mr-icon svg {
  width: 22px;
  height: 22px;
}
.media-resources .mr-card h4 {
  font-size: var(--fs-lg);
  font-weight: var(--fw-extrabold);
  margin-bottom: 6px;
}
.media-resources .mr-card p {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}
.media-resources .mr-card .mr-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
}
.media-resources .mr-card .mr-link svg {
  width: 14px;
  height: 14px;
}

/* =========================
   RIGHT SIDEBAR
========================= */
.news-sidebar .ns-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
}
.news-sidebar .ns-head {
  padding: 14px 18px;
  background: var(--color-bg-soft);
  border-bottom: 1px solid var(--color-border);
  font-size: var(--fs-sm);
  font-weight: var(--fw-extrabold);
  letter-spacing: 0.4px;
}
.news-sidebar .ns-body {
  padding: 16px 18px;
}
.news-sidebar {
  /* Media Highlight */
}
.news-sidebar .media-highlight .mh-thumb {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 14px;
  cursor: pointer;
}
.news-sidebar .media-highlight .mh-thumb img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s;
}
.news-sidebar .media-highlight .mh-thumb:hover img {
  transform: scale(1.04);
}
.news-sidebar .media-highlight .mh-thumb .play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
}
.news-sidebar .media-highlight .mh-thumb .play-btn .play-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-sidebar .media-highlight .mh-thumb .play-btn .play-circle svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
}
.news-sidebar .media-highlight .mh-thumb .duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 10px;
  font-weight: var(--fw-bold);
  padding: 3px 7px;
  border-radius: 4px;
}
.news-sidebar .media-highlight h4 {
  font-size: var(--fs-md);
  font-weight: var(--fw-extrabold);
  line-height: 1.4;
  margin-bottom: 8px;
}
.news-sidebar .media-highlight p {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}
.news-sidebar .media-highlight .watch-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-extrabold);
  color: var(--color-primary);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-family);
}
.news-sidebar .media-highlight .watch-btn svg {
  width: 14px;
  height: 14px;
}
.news-sidebar {
  /* Press Releases */
}
.news-sidebar .press-list {
  list-style: none;
}
.news-sidebar .press-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}
.news-sidebar .press-list li:last-child {
  border-bottom: none;
}
.news-sidebar .press-list li a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--color-text);
  transition: var(--transition);
}
.news-sidebar .press-list li a:hover {
  color: var(--color-primary);
}
.news-sidebar .press-list li .pr-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: #f0faf4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
}
.news-sidebar .press-list li .pr-icon svg {
  width: 16px;
  height: 16px;
}
.news-sidebar .press-list li .pr-info h5 {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  line-height: 1.4;
  margin-bottom: 4px;
}
.news-sidebar .press-list li .pr-info span {
  font-size: 11px;
  color: var(--color-text-muted);
}
.news-sidebar .view-all-pr {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-extrabold);
  color: var(--color-primary);
  background: none;
  border: none;
  cursor: pointer;
  margin-top: 12px;
  font-family: var(--font-family);
}
.news-sidebar .view-all-pr svg {
  width: 14px;
  height: 14px;
}
.news-sidebar {
  /* Social */
}
.news-sidebar .social-row {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}
.news-sidebar .social-row .social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: var(--fw-bold);
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.news-sidebar .social-row .social-btn:hover {
  transform: translateY(-2px);
}
.news-sidebar .social-row .social-btn.fb {
  background: #1877f2;
}
.news-sidebar .social-row .social-btn.tw {
  background: #000;
}
.news-sidebar .social-row .social-btn.ig {
  background: linear-gradient(135deg, #e1306c, #833ab4);
}
.news-sidebar .social-row .social-btn.yt {
  background: #ff0000;
}
.news-sidebar .social-row .social-btn.li {
  background: #0077b5;
}
.news-sidebar .social-desc {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* =========================
   NEWSLETTER BAR
========================= */
.news-newsletter {
  padding: 40px 0;
  background: linear-gradient(90deg, #012e17, #014a24, #012e17);
}
.news-newsletter .nn-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
}
.news-newsletter .nn-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8ee33d;
}
.news-newsletter .nn-icon svg {
  width: 28px;
  height: 28px;
}
.news-newsletter .nn-text {
  color: #fff;
}
.news-newsletter .nn-text h3 {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-extrabold);
  margin-bottom: 4px;
}
.news-newsletter .nn-text p {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.75);
}
.news-newsletter .nn-form {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.news-newsletter .nn-form input {
  width: 280px;
  height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: var(--fs-sm);
  font-family: var(--font-family);
  outline: none;
}
.news-newsletter .nn-form input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.news-newsletter .nn-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.news-newsletter .nn-form input:focus {
  border-color: rgba(255, 255, 255, 0.4);
}
.news-newsletter .nn-form .btn {
  padding: 0 24px;
  height: 50px;
}

/* =========================
   RESPONSIVE
========================= */
.news-layout {
  padding: 44px 0 60px;
}

/* Responsive */
@media (max-width: 1100px) {
  .news-layout {
    padding: 36px 0 50px;
  }
  .news-body {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .news-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .news-layout {
    padding: 30px 0 40px;
  }
  .featured-story {
    margin-bottom: 32px;
  }
  .featured-story .fs-card {
    grid-template-columns: 1fr;
  }
  .featured-story .fs-img {
    min-height: 200px;
  }
  .featured-story .fs-content {
    padding: 20px;
  }
  .featured-story .fs-content h2 {
    font-size: 28px;
  }
  .latest-news .ln-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .latest-news .ln-header .ln-tabs {
    flex-wrap: wrap;
  }
  .latest-news .ln-header .ln-sort {
    margin-left: 0;
    width: 100%;
  }
  .news-item {
    grid-template-columns: 100px 1fr;
    gap: 12px;
  }
  .news-item .ni-img {
    height: 80px;
  }
  .news-item .ni-content h4 {
    font-size: var(--fs-md);
  }
  .news-item .ni-content p {
    font-size: var(--fs-xs);
  }
  .media-resources {
    padding: 36px 0;
  }
  .media-resources .mr-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .news-sidebar {
    grid-template-columns: 1fr;
  }
  .news-newsletter .nn-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
  .news-newsletter .nn-inner .nn-form {
    justify-content: center;
    flex-direction: row;
  }
  .news-newsletter .nn-inner .nn-form input {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .news-layout {
    padding: 24px 0 30px;
  }
  .featured-story .fs-content h2 {
    font-size: 24px;
  }
  .featured-story .fs-content .fs-meta {
    flex-wrap: wrap;
  }
  .media-resources .mr-grid {
    grid-template-columns: 1fr;
  }
  .news-newsletter .nn-form {
    flex-direction: column;
  }
  .news-newsletter .nn-form .btn {
    width: 100%;
  }
}
/* projects.css – page-specific styles for Projects page */
.projects-page-layout {
  padding: 36px 0 60px;
}
.projects-page-layout .projects-page-body {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 28px;
  align-items: start;
}

/* Filter Tabs Bar */
.proj-tabs-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.proj-tabs-bar .proj-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-border);
  background: #fff;
  font-size: var(--fs-sm);
  font-weight: var(--fw-extrabold);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-family);
  color: var(--color-text);
}
.proj-tabs-bar .proj-tab svg {
  width: 15px;
  height: 15px;
}
.proj-tabs-bar .proj-tab.active {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
}
.proj-tabs-bar .proj-tab:hover:not(.active) {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.proj-tabs-bar .proj-tab.tab-completed svg {
  color: #10863f;
}
.proj-tabs-bar .proj-tab.tab-progress svg {
  color: #f2a600;
}
.proj-tabs-bar .proj-tab.tab-planned svg {
  color: #005dc9;
}
.proj-tabs-bar .proj-tab.tab-flagship svg {
  color: #f59e0b;
}

/* Results Bar */
.proj-results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 12px;
}
.proj-results-bar .results-count {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}
.proj-results-bar .results-count strong {
  color: var(--color-text);
}
.proj-results-bar .results-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.proj-results-bar .sort-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.proj-results-bar .sort-row label {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  font-weight: var(--fw-semibold);
}
.proj-results-bar .sort-row select {
  height: 36px;
  padding: 0 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-family: var(--font-family);
  cursor: pointer;
  outline: none;
}
.proj-results-bar .view-toggle {
  display: flex;
  gap: 4px;
}
.proj-results-bar .view-toggle button {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.proj-results-bar .view-toggle button svg {
  width: 16px;
  height: 16px;
}
.proj-results-bar .view-toggle button.active, .proj-results-bar .view-toggle button:hover {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
}

/* Projects Grid */
.proj-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Project Card */
.proj-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  transition: var(--transition);
}
.proj-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(11, 123, 55, 0.2);
}
.proj-card .pc-img {
  position: relative;
  height: 190px;
  overflow: hidden;
}
.proj-card .pc-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s;
}
.proj-card .pc-img:hover img {
  transform: scale(1.04);
}
.proj-card .pc-img .pc-sector-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 10px;
  font-weight: var(--fw-bold);
}
.proj-card .pc-img .pc-sector-tag svg {
  width: 12px;
  height: 12px;
}
.proj-card .pc-status {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: var(--fw-extrabold);
  color: #fff;
  letter-spacing: 0.3px;
}
.proj-card .pc-status.completed {
  background: #10863f;
}
.proj-card .pc-status.in-progress {
  background: #f2a600;
}
.proj-card .pc-status.planned {
  background: #005dc9;
}
.proj-card .pc-body {
  padding: 16px;
}
.proj-card .pc-body h3 {
  font-size: var(--fs-lg);
  font-weight: var(--fw-extrabold);
  line-height: 1.3;
  margin-bottom: 5px;
}
.proj-card .pc-body .pc-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  margin-bottom: 10px;
}
.proj-card .pc-body .pc-location svg {
  width: 12px;
  height: 12px;
  color: var(--color-primary);
}
.proj-card .pc-body .pc-desc {
  font-size: var(--fs-sm);
  line-height: 1.6;
  color: var(--color-text-light);
  margin-bottom: 14px;
}
.proj-card .pc-body .pc-meta-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 12px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 14px;
}
.proj-card .pc-body .pc-meta-item .pm-label {
  display: block;
  font-size: 10px;
  color: var(--color-text-muted);
  font-weight: var(--fw-semibold);
  margin-bottom: 3px;
}
.proj-card .pc-body .pc-meta-item .pm-val {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-extrabold);
  color: var(--color-text);
}
.proj-card .pc-body .pc-meta-item .pm-val.green {
  color: var(--color-primary);
}
.proj-card .pc-body .pc-meta-item .pm-val.gold {
  color: #c98200;
}
.proj-card .pc-body .view-proj-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-border);
  background: transparent;
  font-size: var(--fs-sm);
  font-weight: var(--fw-extrabold);
  color: var(--color-text);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-family);
}
.proj-card .pc-body .view-proj-btn svg {
  width: 14px;
  height: 14px;
}
.proj-card .pc-body .view-proj-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: #f0faf4;
}

.proj-load-more {
  margin-top: 28px;
  text-align: center;
}
.proj-load-more button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: var(--fs-sm);
  font-weight: var(--fw-extrabold);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-family);
}
.proj-load-more button svg {
  width: 14px;
  height: 14px;
}
.proj-load-more button:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* Filter Sidebar */
.proj-filter-sidebar {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
}
.proj-filter-sidebar .pfs-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--color-bg-soft);
  border-bottom: 1px solid var(--color-border);
}
.proj-filter-sidebar .pfs-head h3 {
  font-size: var(--fs-md);
  font-weight: var(--fw-extrabold);
}
.proj-filter-sidebar .pfs-head .filter-icon {
  color: var(--color-primary);
}
.proj-filter-sidebar .pfs-head .filter-icon svg {
  width: 16px;
  height: 16px;
}
.proj-filter-sidebar .pfs-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.proj-filter-sidebar .filter-group label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-extrabold);
  margin-bottom: 8px;
}
.proj-filter-sidebar .filter-group .filter-search {
  position: relative;
}
.proj-filter-sidebar .filter-group .filter-search input {
  width: 100%;
  height: 42px;
  padding: 0 12px 0 36px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-family: var(--font-family);
  outline: none;
  transition: var(--transition);
}
.proj-filter-sidebar .filter-group .filter-search input:focus {
  border-color: var(--color-primary);
}
.proj-filter-sidebar .filter-group .filter-search svg {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  color: #aaa;
}
.proj-filter-sidebar .filter-group select {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-family: var(--font-family);
  color: var(--color-text);
  background: #fff;
  cursor: pointer;
  outline: none;
}
.proj-filter-sidebar .budget-range-wrap .range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}
.proj-filter-sidebar .budget-range-wrap input[type=range] {
  width: 100%;
  accent-color: var(--color-primary);
}
.proj-filter-sidebar .pfs-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
}
.proj-filter-sidebar .pfs-actions button {
  height: 42px;
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-weight: var(--fw-extrabold);
  cursor: pointer;
  font-family: var(--font-family);
  transition: var(--transition);
}
.proj-filter-sidebar .pfs-actions button.apply-btn {
  background: var(--gradient-primary);
  color: #fff;
  border: none;
}
.proj-filter-sidebar .pfs-actions button.apply-btn:hover {
  transform: translateY(-1px);
}
.proj-filter-sidebar .pfs-actions button.reset-btn {
  background: #fff;
  border: 1px solid var(--color-border);
  color: var(--color-text);
}
.proj-filter-sidebar .pfs-actions button.reset-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.projects-page-layout {
  padding: 36px 0 60px;
}
.projects-page-layout .projects-page-body {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 28px;
  align-items: start;
}

/* Responsive */
@media (max-width: 1100px) {
  .projects-page-layout {
    padding: 30px 0 50px;
  }
  .projects-page-layout .projects-page-body {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .proj-filter-sidebar {
    display: none;
  }
  .proj-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .projects-page-layout {
    padding: 24px 0 40px;
  }
  .proj-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .proj-tabs-bar {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    margin-bottom: 16px;
    gap: 6px;
  }
  .proj-tabs-bar .proj-tab {
    padding: 8px 16px;
    white-space: nowrap;
  }
  .proj-results-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .proj-results-bar .results-right {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .projects-page-layout {
    padding: 20px 0 30px;
  }
  .proj-results-bar .sort-row {
    flex-wrap: wrap;
  }
  .proj-results-bar .sort-row select {
    width: 140px;
  }
}
/* get-involved.css – page-specific styles for Get Involved page */
/* =========================
   STATS TICKER STRIP
========================= */
.gi-stats-strip {
  background: var(--color-dark);
  padding: 22px 0;
}
.gi-stats-strip .gi-stats-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  text-align: center;
}
.gi-stats-strip .gi-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.gi-stats-strip .gi-stat:last-child {
  border-right: none;
}
.gi-stats-strip .gi-stat .gs-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gi-stats-strip .gi-stat .gs-icon svg {
  width: 18px;
  height: 18px;
  color: #8ee33d;
}
.gi-stats-strip .gi-stat .gs-text {
  text-align: left;
}
.gi-stats-strip .gi-stat .gs-text h4 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-black);
  color: #8ee33d;
  line-height: 1;
}
.gi-stats-strip .gi-stat .gs-text p {
  font-size: 10px;
  font-weight: var(--fw-bold);
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* =========================
   WAYS TO GET INVOLVED
========================= */
.ways-section {
  padding: 64px 0;
}
.ways-section .ways-label {
  text-align: center;
  margin-bottom: 44px;
}
.ways-section .ways-label h2 {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-black);
}
.ways-section .ways-label .underline {
  width: 60px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 99px;
  margin: 10px auto 0;
}
.ways-section .ways-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.ways-section .way-card {
  padding: 28px 20px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}
.ways-section .way-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}
.ways-section .way-card .way-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f0faf4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.ways-section .way-card .way-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
}
.ways-section .way-card h3 {
  font-size: var(--fs-md);
  font-weight: var(--fw-extrabold);
  margin-bottom: 10px;
}
.ways-section .way-card p {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 14px;
}
.ways-section .way-card .way-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-extrabold);
  color: var(--color-primary);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-family);
  padding: 0;
  transition: var(--transition);
}
.ways-section .way-card .way-link svg {
  width: 14px;
  height: 14px;
}
.ways-section .way-card .way-link:hover {
  gap: 10px;
}

/* =========================
   VOLUNTEER BANNER
========================= */
.volunteer-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #012e17, #025c2e);
  min-height: 340px;
  display: flex;
  align-items: center;
}
.volunteer-banner .vb-img {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
}
.volunteer-banner .vb-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.35;
}
.volunteer-banner .vb-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #012e17 30%, transparent 100%);
  z-index: 1;
}
.volunteer-banner .vb-content {
  position: relative;
  z-index: 2;
  padding: 52px 0;
  max-width: 520px;
}
.volunteer-banner .vb-content .vb-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 10px;
  font-weight: var(--fw-extrabold);
  letter-spacing: 1px;
  color: #8ee33d;
  margin-bottom: 16px;
}
.volunteer-banner .vb-content h2 {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-black);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}
.volunteer-banner .vb-content p {
  font-size: var(--fs-md);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin-bottom: 24px;
}
.volunteer-banner .vb-content .browse-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: var(--fw-extrabold);
  cursor: pointer;
  font-family: var(--font-family);
  transition: var(--transition);
}
.volunteer-banner .vb-content .browse-btn svg {
  width: 14px;
  height: 14px;
}
.volunteer-banner .vb-content .browse-btn:hover {
  background: #fff;
  color: var(--color-primary);
}

/* =========================
   UPCOMING INITIATIVES
========================= */
.initiatives-section {
  padding: 64px 0;
}
.initiatives-section .init-label {
  text-align: center;
  margin-bottom: 40px;
}
.initiatives-section .init-label h2 {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-black);
}
.initiatives-section .init-label .underline {
  width: 60px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 99px;
  margin: 10px auto 0;
}
.initiatives-section .init-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.initiatives-section .init-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  transition: var(--transition);
}
.initiatives-section .init-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.initiatives-section .init-card .init-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.initiatives-section .init-card .init-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s;
}
.initiatives-section .init-card .init-img:hover img {
  transform: scale(1.04);
}
.initiatives-section .init-card .init-img .init-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: var(--fw-extrabold);
  letter-spacing: 0.5px;
  color: #fff;
}
.initiatives-section .init-card .init-img .init-tag.env {
  background: #16a34a;
}
.initiatives-section .init-card .init-img .init-tag.edu {
  background: #0369a1;
}
.initiatives-section .init-card .init-img .init-tag.health {
  background: #dc2626;
}
.initiatives-section .init-card .init-img .init-tag.infra {
  background: var(--color-primary);
}
.initiatives-section .init-card .init-body {
  padding: 16px;
}
.initiatives-section .init-card .init-body h3 {
  font-size: var(--fs-md);
  font-weight: var(--fw-extrabold);
  margin-bottom: 6px;
  line-height: 1.3;
}
.initiatives-section .init-card .init-body .init-date {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  margin-bottom: 10px;
}
.initiatives-section .init-card .init-body .init-date svg {
  width: 12px;
  height: 12px;
}
.initiatives-section .init-card .init-body p {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 14px;
}
.initiatives-section .init-card .init-body .learn-more-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-extrabold);
  color: var(--color-primary);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-family);
  padding: 0;
  transition: var(--transition);
}
.initiatives-section .init-card .init-body .learn-more-btn svg {
  width: 14px;
  height: 14px;
}
.initiatives-section .init-card .init-body .learn-more-btn:hover {
  gap: 10px;
}

/* =========================
   STAY CONNECTED STRIP
========================= */
.stay-connected {
  padding: 44px 0;
  background: var(--color-bg-soft);
  border-top: 1px solid var(--color-border);
}
.stay-connected .sc-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.stay-connected .sc-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.stay-connected .sc-icon svg {
  width: 26px;
  height: 26px;
  color: #fff;
}
.stay-connected .sc-text h3 {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-extrabold);
  margin-bottom: 4px;
}
.stay-connected .sc-text p {
  font-size: var(--fs-md);
  color: var(--color-text-light);
}
.stay-connected .sc-form {
  display: flex;
  gap: 10px;
}
.stay-connected .sc-form input {
  width: 280px;
  height: 50px;
  padding: 0 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-family: var(--font-family);
  outline: none;
  transition: var(--transition);
}
.stay-connected .sc-form input:focus {
  border-color: var(--color-primary);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
  .ways-section .ways-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .gi-stats-strip .gi-stats-inner {
    grid-template-columns: repeat(3, 1fr);
  }
  .initiatives-section .init-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .ways-section .ways-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .gi-stats-strip .gi-stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .volunteer-banner .vb-content {
    max-width: 100%;
    padding: 40px 0;
  }
  .volunteer-banner .vb-content h2 {
    font-size: 28px;
  }
  .initiatives-section .init-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .stay-connected .sc-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
  }
  .stay-connected .sc-inner .sc-form {
    flex-direction: row;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .ways-section .ways-grid {
    grid-template-columns: 1fr;
  }
  .gi-stats-strip .gi-stats-inner {
    grid-template-columns: 1fr;
  }
  .stay-connected .sc-form {
    flex-direction: column;
  }
  .stay-connected .sc-form input {
    width: 100%;
  }
  .stay-connected .sc-form .btn {
    width: 100%;
  }
  .volunteer-banner .vb-content h2 {
    font-size: 24px;
  }
  .volunteer-banner .vb-content .browse-btn {
    width: 100%;
    justify-content: center;
  }
}
/* achievements.css – page-specific styles for Achievements page */
/* =========================
   ACHIEVEMENTS LAYOUT
========================= */
.achievements-layout {
  padding: 44px 0 60px;
}

/* =========================
   CATEGORY TABS
========================= */
.ach-tabs-section {
  margin-bottom: 40px;
}
.ach-tabs-section .ach-tabs-label {
  text-align: center;
  margin-bottom: 24px;
}
.ach-tabs-section .ach-tabs-label h2 {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-black);
}
.ach-tabs-section .ach-tabs-label .underline {
  width: 60px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 99px;
  margin: 10px auto 0;
}
.ach-tabs-section .ach-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.ach-tabs-section .ach-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-border);
  background: #fff;
  font-size: var(--fs-xs);
  font-weight: var(--fw-extrabold);
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-family);
  color: var(--color-text-muted);
  min-width: 90px;
}
.ach-tabs-section .ach-tab svg {
  width: 20px;
  height: 20px;
}
.ach-tabs-section .ach-tab.active {
  border-color: var(--color-primary);
  background: #f0faf4;
  color: var(--color-primary);
}
.ach-tabs-section .ach-tab:hover:not(.active) {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* =========================
   ACHIEVEMENTS GRID
========================= */
.ach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.ach-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  transition: var(--transition);
}
.ach-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(11, 123, 55, 0.2);
}
.ach-card .ach-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.ach-card .ach-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s;
}
.ach-card .ach-img:hover img {
  transform: scale(1.04);
}
.ach-card .ach-img .ach-cat-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: var(--fw-extrabold);
  letter-spacing: 0.5px;
  color: #fff;
}
.ach-card .ach-img .ach-cat-badge.infra {
  background: var(--color-primary);
}
.ach-card .ach-img .ach-cat-badge.edu {
  background: #0369a1;
}
.ach-card .ach-img .ach-cat-badge.health {
  background: #dc2626;
}
.ach-card .ach-img .ach-cat-badge.agri {
  background: #16a34a;
}
.ach-card .ach-img .ach-cat-badge.econ {
  background: #7c3aed;
}
.ach-card .ach-img .ach-cat-badge.security {
  background: #92400e;
}
.ach-card .ach-body {
  padding: 16px;
}
.ach-card .ach-body h3 {
  font-size: var(--fs-lg);
  font-weight: var(--fw-extrabold);
  margin-bottom: 8px;
  line-height: 1.3;
}
.ach-card .ach-body .ach-desc {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 10px;
}
.ach-card .ach-body .ach-impact {
  font-size: var(--fs-sm);
  color: var(--color-text);
  line-height: 1.5;
  margin-bottom: 14px;
}
.ach-card .ach-body .ach-impact strong {
  color: var(--color-primary);
}
.ach-card .ach-body .view-ach-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-extrabold);
  color: var(--color-primary);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-family);
  padding: 0;
  transition: var(--transition);
}
.ach-card .ach-body .view-ach-btn svg {
  width: 14px;
  height: 14px;
}
.ach-card .ach-body .view-ach-btn:hover {
  gap: 10px;
}

.view-all-ach-wrap {
  text-align: center;
  margin-bottom: 56px;
}
.view-all-ach-wrap .view-all-ach-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  border-radius: var(--radius-sm);
  background: var(--gradient-primary);
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: var(--fw-extrabold);
  border: none;
  cursor: pointer;
  font-family: var(--font-family);
  transition: var(--transition);
}
.view-all-ach-wrap .view-all-ach-btn svg {
  width: 14px;
  height: 14px;
}
.view-all-ach-wrap .view-all-ach-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* =========================
   IMPACT IN NUMBERS
========================= */
.impact-numbers-section {
  padding: 52px 0;
  background: var(--color-dark);
}
.impact-numbers-section .in-label {
  text-align: center;
  margin-bottom: 36px;
}
.impact-numbers-section .in-label h2 {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-black);
  color: #fff;
}
.impact-numbers-section .in-label .underline {
  width: 60px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 99px;
  margin: 10px auto 0;
}
.impact-numbers-section .in-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
}
@media (max-width: 1100px) {
  .impact-numbers-section .in-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .impact-numbers-section .in-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.impact-numbers-section .in-item {
  padding: 28px 16px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.impact-numbers-section .in-item .in-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: #8ee33d;
}
.impact-numbers-section .in-item .in-icon svg {
  width: 22px;
  height: 22px;
}
.impact-numbers-section .in-item h3 {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-black);
  color: #8ee33d;
  margin-bottom: 4px;
}
.impact-numbers-section .in-item p {
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

/* =========================
   STORIES OF CHANGE
========================= */
.stories-section {
  padding: 56px 0;
}
.stories-section .stories-header {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 32px;
  margin-bottom: 36px;
}
.stories-section .stories-header .sh-text h2 {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-black);
  margin-bottom: 8px;
}
.stories-section .stories-header .sh-text p {
  font-size: var(--fs-md);
  color: var(--color-text-light);
  line-height: 1.6;
  max-width: 380px;
}
.stories-section .stories-header .view-stories-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--color-primary);
  background: transparent;
  color: var(--color-primary);
  font-size: var(--fs-sm);
  font-weight: var(--fw-extrabold);
  cursor: pointer;
  font-family: var(--font-family);
  transition: var(--transition);
}
.stories-section .stories-header .view-stories-btn svg {
  width: 14px;
  height: 14px;
}
.stories-section .stories-header .view-stories-btn:hover {
  background: var(--color-primary);
  color: #fff;
}
.stories-section .stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
.stories-section .story-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  transition: var(--transition);
}
.stories-section .story-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.stories-section .story-card .sc-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.stories-section .story-card .sc-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s;
}
.stories-section .story-card .sc-img:hover img {
  transform: scale(1.04);
}
.stories-section .story-card .sc-img .play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.stories-section .story-card .sc-img .play-overlay .play-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}
.stories-section .story-card .sc-img .play-overlay .play-circle svg {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
}
.stories-section .story-card .sc-body {
  padding: 16px;
}
.stories-section .story-card .sc-body h4 {
  font-size: var(--fs-md);
  font-weight: var(--fw-extrabold);
  margin-bottom: 3px;
}
.stories-section .story-card .sc-body .sc-role {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  margin-bottom: 10px;
}
.stories-section .story-card .sc-body .sc-quote {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: 1.6;
  font-style: italic;
  border-left: 3px solid var(--color-primary);
  padding-left: 12px;
}
.stories-section .stories-nav {
  position: absolute;
  right: 0;
  top: -60px;
  display: flex;
  gap: 8px;
}
.stories-section .stories-nav button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.stories-section .stories-nav button svg {
  width: 16px;
  height: 16px;
}
.stories-section .stories-nav button:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

/* =========================
   CTA BANNER
========================= */
.ach-cta {
  padding: 44px 0;
  background: #f5faf7;
  border-top: 1px solid #dceee3;
  border-bottom: 1px solid #dceee3;
}
.ach-cta .ach-cta-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.ach-cta .ach-cta-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #dceee3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ach-cta .ach-cta-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
}
.ach-cta .ach-cta-text h3 {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-black);
  margin-bottom: 4px;
}
.ach-cta .ach-cta-text p {
  font-size: var(--fs-md);
  color: var(--color-text-light);
}

/* =========================
   RESPONSIVE
========================= */
.achievements-layout {
  padding: 44px 0 60px;
}

/* Responsive */
@media (max-width: 1100px) {
  .achievements-layout {
    padding: 36px 0 50px;
  }
  .ach-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .achievements-layout {
    padding: 30px 0 40px;
  }
  .ach-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ach-tabs-section .ach-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    gap: 8px;
  }
  .ach-tabs-section .ach-tabs .ach-tab {
    white-space: nowrap;
    padding: 8px 16px;
  }
  .impact-numbers-section .in-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stories-section {
    padding: 40px 0;
  }
  .stories-section .stories-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .stories-section .stories-header .view-stories-btn {
    align-self: flex-start;
  }
  .stories-section .stories-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ach-cta .ach-cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .achievements-layout {
    padding: 24px 0 30px;
  }
  .impact-numbers-section .in-grid {
    grid-template-columns: 1fr;
  }
  .stories-section .stories-header .sh-text h2 {
    font-size: 28px;
  }
  .stories-section .stories-header .sh-text p {
    font-size: var(--fs-sm);
  }
}/*# sourceMappingURL=main.css.map */