/* === RESET & BASE === */
@font-face {
  font-family: 'Anydore';
  src: url('fonts/Anydore.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  color: #222;
  background-color: #f1f3f6;
}

/* === BOXED LAYOUT === */
.page-wrapper {
  max-width: 1200px;
  margin: 1rem auto;
  background-color: #ffffff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-radius: 6px;
  overflow: hidden;
}

.inner {
  padding: 0 1rem;
}

:root {
  --primary: #0d5c4d;
  --primary-dark: #084036;
  --primary-light: #e5f4f1;
  --accent: #d99100;
  --text-muted: #6c757d;
  --bg-topbar: #0c2430;
  --bg-ticker: #0d5c4d;
}

/* Links */
a {
  text-decoration: none;
  color: var(--primary-dark);
}
a:hover {
  text-decoration: underline;
}

/* === TOP HEADER === */
.top-header {
  background-color: var(--bg-topbar);
  color: #ffffff;
  font-size: 0.875rem;
  margin-top: 20px;
}

.top-header .inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 1rem;
}

.top-left,
.top-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.top-left span,
.top-right span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.top-header a {
  color: #ffffff;
}

.weather {
  font-weight: 500;
}

/* Social icons */
.social-icons a {
  display: inline-flex;
  width: 28px;
  height: 28px;
  line-height: 26px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  font-size: 0.85rem;
  color: #ffffff;
  text-decoration: none;
  margin-left: 0.35rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;

}

.social-icons a:hover {
  background-color: #ffffff;
  color: var(--bg-topbar);
  border-color: #ffffff;
}

.social-icons i {
  color: inherit;
}

/* Force social icons to be fully visible in the top header */
.top-header .social-icons a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-left: 0.35rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  color: #ffffff !important;       /* force white icon color */
  text-decoration: none;
  opacity: 1 !important;           /* ensure no transparency */
  z-index: 2;                      /* lift above any overlay */
}

.top-header .social-icons i {
  color: inherit !important;
}

.top-header .social-icons a:hover {
  background: #ffffff;
  color: #b32d2e !important;       /* your accent color on hover */
  border-color: #ffffff;
}

/* Tablet: 768px - 991px */
@media (max-width: 991px) {
  .top-header {
    margin-top: 15px;
  }
  
  .top-header .inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
  }
  
  .top-left,
  .top-right {
    justify-content: center;
    width: 100%;
  }
  
  .top-left {
    order: 1;
  }
  
  .top-right {
    order: 2;
  }
  
  .social-icons a {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }
  
  .weather {
    margin-bottom: 0.25rem;
  }
}

/* Mobile: up to 767px */
@media (max-width: 767px) {
  .top-header {
    margin-top: 10px;
    font-size: 0.8rem;
  }
  
  .top-header .inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
  }
  
  .top-left {
    flex-direction: column;
    gap: 0.5rem;
    order: 2;
  }
  
  .top-right {
    flex-direction: column;
    gap: 0.5rem;
    order: 1;
  }
  
  .top-left span,
  .top-right span {
    justify-content: center;
    width: 100%;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.25rem;
  }
  
  .social-icons a {
    margin-left: 0;
    margin-right: 0;
    width: 32px;
    height: 32px;
    line-height: 30px;
  }
  
  .weather {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
  }
}

/* Small Mobile: up to 480px */
@media (max-width: 480px) {
  .top-header {
    margin-top: 5px;
    font-size: 0.75rem;
  }
  
  .top-header .inner {
    padding: 0.4rem 0.5rem;
    gap: 0.4rem;
  }
  
  .top-left span,
  .top-right span {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  
  .social-icons a {
    width: 30px;
    height: 30px;
    line-height: 28px;
    font-size: 0.8rem;
  }
  
  .weather {
    font-size: 0.8rem;
  }
}

/* === NEWS TICKER === */
.news-ticker {
  background-color: var(--bg-ticker);
  color: #ffffff;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.news-ticker .inner {
  padding: 0.3rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.news-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.ticker-viewport {
  overflow: hidden;
  flex: 1;
}

.ticker-track {
  display: inline-flex;
  gap: 3rem;
  white-space: nowrap;
  animation: ticker-scroll 500s linear infinite;
}

.ticker-track a {
  color: #fff;
  font-size: 0.85rem;
}

.ticker-viewport:hover .ticker-track {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Tablet: 768px - 991px */
@media (max-width: 991px) {
  .news-ticker .inner {
    padding: 0.3rem 0.75rem;
    gap: 0.5rem;
  }
  
  .news-label {
    font-size: 0.75rem;
    flex-shrink: 0;
  }
  
  .ticker-track {
    gap: 2rem;
    animation-duration: 300s;
  }
  
  .ticker-track a {
    font-size: 0.8rem;
  }
}

/* Mobile: up to 767px */
@media (max-width: 767px) {
  .news-ticker {
    padding: 0.2rem 0;
  }
  
  .news-ticker .inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.3rem 0.5rem;
    gap: 0.3rem;
  }
  
  .news-label {
    font-size: 0.7rem;
    width: 100%;
    text-align: center;
    padding-bottom: 0.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .ticker-viewport {
    width: 100%;
    overflow: hidden;
  }
  
  .ticker-track {
    gap: 1.5rem;
    animation-duration: 200s;
    padding: 0.1rem 0;
  }
  
  .ticker-track a {
    font-size: 0.75rem;
  }
  
  /* Pause on touch for mobile */
  .ticker-viewport:active .ticker-track {
    animation-play-state: paused;
  }
}

/* Small Mobile: up to 480px */
@media (max-width: 480px) {
  .news-ticker .inner {
    padding: 0.25rem 0.4rem;
  }
  
  .news-label {
    font-size: 0.65rem;
  }
  
  .ticker-track {
    gap: 1rem;
    animation-duration: 150s;
  }
  
  .ticker-track a {
    font-size: 0.7rem;
  }
}

/* === MAIN HEADER (LOGO & TITLE) === */
.main-header {

  background: linear-gradient(90deg, #b32d2e, #7b1e1f); /* professional red gradient – adjust to your brand */
  color: #ffffff;
  padding: 18px 0 14px;  /* top/bottom spacing */
  border-bottom: 3px solid #e3c36a; /* subtle accent line, optional */
}

.main-header .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.org-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap; /* wrap on small screens */
  margin-bottom: 0.35rem;
}

.org-side {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--primary-dark);
  white-space:  nowrap;
}
.org-side.left {
  text-align: right;
}
.org-side.right {
  text-align: left;
}

/* Use Anydore only for the institution name text */
.org-side {
  font-family: 'Anydore', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.logo {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Base logo style */
.org-logo-link {
  display: inline-block;
}

.org-logo-link img {
  display: block;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.25s ease;
}

/* Hover effect: slightly larger + soft shadow */
.org-logo-link:hover img {
  transform: scale(1.03); /* 3% larger */
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
  opacity: 0.98;
}

.org-tagline {
  font-size: 1.50rem;
  color: var(--text-muted);
  color: #f7fafc;
}

/* Tablet: 768px - 991px */
@media (max-width: 991px) {
  .main-header {
    padding: 15px 0 12px;
  }
  
  .main-header .inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
  }
  
  .org-row {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .org-side {
    font-size: 1.8rem;
    text-align: center;
    padding: 0;
    flex: none;
  }
  
  .org-side.left,
  .org-side.right {
    text-align: center;
    padding: 0;
  }
  
  .logo {
    width: 90px;
    height: 90px;
  }
  
  .org-tagline {
    font-size: 1.2rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
  }
}

/* Mobile: up to 767px */
@media (max-width: 767px) {
  .main-header {
    padding: 12px 0 10px;
  }
  
  .main-header .inner {
    padding: 0 0.75rem;
  }
  
  .org-row {
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
  }
  
  .org-side {
    font-size: 1.5rem;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }
  
  .org-side.left,
  .org-side.right {
    text-align: center;
    padding: 0;
  }
  
  .logo {
    width: 80px;
    height: 80px;
    order: -1; /* Logo first on mobile */
  }
  
  .org-tagline {
    font-size: 1rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    line-height: 1.3;
  }
}

/* Small Mobile: up to 480px */
@media (max-width: 480px) {
  .main-header {
    padding: 10px 0 8px;
  }
  
  .org-side {
    font-size: 1.3rem;
  }
  
  .logo {
    width: 70px;
    height: 70px;
  }
  
  .org-tagline {
    font-size: 0.9rem;
    padding: 0 0.5rem;
  }
}

/* === NAVIGATION (MOBILE FIRST) === */
.navbar {
  background: #242424;                 /* dark, neutral bar behind menu */
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 2px solid #b32d2e;    /* accent line (match your brand) */
}
.navbar .inner {
  padding: 0.3rem 1rem;
}

.navbar a {
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.navbar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* Mobile / tablet adjustments */
.nav-toggle {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 0.85rem;
  display: none; /* hide on desktop, shown via media query below */
  align-items: center;
  gap: 0.4rem;
}



.nav-toggle span.bar {
  width: 16px;
  height: 2px;
  background: #ffffff;
  display: block;
}

/* Desktop nav menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  list-style: none;
  padding: 0.35rem 0 0.5rem;
  margin: 0;
}

/* Top-level links */
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.93rem;
  font-weight: 500;
  color: #f3f3f3;                       /* LIGHT text so it stands out */
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.2rem 0;
  border-bottom: 2px solid transparent; /* for hover/active underline */
  transition: color 0.2s ease, border-color 0.2s ease;
}

/* Hover / focus styles */
.nav-link:hover,
.nav-link:focus {
  color: #ffd35a;                        /* highlight color on hover */
  border-color: #ffd35a;
}

/* Optional: active an item manually by adding .active class in HTML */
.nav-item.active > .nav-link {
  color: #ffd35a;
  border-color: #ffd35a;
}

/* Mobile menu */
.nav-menu {
  margin-top: 0.4rem;
  list-style: none;
  display: none;
  flex-direction: column;
  gap: 0.15rem;
}
.nav-menu.open {
  display: flex;
}

.nav-item {
  position: relative;
}

/* Modern “classic” button nav links */
.nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(0,0,0,0.12));
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25),
              0 1px 2px rgba(0,0,0,0.35);
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.1s ease;
  font-size: 0.9rem;
}
.nav-link:hover {
  background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(0,0,0,0.2));
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3),
              0 3px 4px rgba(0,0,0,0.35);
}

/* Dropdown caret */
.nav-caret {
  font-size: 0.7rem;
  margin-left: 0.35rem;
}

/* Submenus */
.submenu {
  list-style: none;
  margin-top: 0.2rem;
  margin-left: 0.75rem;
  border-left: 2px solid rgba(255,255,255,0.28);
  padding-left: 0.5rem;
  display: none;
}



/* Ensure parent li is positioned */
.nav-item {
  position: relative;
}

/* Show submenu when parent is hovered (desktop) */
@media (min-width: 801px) {
  .nav-item:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.submenu.open {
  display: block;
}

.submenu a {
  display: block;
  padding: 0.3rem 0.2rem;
  font-size: 0.86rem;
  border-radius: 999px;
}
.submenu a:hover {
  background-color: rgba(255,255,255,0.12);
}

/* Tablet: 768px - 991px */
@media (max-width: 991px) {
  .navbar .inner {
    padding: 0.4rem 1rem;
    flex-direction: column;
    align-items: stretch;
  }
  
  .navbar-header {
    width: 100%;
    justify-content: space-between;
  }
  
  .nav-toggle {
    display: flex; /* Show hamburger on tablet */
  }
  
  /* Mobile nav menu - hidden by default */
  .nav-menu {
    display: none;
    flex-direction: column;
    gap: 0.15rem;
    margin-top: 0.4rem;
    padding: 0;
    width: 100%;
  }
  
  .nav-menu.open {
    display: flex;
  }
  
  .nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.55rem 0.75rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(0,0,0,0.12));
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.25),
                0 1px 2px rgba(0,0,0,0.35);
    transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.1s ease;
    font-size: 0.9rem;
  }
  
  .nav-link:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(0,0,0,0.2));
    transform: translateY(-1px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.3),
                0 3px 4px rgba(0,0,0,0.35);
  }
  
  /* Mobile submenus */
  .submenu {
    position: static;
    display: none;
    margin-top: 0.2rem;
    margin-left: 0.75rem;
    border-left: 2px solid rgba(255,255,255,0.28);
    padding-left: 0.5rem;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }
  
  .submenu.open {
    display: block;
  }
  
  .submenu a {
    padding: 0.3rem 0.2rem;
    font-size: 0.86rem;
    border-radius: 999px;
  }
}

/* Mobile: up to 767px */
@media (max-width: 767px) {
  .navbar .inner {
    padding: 0.35rem 0.75rem;
  }
  
  .nav-toggle {
    font-size: 0.8rem;
  }
  
  .nav-toggle span.bar {
    width: 18px;
    height: 2px;
    margin: 3px 0;
  }
  
  .nav-menu {
    gap: 0.1rem;
  }
  
  .nav-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
  }
  
  .submenu {
    margin-left: 1rem;
  }
}

/* Small Mobile: up to 480px */
@media (max-width: 480px) {
  .navbar .inner {
    padding: 0.3rem 0.5rem;
  }
  
  .nav-toggle {
    font-size: 0.75rem;
    gap: 0.3rem;
  }
  
  .nav-link {
    padding: 0.45rem 0.6rem;
    font-size: 0.8rem;
  }
  
  .nav-caret {
    font-size: 0.65rem;
  }
  
  .submenu a {
    padding: 0.25rem 0.2rem;
    font-size: 0.8rem;
  }
}

/* === MAIN CONTENT === */
main .inner {
  padding: 1.25rem 1rem 2rem;
}

main h1 {
  font-size: 1.6rem;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

main p {
  margin-bottom: 0.75rem;
  color: #333;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.breadcrumb a {
  color: var(--primary);
}

/* === FOOTER === */
footer {
  background-color: #0c2430;
  color: #d1d5db;
  font-size: 0.85rem;
}

/* Footer 1 */
.footer-top {
  padding: 1.5rem 0 1.25rem;
}

.footer-top .inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.footer-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* About column */
.footer-about-text {
  margin-bottom: 0.75rem;
}

.footer-logo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
}

/* Quick links */
.footer-links ul {
  list-style: none;
}
.footer-links li + li {
  margin-top: 0.25rem;
}
.footer-links a {
  color: #d1d5db;
}
.footer-links a:hover {
  color: #ffffff;
}

/* Contact column */
.footer-contact p {
  margin-bottom: 0.25rem;
}

/* Follow Us column */
.footer-social-row {
  margin-bottom: 0.5rem;
}
.footer-social-row .social-icons a {
  border-color: rgba(255,255,255,0.5);
}

/* Newsletter */
.footer-newsletter-label {
  margin-bottom: 0.25rem;
}
.footer-newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.footer-newsletter-form input[type="email"] {
  flex: 1 1 140px;
  padding: 0.4rem 0.5rem;
  border-radius: 4px;
  border: 1px solid #4b5563;
  background-color: #111827;
  color: #e5e7eb;
  font-size: 0.85rem;
}
.footer-newsletter-form button {
  padding: 0.4rem 0.75rem;
  border-radius: 4px;
  border: none;
  background-color: var(--accent);
  color: #111827;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
}
.footer-newsletter-form button:hover {
  background-color: #f2a900;
}

.footer-logo img {
  max-width: 75px;    /* adjust to taste */
  height: auto;
  display: block;
}

.footer-logo {
  margin-bottom: 0.75rem;  /* spacing below logo */
}

/* Footer 2 */
.footer-bottom {
  border-top: 1px solid #1f2933;
  padding: 0.75rem 0 1rem;
}

.footer-bottom .inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

.footer-bottom a {
  color: #ffffff;
}
.footer-bottom a:hover {
  color: var(--accent);
}

/* === HERO SWIPER + 3-COLUMN BANNER ================== */

.hero-swiper-section {
  margin-top: 0;
}

.hero-inner {
  padding: 0 0 1.5rem;
}

/* Shell containing main slider + thumbs */
.slider-shell {
  display: flex;
  width: 100%;
  height: 480px;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  background: #000;
  margin: 0 0 0.5rem;
}

/* Main slider */
.main-swiper {
  flex: 0 0 85%;
  height: 100%;
  position: relative;
}

.main-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay text */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 40px;
  color: #fff;
}

.slide-overlay h2 {
  font-size: 2.1rem;
  margin-bottom: 12px;
  animation: slideFadeUp 1s ease-out forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.slide-overlay p {
  font-size: 1.1rem;
  margin-bottom: 18px;
  max-width: 480px;
  line-height: 1.5;
  animation: slideFadeUp 1s ease-out forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

/* Button on overlay */
.slide-overlay .btn {
  display: inline-flex;
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.slide-overlay .btn:hover {
  background: #0369a1;
  transform: translateY(-2px);
}

@keyframes slideFadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Thumbs slider */
.thumbs-swiper {
  flex: 0 0 15%;
  height: 100%;
  background: #fff;
  position: relative;
  z-index: 2;
  padding-left: 1px;
  border-left: 3px solid #fff;
  box-shadow: -4px 0 12px rgba(0,0,0,0.08);
  overflow: hidden;
}

.thumbs-swiper .swiper-slide {
  cursor: pointer;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.thumbs-swiper .swiper-slide-thumb-active {
  transform: scale(1.05);
  border: 2px solid var(--primary);
}

.thumbs-swiper img {
  width: 100%;
  height: 95px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.thumbs-swiper .swiper-slide:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

/* Swiper controls */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  background: var(--primary);
  opacity: 1;
}

/* 3‑column banner under slider */
.three-column-banner {
  width: 100%;
  background: #f8f8f8;
  margin-top: 0;
}

.banner-container {
  display: flex;
  width: 100%;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  border-top: 1px solid rgba(255,255,255,0.6);
}

.banner-column {
  flex: 1;
  background: var(--primary);
  text-align: center;
  padding: 24px 18px;
  text-decoration: none;
  color: #fff;
  transition: background 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.35);
}

.banner-column:last-child {
  border-right: none;
}

.banner-column:hover {
  background: #0f2a44;
}

.banner-column .subtitle {
  font-size: 0.9rem;
  margin: 0 0 4px;
  opacity: 0.9;
}

.banner-column .title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}

/* ≤ 900px – hero/banner adjustments */
@media (max-width: 900px) {
  /* Slider stacks vertically */
  .slider-shell {
    flex-direction: column;
    height: auto;
  }

  .main-swiper {
    flex: 1 1 auto;
    height: 320px;
  }

  .slide-overlay {
    padding: 20px;
  }

  .slide-overlay h2 {
    font-size: 1.5rem;
  }

  .slide-overlay p {
    font-size: 0.95rem;
  }

  .thumbs-swiper {
    flex: 0 0 auto;
    height: 110px;
    padding: 8px 8px 12px;
    border-left: none;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
  }

  .thumbs-swiper img {
    height: 100%;
  }

  /* Banner becomes stacked vertically */
  .banner-container {
    flex-direction: column;
  }

  .banner-column {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.35);
  }

  .banner-column:last-child {
    border-bottom: none;
  }
}

/* ≥ 992px */
@media (min-width: 992px) {
  .navbar .inner {
    padding: 0.45rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-toggle {
    display: none;
  }

  .nav-menu {
    display: flex !important;
    flex-direction: row;
    margin-top: 0;
    gap: 0.6rem;
  }

  .nav-link {
    font-size: 0.9rem;
    padding: 0.4rem 0.9rem;
  }

  .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    margin: 0;
    padding: 0.35rem 0.2rem;
    border-left: none;
    border-radius: 8px;
    background-color: #0c2430;
    min-width: 210px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
    display: none;
    z-index: 1000;
  }

  .submenu a {
    padding: 0.35rem 0.75rem;
    white-space: nowrap;
  }

  .nav-item:hover > .submenu {
    display: block;
  }

  .breadcrumb {
    font-size: 0.85rem;
  }

  /* Tablet & Mobile: Hide only the slider shell */
@media (max-width: 991px) {
  .slider-shell {
    display: none; /* Hide just the slider */
  }
  
  /* Keep the 3-column banner visible but adjust it */
  .three-column-banner {
    border-radius: 8px; /* Full border radius since slider is hidden */
    margin-top: 0;
    padding-top: 0;
  }
  
  .banner-container {
    flex-direction: column; /* Stack vertically on mobile */
  }
  
  .banner-column {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.35);
  }
  
  .banner-column:last-child {
    border-bottom: none;
  }
}

/* =================================================== */
/* HIDE HERO SWIPER ON MOBILE & TABLET */
/* =================================================== */

/* Hide on Tablet (768px - 991px) */
@media (max-width: 991px) {
  .hero-swiper-section {
    display: none; /* Hide entire hero swiper section */
  }
}

/* Hide on Mobile (up to 767px) */
@media (max-width: 767px) {
  .hero-swiper-section {
    display: none; /* Hide entire hero swiper section */
  }
}

  .footer-top .inner {
    grid-template-columns: 2fr 1.2fr 1.5fr 2fr;
  }

  .footer-bottom .inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
}

/* ≥ 1200px */
@media (min-width: 1200px) {
  .page-wrapper {
    margin: 2rem auto;
  }
}

/* FORCE HIDE SLIDER ON MOBILE/TABLET */
@media (max-width: 991px) {
  .hero-swiper-section,
  .slider-shell,
  .main-swiper,
  .thumbs-swiper {
    display: none !important;
    height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }
}

/* === HERO: EXECUTIVE DIRECTOR MESSAGE ================== */

.hero-section {
  background-color: #f7fafc;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.hero-wrapper {
  padding: 1.5rem 1rem 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

/* Left column */
.hero-left .hero-title {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.hero-left .hero-subtitle {
  font-size: 0.95rem;
  color: #4b5563;
  max-width: 34rem;
}

/* Center column: ED photo + name */
.hero-center {
  text-align: center;
}

.hero-center img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  margin-bottom: 0.75rem;
}

.hero-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.15rem;
}

.hero-role {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Right column: message + button */
.hero-right {
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  padding: 1rem 1rem 1.1rem;
  box-shadow: 0 4px 10px rgba(15,23,42,0.06);
}

.hero-message-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.hero-message-text {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 0.85rem;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.15);
  box-shadow: 0 4px 10px rgba(0,0,0,0.18);
  transition: transform 0.1s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.hero-button:hover {
  background: linear-gradient(135deg, var(--primary-dark), #062c23);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.22);
}

/* Responsive layout */
@media (min-width: 768px) {
  .hero-wrapper {
    padding: 2rem 1.5rem 2.25rem;
  }

  .hero-grid {
    grid-template-columns: 1.3fr auto 1.2fr;
    gap: 2rem;
  }

  .hero-left .hero-title {
    font-size: 1.8rem;
  }
}

@media (min-width: 992px) {
  .hero-left .hero-title {
    font-size: 2rem;
  }
}


/* === ABOUT SECTION (NAKSP) ========================== */

.about-section {
   padding: 1.75rem 0 2.75rem;
  /* subtle gradient and pattern that match the primary green */
  background:
    radial-gradient(circle at top left, rgba(13,92,77,0.06), transparent 55%),
    radial-gradient(circle at bottom right, rgba(217,145,0,0.06), transparent 55%),
    #f3f4f6;  /* light gray close to your body background */
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.about-wrapper {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(15,23,42,0.06);
  padding: 1.25rem 1rem 1.75rem;
}

/* Tablet+ : align with .inner padding */
@media (min-width: 768px) {
  .about-wrapper {
    padding: 1.75rem 1.5rem 2rem;
  }
}


/* Intro: text + image */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
}

.intro-text h2 {
  font-size: 1.6rem;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

/* Add this */
.intro-text {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.intro-text p {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 0.5rem;
}

.intro-image img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(15,23,42,0.12);
}

/* Mission & Vision */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.mv-card {
  border-radius: 10px;
  padding: 1rem 1rem 1.1rem;
  background:
    radial-gradient(circle at top left, #ffffff, #f3f4f6),
    linear-gradient(135deg, rgba(13,92,77,0.08), rgba(217,145,0,0.12));
  border: 1px solid rgba(13,92,77,0.18);
  box-shadow: 0 10px 25px rgba(15,23,42,0.14);
}

.mv-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.4rem;
}

.mv-card p {
  font-size: 0.9rem;
  color: #374151;
}

.mv-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.4rem;
}

.mv-card p {
  font-size: 0.9rem;
  color: #4b5563;
}

/* Counters */
/* Counters with primary-colored gradient, matching the banner */
.counter-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.counter {
  text-align: center;
  padding: 0.9rem 0.5rem 1rem;
  border-radius: 10px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.2), transparent 55%),
    linear-gradient(135deg, var(--primary), #0a3f34); /* same family as banner */
  border: 1px solid rgba(0,0,0,0.12);
  box-shadow: 0 10px 25px rgba(15,23,42,0.18);
  color: #ffffff;
}

.counter .count {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.1rem;
}

.counter p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
}

/* (keep your existing responsive rule) */
@media (min-width: 768px) {
  .counter-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}


/* What We Do cards */
.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.work-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0.75rem;
  align-items: center;
  border-radius: 10px;
  padding: 0.85rem;
  background:
    radial-gradient(circle at top left, rgba(13,92,77,0.08), transparent 55%),
    radial-gradient(circle at bottom right, rgba(217,145,0,0.18), transparent 60%),
    linear-gradient(135deg, #ffffff, #f3f4f6);
  border: 1px solid rgba(13,92,77,0.18);
  box-shadow: 0 10px 25px rgba(15,23,42,0.14);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.work-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(15,23,42,0.2);
}

.work-card img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
}

.work-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}

.work-card p {
  font-size: 0.9rem;
  color: #374151;
}

.work-card img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 6px;
}

.work-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}

.work-card p {
  font-size: 0.9rem;
  color: #4b5563;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .about-section {
    padding: 2rem 0.75rem 3rem;
  }

  .intro-grid {
    grid-template-columns: 1.3fr 1fr;
    gap: 2rem;
  }

  .intro-text h2 {
    font-size: 1.9rem;
  }

  .mv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .counter-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .work-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .work-card {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .work-card img {
    width: 100%;
    height: 140px;
  }
}


/* === HOME: LATEST NEWS PREVIEW ====================== */

.home-news-section {
  margin-top: 2rem;
  padding: 1.25rem 1rem 0;  /* more top padding, slight bottom if you like */
  border-top: 1px solid #e5e7eb;
}

.home-news-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.home-news-header h2 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.home-news-view-all {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
  text-decoration: none;
}
.home-news-view-all:hover {
  text-decoration: underline;
}

.home-news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

/* Re-use card look similar to news page, but a bit lighter */
.home-news-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0.7rem;
  background-color: #ffffff;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  padding: 0.65rem;
  box-shadow: 0 6px 16px rgba(15,23,42,0.06);
}

.home-news-image img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
}

.home-news-body {
  display: flex;
  flex-direction: column;
}

.home-news-meta {
  font-size: 0.8rem;
  color: #6b7280;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin-bottom: 0.15rem;
}

.home-news-title {
  font-size: 0.98rem;
  font-weight: 600;
  margin: 0.1rem 0 0.25rem;
}
.home-news-title a {
  color: var(--primary-dark);
  text-decoration: none;
}
.home-news-title a:hover {
  text-decoration: underline;
}

.home-news-excerpt {
  font-size: 0.88rem;
  color: #4b5563;
}

/* Use existing .badge styles from news hub (badge, badge-news, badge-event) */

@media (min-width: 768px) {
  .home-news-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-news-card {
    grid-template-columns: 1fr;
  }

  .home-news-image img {
    height: 140px;
  }
}



/* === NEWS & EVENTS – HUB PAGE ====== (Latest News)================= */

.news-page-inner {
  padding-top: 1rem;
  padding-bottom: 2.5rem;
}

/* Page header */
.news-page-header {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.news-page-header h1 {
  font-size: 1.7rem;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}

.news-page-header p {
  font-size: 0.95rem;
  color: #4b5563;
  max-width: 38rem;
}

/* Filter/search bar */
.news-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.news-filter-bar select {
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  font-size: 0.85rem;
  background-color: #ffffff;
  color: #374151;
}

.news-search {
  display: flex;
  flex: 1;
  min-width: 180px;
  gap: 0.35rem;
}

.news-search input[type="search"] {
  flex: 1;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  font-size: 0.85rem;
}

.news-search button {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: none;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}
.news-search button:hover {
  background: var(--primary-dark);
}

/* Featured news slider */
.news-featured-section {
  margin-bottom: 2rem;
}

.news-featured-wrapper {
  border-radius: 10px;
  overflow: hidden;
  background-color: #0c2430;
  box-shadow: 0 12px 30px rgba(15,23,42,0.22);
}

.news-featured-swiper {
  width: 100%;
  height: 100%;
}

.news-featured-slide {
  display: flex;
  flex-direction: column;
  background-color: #0c2430;
  color: #e5e7eb;
}

.news-featured-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.news-featured-image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.news-featured-content {
  padding: 1rem 1rem 1.2rem;
}

.news-featured-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
  color: #f9fafb;
}

.news-featured-excerpt {
  font-size: 0.9rem;
  color: #d1d5db;
  margin-bottom: 0.6rem;
}

.news-featured-meta {
  font-size: 0.8rem;
  color: #9ca3af;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  align-items: center;
}
.news-featured-meta .dot {
  opacity: 0.6;
}

/* Swiper controls styling in this section */
.news-featured-pagination .swiper-pagination-bullet {
  background: #ffffff;
  opacity: 0.4;
}
.news-featured-pagination .swiper-pagination-bullet-active {
  background: var(--accent);
  opacity: 1;
}
.news-featured-prev,
.news-featured-next {
  color: #ffffff;
}

/* Main layout: articles + sidebar */
.news-main-layout {
  margin-top: 1.25rem;
}

.news-main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* Left column */
.news-articles-column .section-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.9rem;
}

.news-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3rem;
}

/* Article cards */
.news-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0.75rem;
  background-color: #ffffff;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  padding: 0.7rem;
  box-shadow: 0 8px 18px rgba(15,23,42,0.06);
}

.news-card-image img {
  width: 100%;
  height: 105px;
  object-fit: cover;
  border-radius: 8px;
}

.news-card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card-meta {
  font-size: 0.8rem;
  color: #6b7280;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-news {
  background-color: var(--primary-light);
  color: var(--primary-dark);
}
.badge-event {
  background-color: #e0f2fe;
  color: #0369a1;
}

.news-card-meta .date {
  font-size: 0.8rem;
  color: #6b7280;
}

.news-card-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0.2rem 0 0.3rem;
}
.news-card-title a {
  color: var(--primary-dark);
  text-decoration: none;
}
.news-card-title a:hover {
  text-decoration: underline;
}

.news-card-excerpt {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 0.45rem;
}

.news-card-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #6b7280;
}

.news-card-footer .read-more {
  font-weight: 600;
  color: var(--primary-dark);
  text-decoration: none;
}
.news-card-footer .read-more:hover {
  text-decoration: underline;
}

/* Sidebar */
.news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.news-sidebar-section {
  background-color: #ffffff;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  padding: 0.85rem 0.9rem 1rem;
  box-shadow: 0 8px 18px rgba(15,23,42,0.06);
}

.sidebar-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.sidebar-list {
  list-style: none;
}

.sidebar-list li + li {
  margin-top: 0.5rem;
}

.sidebar-list a {
  font-size: 0.85rem;
  color: #111827;
  text-decoration: none;
}
.sidebar-list a:hover {
  text-decoration: underline;
}

.sidebar-date,
.sidebar-meta {
  display: block;
  font-size: 0.75rem;
  color: #6b7280;
}

/* Archives box */
.archives-filters {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.archives-filters select {
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  font-size: 0.8rem;
}

.archives-link {
  display: block;
  font-size: 0.8rem;
  color: var(--primary-dark);
  text-decoration: none;
  margin-top: 0.2rem;
}
.archives-link:hover {
  text-decoration: underline;
}

/* Responsive adjustments for News page */
@media (min-width: 768px) {
  .news-page-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .news-featured-slide {
    flex-direction: row;
  }

  .news-featured-image img {
    width: 360px;
    height: 100%;
    max-height: 260px;
  }

  .news-featured-content {
    padding: 1.1rem 1.2rem 1.4rem;
  }

  .news-main-grid {
    grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.3fr);
  }

  .news-cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 992px) {
  .news-page-header h1 {
    font-size: 1.9rem;
  }

  .news-cards-grid {
    grid-template-columns: 1fr;
  }
}


/* Announcements list cards */
.news-announcement {
  background-color: #ffffff;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  padding: 0.9rem 0.9rem 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 8px 18px rgba(15,23,42,0.06);
}

.news-announcement h3 {
  font-size: 1.05rem;
  color: var(--primary-dark);
  margin-bottom: 0.35rem;
}

.news-announcement-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 0.4rem;
}

.news-announcement p {
  font-size: 0.9rem;
  color: #374151;
  margin-bottom: 0.4rem;
}


/* === PARTNER LOGO SLIDER ============================ */

.logo-slider-section {
  margin-top: 2.5rem;
  padding: 1.75rem 0;
  background:
    radial-gradient(circle at top left, rgba(13,92,77,0.04), transparent 55%),
    radial-gradient(circle at bottom right, rgba(217,145,0,0.04), transparent 55%),
    #f3f4f6;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.logo-slider-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0.75rem;
}

.logo-slider-header {
  text-align: left;
  margin-bottom: 1.25rem;
}

.logo-slider-header h2 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.3rem;
}

.logo-slider-header p {
  font-size: 0.9rem;
  color: #4b5563;
  max-width: 34rem;
}

/* Container for the scrolling track */
.logo-slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0.35rem 0;
}

/* Rolling strip */
.logo-track {
  display: flex;
  align-items: center;
  gap: 48px;
  animation: scrollLogos 60s linear infinite;
  padding: 0.35rem 0;
}

/* Smooth continuous scroll */
@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Logo card */
.logo-slide {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 20px rgba(15,23,42,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.logo-slide:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 26px rgba(15,23,42,0.12);
}

/* Logo images */
.logo-slide img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0.1) brightness(0.95);
  transition: transform 0.25s ease, filter 0.25s ease;
}

.logo-slide:hover img {
  transform: scale(1.06);
  filter: grayscale(0) brightness(1);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .logo-track {
    gap: 32px;
    animation-duration: 32s;
  }

  .logo-slide img {
    height: 50px;
  }
}

@media (max-width: 480px) {
  .logo-track {
    gap: 22px;
    animation-duration: 26s;
  }

  .logo-slide img {
    height: 42px;
  }

  .logo-slider-header {
    text-align: left;
  }
}


/* === MEET THE TEAM ================================== */

.team-section {
  padding: 2.5rem 0 3rem;
  background: #f3f4f6;
  border-top: 1px solid #e5e7eb;
}

.team-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0.75rem;
}

.team-header {
  text-align: center;
  margin-bottom: 1.8rem;
}

.team-heading {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.35rem;
}

.team-subheading {
  font-size: 0.95rem;
  color: #4b5563;
  max-width: 34rem;
  margin: 0 auto;
}

/* Card container (boxed, like your other sections) */
.team-slider-container {
  width: 100%;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15,23,42,0.08);
  border-radius: 12px;
  padding: 1.5rem 1.25rem 2rem;
  overflow: hidden;
}

/* Horizontal auto-scroll track on desktop */
.team-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scrollTeam 80s linear infinite;
}

@keyframes scrollTeam {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Team card */
.team-card {
  min-width: 240px;
  max-width: 240px;
  background: #f9fafb;
  border-radius: 12px;
  padding: 1.1rem 1rem 1.2rem;
  text-align: center;
  box-shadow: 0 6px 18px rgba(15,23,42,0.06);
  border: 1px solid #e5e7eb;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 26px rgba(15,23,42,0.12);
}

/* Photo */
.team-photo {
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.team-photo img {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  object-fit: cover;
  border: 4px solid var(--primary);
  background: #ffffff;
}

/* Text */
.team-name {
  margin: 0.35rem 0 0.15rem;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
}

.team-role {
  font-size: 0.88rem;
  color: #374151;
  margin-bottom: 0.55rem;
}

/* Social icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  color: var(--primary-dark);
  font-size: 0.75rem;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.social-icons a:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

/* Tablet: 768px - 991px */
@media (max-width: 991px) {
  .team-slider-container {
    padding: 1.5rem 1rem 1.8rem;
  }

  .team-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .team-card {
    min-width: 220px;
    max-width: 220px;
    margin-bottom: 1rem;
  }

  .team-heading {
    font-size: 1.3rem;
  }
}

/* Mobile: up to 767px */
@media (max-width: 767px) {
  .team-section {
    padding: 1.5rem 0 2rem;
  }

  .team-slider-container {
    padding: 1.3rem 0.9rem 1.6rem;
  }

  .team-track {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .team-card {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
  }

  .team-photo img {
    width: 110px;
    height: 110px;
  }

  .team-heading {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
  }

  .team-subheading {
    font-size: 0.9rem;
    padding: 0 0.5rem;
  }
}

/* Small Mobile: up to 480px */
@media (max-width: 480px) {
  .team-section {
    padding: 1.25rem 0 1.75rem;
  }
  
  .team-slider-container {
    padding: 1rem 0.75rem 1.5rem;
    border-radius: 8px;
  }
  
  .team-card {
    padding: 1rem 0.75rem;
  }
  
  .team-photo img {
    width: 100px;
    height: 100px;
  }
  
  .team-name {
    font-size: 0.95rem;
  }
  
  .team-role {
    font-size: 0.85rem;
  }
}

/* === TESTIMONIALS ================================== */

.testimonials-section {
  padding: 2.5rem 0 3rem;
  background: #046a38; /* NAKKSP green band behind the card */
}

.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0.75rem;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.testimonials-heading {
  font-size: 1.4rem;
  font-weight: 600;
  color: #f9fafb;
  margin-bottom: 0.35rem;
}

.testimonials-subheading {
  font-size: 0.95rem;
  color: #e5e7eb;
  max-width: 32rem;
  margin: 0.15rem auto 0;
}

/* Slider frame (white card on green background) */
.testimonials-slider {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(15,23,42,0.12);
  padding: 1.5rem 1.25rem 2rem;
  overflow: hidden;
}

/* Track that slides left/right */
.testimonials-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Individual testimonial card */
.testimonial-card {
  flex: 0 0 25%;      /* 4 per "slide" on large screens */
  box-sizing: border-box;
  padding: 0.75rem;
}

.testimonial-photo {
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.testimonial-photo img {
  width: 76px;
  height: 76px;
  border-radius: 999px;
  object-fit: cover;
  border: 3px solid var(--primary);
  background: #ffffff;
}

.testimonial-quote {
  font-size: 0.9rem;
  color: #374151;
  margin-bottom: 0.6rem;
  text-align: center;
}

.testimonial-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
  text-align: center;
  margin: 0 0 0.15rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: #6b7280;
  text-align: center;
}

/* Controls */
.testimonials-controls {
  text-align: center;
  margin-top: 1.1rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.testimonials-btn {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background-color: #111827;
  color: #f9fafb;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.testimonials-btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

/* RESPONSIVE: tablet – 2 per row */
@media (max-width: 1024px) {
  .testimonial-card {
    flex: 0 0 50%;
  }
}

/* RESPONSIVE: mobile – 1 per row */
@media (max-width: 640px) {
  .testimonials-slider {
    padding: 1.3rem 0.9rem 1.6rem;
  }

  .testimonial-card {
    flex: 0 0 100%;
  }

  .testimonials-heading {
    font-size: 1.2rem;
  }

  .testimonials-subheading {
    font-size: 0.9rem;
  }
}


/* === CONTACT ======================================= */

.contact-section {
  padding: 2.75rem 0 3rem;
  background: #f3f4f6;
  border-top: 1px solid #e5e7eb;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0.75rem;
}

/* Outer layout card */
.contact-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  background: #f9fafb;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(15,23,42,0.08);
  overflow: hidden;
}

/* Left and right columns */
.contact-left,
.contact-right {
  flex: 1 1 320px;
  padding: 1.8rem 1.7rem 2rem;
}

/* Left side: heading + form + details */
.contact-header {
  margin-bottom: 1rem;
}

.contact-heading {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.35rem;
}

.contact-intro {
  font-size: 0.95rem;
  color: #4b5563;
  max-width: 26rem;
}

/* Form */
.contact-form {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.contact-form-row {
  margin-bottom: 0.75rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.65rem 0.8rem;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  background-color: #ffffff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(4,106,56,0.35);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

/* Button */
.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.1s ease, box-shadow 0.15s ease;
}

.contact-btn:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 8px 18px rgba(15,23,42,0.18);
  transform: translateY(-1px);
}

/* Contact details text */
.contact-details {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #374151;
}

.contact-details p {
  margin: 0.25rem 0;
}

.contact-details strong {
  color: #111827;
}

/* Map side */
.contact-right {
  background: radial-gradient(circle at top left, rgba(4,106,56,0.06), transparent 55%);
  padding: 0;
  display: flex;
  align-items: stretch;
}

.contact-map-wrapper {
  width: 100%;
  height: 100%;
  min-height: 280px;
}

.contact-map-wrapper iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-layout {
    flex-direction: column;
  }

  .contact-left,
  .contact-right {
    padding: 1.4rem 1.25rem 1.6rem;
  }

  .contact-map-wrapper {
    min-height: 260px;
  }
}

@media (max-width: 640px) {
  .contact-section {
    padding: 2.2rem 0 2.6rem;
  }

  .contact-left,
  .contact-right {
    padding: 1.25rem 1rem 1.4rem;
  }

  .contact-heading {
    font-size: 1.2rem;
  }

  .contact-intro {
    font-size: 0.9rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.9rem;
  }
}


/* === HORIZONTAL IMAGE STRIP ======================== */

.gallery-strip-section {
  padding: 2.2rem 0 2.8rem;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
}

.gallery-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0.75rem;
}

.gallery-strip-header {
  text-align: center;
  margin-bottom: 1.4rem;
}

.gallery-strip-heading {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.3rem;
}

.gallery-strip-subheading {
  font-size: 0.9rem;
  color: #4b5563;
  max-width: 32rem;
  margin: 0 auto;
}

/* Outer frame */
.gallery-strip {
  width: 100%;
  overflow: hidden;
  background: #f9fafb;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(15,23,42,0.08);
  padding: 0.8rem 0.4rem;
}

/* Moving track */
.gallery-strip-track {
  display: inline-flex;
  gap: 4px;
  animation: galleryStripScroll 45s linear infinite;
}

/* Images */
.gallery-strip-track img {
  height: 200px;
  width: auto;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-strip-track img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 18px rgba(15,23,42,0.25);
}

/* Animation keyframes */
@keyframes galleryStripScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .gallery-strip-track img {
    height: 170px;
  }

  .gallery-strip-heading {
    font-size: 1.2rem;
  }

  .gallery-strip-subheading {
    font-size: 0.88rem;
  }
}

@media (max-width: 640px) {
  .gallery-strip-section {
    padding: 2rem 0 2.4rem;
  }

  .gallery-strip-track img {
    height: 150px;
  }

  .gallery-strip {
    padding: 0.7rem 0.3rem;
  }

  .gallery-strip-heading {
    font-size: 1.1rem;
  }

  .gallery-strip-subheading {
    font-size: 0.85rem;
  }
}



/* === GENERIC PAGE HERO / BREADCRUMB ========our story page========= */

.site-bg {
  background: #e5e7eb; /* or any subtle grey/tint you use behind the main card */
}

.site-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  min-height: 100vh;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15,23,42,0.20);
}

.page-hero-section {
  padding: 2.8rem 0 2.2rem;
  background: linear-gradient(135deg, #046a38 0%, #0f766e 50%, #0b1120 100%);
  color: #f9fafb;
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.page-hero-text {
  max-width: 40rem;
}

.page-hero-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.page-hero-subtitle {
  font-size: 0.98rem;
  color: #e5e7eb;
}

/* Breadcrumbs */
.breadcrumb {
  font-size: 0.85rem;
  color: #d1d5db;
}

.breadcrumb a {
  color: #e5e7eb;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 0.25rem;
}

.breadcrumb-current {
  color: #f9fafb;
}

/* === GENERIC PAGE CONTENT LAYOUT ========OUR STORY PAGE============ */

.page-section {
  padding: 2.5rem 0 3rem;
  background: #f3f4f6;      /* full-width light grey band, like home */
}

.page-inner {
  max-width: 1200px;        /* central wrapper – this is your 1200px floating width */
  margin: 0 auto;
  padding: 0 0.75rem;
}

/* Two-column layout (content + sidebar) */
.page-two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
}

/* Main content card */
.page-content {
  flex: 1 1 640px;
  background: #ffffff;
  border-radius: 14px;
  padding: 1.8rem 1.6rem 2rem;
  box-shadow: 0 10px 28px rgba(15,23,42,0.08);
}

/* Sidebar column */
.page-sidebar {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Story blocks */
.story-block + .story-block {
  margin-top: 1.4rem;
}

.section-heading {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.45rem;
}

.page-content p {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.7;
  margin: 0.3rem 0 0.5rem;
}

.story-list {
  padding-left: 1.1rem;
  margin: 0.2rem 0 0.4rem;
  font-size: 0.95rem;
  color: #374151;
}

.story-list li {
  margin-bottom: 0.25rem;
}

/* Sidebar cards */
.sidebar-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 1rem 1rem 1.1rem;
  box-shadow: 0 8px 22px rgba(15,23,42,0.06);
  border: 1px solid #e5e7eb;
}

.sidebar-heading {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.45rem;
}

.sidebar-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 0.9rem;
  color: #374151;
}

.sidebar-list li {
  margin-bottom: 0.35rem;
}

/* Sidebar button link */
.sidebar-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.4rem;
  padding: 0.45rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.1s ease,
              box-shadow 0.15s ease;
}

.sidebar-link-btn:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 8px 18px rgba(15,23,42,0.16);
  transform: translateY(-1px);
}

/* Responsive layout for our-story page */
@media (max-width: 900px) {
  .page-two-column {
    flex-direction: column;
  }

  .page-sidebar {
    flex: 1 1 auto;
  }
}

@media (max-width: 640px) {
  .page-hero-section {
    padding: 2.3rem 0 2rem;
  }

  .page-hero-title {
    font-size: 1.5rem;
  }

  .page-hero-subtitle {
    font-size: 0.9rem;
  }

  .page-content {
    padding: 1.5rem 1.2rem 1.7rem;
  }
}


/* Leadership list styling (used on leadership.html) */
.leader-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.leader-item {
  display: flex;
  gap: 0.8rem;
  background: #f9fafb;
  border-radius: 10px;
  padding: 0.75rem 0.8rem;
  border: 1px solid #e5e7eb;
  flex: 1 1 260px;
}

.leader-photo img {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  object-fit: cover;
  border: 3px solid var(--primary);
}

.leader-name {
  font-size: 0.98rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 0.15rem;
}

.leader-role {
  font-size: 0.86rem;
  color: #374151;
  margin: 0 0 0.25rem;
}

.leader-bio {
  font-size: 0.86rem;
  color: #4b5563;
  margin: 0;
}

@media (max-width: 640px) {
  .leader-item {
    flex: 1 1 100%;
  }
}


/* === PROGRAMS PAGE IMAGES ==========ABOUT PROGRAMS================= */

/* Top banner image */
.programs-hero-image {
  margin-bottom: 1.2rem;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.programs-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.programs-hero-image figcaption {
  font-size: 0.85rem;
  color: #6b7280;
  padding: 0.5rem 0.3rem 0;
}

/* Grid of program highlight images */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 0.6rem;
}

.programs-grid-item {
  border-radius: 10px;
  overflow: hidden;
  background: #000;
}

.programs-grid-item img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.programs-grid-item:hover img {
  transform: scale(1.03);
  filter: brightness(1.05);
}

.programs-grid-item figcaption {
  font-size: 0.85rem;
  color: #f9fafb;
  background: rgba(15,23,42,0.85);
  padding: 0.4rem 0.5rem;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .programs-grid {
    grid-template-columns: 1fr;
  }

  .programs-grid-item img {
    height: 190px;
  }
}


/* === PARTNERS PAGE LOGO GRID ======================== */

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.6rem;
}

.partner-card {
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 0.9rem 0.9rem 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.partner-logo-wrap {
  width: 120px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.55rem;
}

.partner-logo-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.partner-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 0.25rem;
}

.partner-role {
  font-size: 0.85rem;
  color: #4b5563;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
}


/* ==== PROJECT IMPACT PAGE ADDITIONS ==== */

/* Project meta info box */
.project-meta {
  margin: 0 0 1.5rem;
  padding: 1rem 1.25rem;
  background-color: #f7f7f7;
  border-left: 3px solid #b32d2e; /* adjust to your site accent color */
  font-size: 0.95rem;
  line-height: 1.5;
}
.project-meta p {
  margin: 0 0 0.3rem;
}

/* Subheadings under each project section */
.section-subheading {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.5rem;
  font-weight: 600;
  color: #333;
}

/* Impact summary grid */
.impact-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0 2rem;
}
.impact-stat-card {
  background: #f7f7f7;
  padding: 1.2rem 1rem;
  text-align: center;
  border-radius: 4px;
}
.impact-stat-number {
  font-size: 1.7rem;
  font-weight: 700;
  color: #b32d2e;
  margin-bottom: 0.3rem;
}
.impact-stat-label {
  font-size: 0.95rem;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .impact-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .impact-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Accordion */
.impact-accordion {
  margin-top: 1.5rem;
  border-top: 1px solid #ddd;
}
.accordion-item {
  border-bottom: 1px solid #ddd;
}
.accordion-header {
  width: 100%;
  text-align: left;
  padding: 0.85rem 0;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: #333;
}
.accordion-header span {
  flex: 1;
  text-align: left;
}
.accordion-icon {
  margin-left: 0.75rem;
  font-size: 0.85rem;
  color: #777;
  transition: transform 0.2s ease;
}
.accordion-header[aria-expanded="true"] .accordion-icon {
  transform: rotate(90deg);
}
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.accordion-panel-inner {
  padding: 0 0 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Impact image grid */
.impact-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.impact-image-grid figure {
  margin: 0;
}
.impact-image-grid img {
  width: 100%;
  display: block;
  border-radius: 4px;
}
.impact-image-grid figcaption {
  font-size: 0.9rem;
  margin-top: 0.35rem;
  color: #555;
}

@media (max-width: 700px) {
  .impact-image-grid {
    grid-template-columns: 1fr;
  }
}


/* ==== GALLERY PAGE STYLES ==== */

/* Filter buttons */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0 1.5rem;
}

.gallery-filter-btn {
  border: 1px solid #ccc;
  background: #f7f7f7;
  color: #333;
  padding: 0.45rem 0.85rem;
  border-radius: 16px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.gallery-filter-btn:hover {
  border-color: #b32d2e;
}

.gallery-filter-btn.active {
  background: #b32d2e;
  color: #fff;
  border-color: #b32d2e;
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: #000;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-link {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
}

.gallery-item-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.55rem 0.65rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: #fff;
  font-size: 0.85rem;
}

.gallery-item-title {
  display: block;
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.gallery-item-meta {
  display: block;
  font-size: 0.8rem;
  opacity: 0.9;
}

/* Hover effect */
.gallery-item:hover img {
  transform: scale(1.04);
  opacity: 0.9;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Hidden state when filtering */
.gallery-item.hidden {
  display: none !important;
}

/* Lightbox overlay */
.gallery-lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.gallery-lightbox-backdrop.active {
  display: flex;
}

.gallery-lightbox {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  color: #fff;
}

.gallery-lightbox img {
  max-width: 100%;
  max-height: 70vh;
  display: block;
  margin: 0 auto;
  border-radius: 4px;
}

.gallery-lightbox-caption {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

.gallery-lightbox-meta {
  margin-top: 0.25rem;
  font-size: 0.8rem;
  opacity: 0.85;
}

/* Lightbox controls */
.gallery-lightbox-close,
.gallery-lightbox-prev,
.gallery-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox-close {
  top: 8%;
  right: -40px;
  transform: none;
}

.gallery-lightbox-prev {
  left: -40px;
}

.gallery-lightbox-next {
  right: -40px;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* If screen is small, bring arrows inside */
@media (max-width: 700px) {
  .gallery-lightbox-prev {
    left: 8px;
  }
  .gallery-lightbox-next {
    right: 8px;
  }
  .gallery-lightbox-close {
    right: 8px;
  }
}


/* ==== VOLUNTEER PAGE STYLES ==== */

/* Volunteer role cards */
.volunteer-roles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.volunteer-role-card {
  background: #f7f7f7;
  padding: 1rem 1.1rem;
  border-radius: 4px;
}

.volunteer-role-title {
  font-size: 1rem;
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.volunteer-role-title i {
  color: #b32d2e; /* match your accent color */
}

@media (max-width: 800px) {
  .volunteer-roles-grid {
    grid-template-columns: 1fr;
  }
}

/* Numbered list style for steps */
.numbered-list {
  list-style-type: decimal;
  padding-left: 1.25rem;
}

/* Volunteer FAQ accordion reuses generic accordion styles.
   If you already have .accordion-* from other pages, you can keep just .volunteer-accordion spacing.
*/

.volunteer-accordion {
  margin-top: 1rem;
}

/* Base accordion styles (use if not already included) */
.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 0.85rem 0;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: #333;
}

.accordion-header span {
  flex: 1;
  text-align: left;
}

.accordion-icon {
  margin-left: 0.75rem;
  font-size: 0.85rem;
  color: #777;
  transition: transform 0.2s ease;
}

.accordion-header[aria-expanded="true"] .accordion-icon {
  transform: rotate(90deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.accordion-panel-inner {
  padding: 0 0 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
}


/* ==== DONATION PAGE STYLES ==== */

/* Donation methods grid */
.donation-methods-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.donation-method-card {
  background: #f7f7f7;
  padding: 1rem 1.1rem;
  border-radius: 4px;
}

.donation-method-title {
  font-size: 1rem;
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.donation-method-title i {
  color: #b32d2e; /* match your accent color */
}

.donation-details-list {
  margin-top: 0.5rem;
}

.donation-note {
  font-size: 0.9rem;
  margin-top: 0.5rem;
  color: #555;
}

/* Giving levels */
.giving-levels-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.giving-level-card {
  background: #f7f7f7;
  padding: 1rem 1.1rem;
  border-radius: 4px;
  text-align: center;
}

.giving-level-amount {
  font-size: 1.4rem;
  font-weight: 700;
  color: #b32d2e;
  margin: 0 0 0.4rem;
}

.giving-level-text {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Use of funds sections */
.donation-use-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.donation-use-card {
  background: #f7f7f7;
  padding: 1rem 1.1rem;
  border-radius: 4px;
}

/* Generic primary button & disabled state (if not already defined) */
.primary-btn {
  display: inline-block;
  padding: 0.55rem 1.2rem;
  background: #b32d2e;
  color: #fff;
  border-radius: 3px;
  font-size: 0.95rem;
  text-decoration: none;
  margin-top: 0.5rem;
}

.primary-btn:hover {
  background: #8f2223;
}

.disabled-link {
  opacity: 0.6;
  cursor: default;
  pointer-events: none;
}

/* Donation accordion container spacing */
.donation-accordion {
  margin-top: 1rem;
}

/* If you already have .accordion-* styles for other pages, you can skip the block below.
   If not, include these base accordion styles: */

.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 0.85rem 0;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: #333;
}

.accordion-header span {
  flex: 1;
  text-align: left;
}

.accordion-icon {
  margin-left: 0.75rem;
  font-size: 0.85rem;
  color: #777;
  transition: transform 0.2s ease;
}

.accordion-header[aria-expanded="true"] .accordion-icon {
  transform: rotate(90deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.accordion-panel-inner {
  padding: 0 0 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .donation-methods-grid {
    grid-template-columns: 1fr;
  }
  .giving-levels-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .donation-use-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .giving-levels-grid {
    grid-template-columns: 1fr;
  }
}


/* ==== MEMBERSHIP PAGE STYLES ==== */

/* Membership cards grid */
.membership-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.membership-card {
  background: #f7f7f7;
  padding: 1rem 1.1rem;
  border-radius: 4px;
}

.membership-title {
  font-size: 1rem;
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.membership-title i {
  color: #b32d2e; /* site accent */
}

/* Membership dues boxes */
.membership-dues-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.membership-dues-card {
  background: #f7f7f7;
  padding: 1rem 1.1rem;
  border-radius: 4px;
}

.membership-dues-title {
  font-size: 1rem;
  margin: 0 0 0.4rem;
  font-weight: 600;
}

/* If not already defined elsewhere */
.numbered-list {
  list-style-type: decimal;
  padding-left: 1.25rem;
}

/* Membership accordion container spacing */
.membership-accordion {
  margin-top: 1rem;
}

/* If you already have generic .accordion-* styles from donation/volunteer/impact,
   you can skip the block below. Otherwise, include it: */
.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 0.85rem 0;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: #333;
}

.accordion-header span {
  flex: 1;
  text-align: left;
}

.accordion-icon {
  margin-left: 0.75rem;
  font-size: 0.85rem;
  color: #777;
  transition: transform 0.2s ease;
}

.accordion-header[aria-expanded="true"] .accordion-icon {
  transform: rotate(90deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.accordion-panel-inner {
  padding: 0 0 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .membership-grid {
    grid-template-columns: 1fr;
  }
  .membership-dues-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .membership-dues-grid {
    grid-template-columns: 1fr;
  }
}


/* ==== CAREERS / OPPORTUNITIES PAGE STYLES ==== */

/* Types of opportunities */
.opportunity-types-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.opportunity-type-card {
  background: #f7f7f7;
  padding: 1rem 1.1rem;
  border-radius: 4px;
}

.opportunity-type-title {
  font-size: 1rem;
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.opportunity-type-title i {
  color: #b32d2e; /* accent color */
}

/* Careers table */
.careers-table-wrapper {
  margin-top: 1rem;
  overflow-x: auto;
}

.careers-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.careers-table thead {
  background: #f0f0f0;
}

.careers-table th,
.careers-table td {
  padding: 0.6rem 0.5rem;
  border-bottom: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
}

.careers-table th {
  font-weight: 600;
}

.careers-table-note {
  font-size: 0.85rem;
  color: #555;
  margin-top: 0.25rem;
}

.careers-link {
  font-size: 0.9rem;
  color: #b32d2e;
  text-decoration: none;
}

.careers-link:hover {
  text-decoration: underline;
}

/* Detailed description blocks under the table */
.career-detail-block {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid #eee;
}

/* Numbered list (if not already set) */
.numbered-list {
  list-style-type: decimal;
  padding-left: 1.25rem;
}

/* Careers accordion container spacing */
.careers-accordion {
  margin-top: 1rem;
}

/* If generic .accordion-* styles are already in your CSS, you do NOT need this block again.
   If not, include it here: */
.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 0.85rem 0;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: #333;
}

.accordion-header span {
  flex: 1;
  text-align: left;
}

.accordion-icon {
  margin-left: 0.75rem;
  font-size: 0.85rem;
  color: #777;
  transition: transform 0.2s ease;
}

.accordion-header[aria-expanded="true"] .accordion-icon {
  transform: rotate(90deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.accordion-panel-inner {
  padding: 0 0 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .opportunity-types-grid {
    grid-template-columns: 1fr;
  }
}


/* ==== BLOG PAGE STYLES ==== */

/* Filters (non-functional, visual only) */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0 1.5rem;
}

.blog-filter-btn {
  border: 1px solid #ccc;
  background: #f7f7f7;
  color: #333;
  padding: 0.45rem 0.85rem;
  border-radius: 16px;
  font-size: 0.9rem;
  cursor: default; /* non-clickable for now */
}

.blog-filter-btn.active {
  background: #b32d2e;
  color: #fff;
  border-color: #b32d2e;
}

/* Blog list */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1rem;
}

.blog-card {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  background: #f7f7f7;
  border-radius: 4px;
  overflow: hidden;
}

.blog-card-image-link {
  position: relative;
  flex: 0 0 32%;
  min-width: 160px;
}

.blog-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card-category {
  position: absolute;
  left: 0.5rem;
  bottom: 0.5rem;
  background: rgba(179, 45, 46, 0.9);
  color: #fff;
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
}

.blog-card-body {
  flex: 1;
  padding: 0.75rem 0.9rem;
}

.blog-card-title {
  font-size: 1.05rem;
  margin: 0 0 0.3rem;
}

.blog-card-title a {
  text-decoration: none;
  color: #222;
}

.blog-card-title a:hover {
  text-decoration: underline;
}

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 0.4rem;
}

.blog-card-meta i {
  margin-right: 0.25rem;
}

.blog-card-excerpt {
  font-size: 0.9rem;
  margin: 0 0 0.5rem;
}

.blog-card-readmore {
  font-size: 0.9rem;
  color: #b32d2e;
  text-decoration: none;
  font-weight: 600;
}

.blog-card-readmore:hover {
  text-decoration: underline;
}

/* Pagination */
.blog-pagination {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.blog-page-link {
  font-size: 0.9rem;
  text-decoration: none;
  color: #b32d2e;
}

.blog-page-link:hover {
  text-decoration: underline;
}

/* Reuse disabled-link if you already have it; if not: */
.disabled-link {
  opacity: 0.6;
  cursor: default;
  pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 800px) {
  .blog-card {
    flex-direction: column;
  }
  .blog-card-image-link {
    flex: 0 0 auto;
  }
}


/* ==== CONTACT PAGE STYLES ==== */

/* Contact info layout */
.contact-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 1.25rem;
  margin-top: 1rem;
}

.contact-info-block {
  background: #f7f7f7;
  padding: 1rem 1.1rem;
  border-radius: 4px;
}

.contact-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.contact-info-list i {
  color: #b32d2e;
  margin-top: 0.15rem;
}

/* Map */
.contact-map-block {
  background: #f7f7f7;
  padding: 1rem 1.1rem 0.9rem;
  border-radius: 4px;
}

.map-embed-wrapper {
  margin-top: 0.5rem;
  border-radius: 4px;
  overflow: hidden;
}

.map-embed-wrapper iframe {
  width: 100%;
  height: 230px;
  display: block;
}

.map-note {
  font-size: 0.85rem;
  margin-top: 0.4rem;
  color: #555;
}

/* Contact form */
.contact-form {
  margin-top: 1rem;
}

.form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-group {
  flex: 1 1 0;
  margin-bottom: 0.75rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.4rem 0.45rem;
  border-radius: 3px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-group textarea {
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #b32d2e;
}

.form-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.form-note {
  font-size: 0.85rem;
  margin-top: 0.4rem;
  color: #555;
}

/* Primary button (if not already defined) */
.primary-btn {
  display: inline-block;
  padding: 0.55rem 1.2rem;
  background: #b32d2e;
  color: #fff;
  border-radius: 3px;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.primary-btn:hover {
  background: #8f2223;
}

/* Sidebar contact list */
.contact-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-sidebar-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.contact-sidebar-list i {
  color: #b32d2e;
}

/* Social links in sidebar */
.contact-social-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.4rem;
}

.contact-social-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 0.9rem;
  color: #333;
}

.contact-social-links a i {
  color: #b32d2e;
}

.contact-social-links a:hover span {
  text-decoration: underline;
}

/* Newsletter form */
.newsletter-form .form-group {
  margin-bottom: 0.5rem;
}

.newsletter-form input[type="email"] {
  width: 100%;
  padding: 0.4rem 0.45rem;
  border-radius: 3px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: #b32d2e;
}

/* Screen-reader only label utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}


/* ==== SUPPORT PAGE STYLES ==== */

/* Support cards grid */
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.support-card {
  background: #f7f7f7;
  padding: 1rem 1.1rem;
  border-radius: 4px;
}

.support-title {
  font-size: 1rem;
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.support-title i {
  color: #b32d2e; /* match site accent color */
}

.support-link {
  font-size: 0.9rem;
  color: #b32d2e;
  text-decoration: none;
}

.support-link:hover {
  text-decoration: underline;
}

/* Support priorities */
.support-priorities-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.support-priority-card {
  background: #f7f7f7;
  padding: 1rem 1.1rem;
  border-radius: 4px;
}

/* Numbered list (if not already defined) */
.numbered-list {
  list-style-type: decimal;
  padding-left: 1.25rem;
}

/* Support accordion container spacing */
.support-accordion {
  margin-top: 1rem;
}

/* If generic accordion styles already exist, you can skip the block below.
   Otherwise, include them here: */
.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 0.85rem 0;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: #333;
}

.accordion-header span {
  flex: 1;
  text-align: left;
}

.accordion-icon {
  margin-left: 0.75rem;
  font-size: 0.85rem;
  color: #777;
  transition: transform 0.2s ease;
}

.accordion-header[aria-expanded="true"] .accordion-icon {
  transform: rotate(90deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.accordion-panel-inner {
  padding: 0 0 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .support-grid {
    grid-template-columns: 1fr;
  }
  .support-priorities-grid {
    grid-template-columns: 1fr;
  }
}
