/* ============================================
   OK-ISOFRSM - Professional Stylesheet
   Organized, modern, and brand-consistent
   Primary Green: #008a02
   ============================================ */

:root {
  --primary-green: #008751;
  --heading-color: #0033A0;
  --accent-purple: #8a0088;
  --accent-blue: #0033A0;
  --light-green: #f8fff8;
  --light-bg: #e4f1de;
  --dark: #111;
  --text-muted: #555;
  --transition: 0.2s ease;
}


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

body {
  font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
  color: #222;
  line-height: 1.55;
  overflow-x: hidden;
  font-size: 15px; /* Global reduced size for polished look */
}

h1, h2, h3, h4, h5 {
  font-family: 'Roboto', system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--heading-color);
}

/* Reduce nav and small elements */
.navbar, .nav-links ul li a {
  font-size: 15px;
}

small, .small, .badge {
  font-size: 0.8rem;
}

/* Brand Logo Treatment - Professional Positioning */
.navbar-brand img {
  height: 48px;
  width: auto;
  max-height: 55px;
  object-fit: contain;
  display: block;
  margin-right: 6px;
  vertical-align: middle;
}

/* Professional navbar logo container */
.navbar-brand {
  padding: 4px 0;
}

.brandName {
  align-items: center;
}

.brandName {
  display: flex;
  align-items: center;
}

.logo-text {
  display: none; /* Hide accompanying text since the new logo-main.png includes full branding for clean professional look */
}

/* If text is needed in some places, override with .show-text */
.navbar-brand.show-text .logo-text {
  display: flex;
  flex-direction: column;
  font-size: 11px;
  line-height: 1;
}

.navbar-brand.show-text .logo-text span {
  font-size: 11px;
  letter-spacing: 0.5px;
}

/* Professional Buttons */
.btn {
  transition: all var(--transition);
  font-weight: 600;
  border-radius: 8px;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 138, 2, 0.2);
}

.btn-success, .btn[style*="008a02"] {
  background-color: var(--primary-green) !important;
  border-color: var(--primary-green) !important;
}

/* Navbar Improvements - Professional Flex Layout */
.navbar {
  transition: background 0.3s ease;
}

.nav-links ul {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links ul li a {
  text-decoration: none;
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-size: 15px; /* Reduced for cleanliness */
  font-weight: 500;
  white-space: nowrap;
}

.nav-links ul li a:hover {
  color: var(--primary-green);
  border-bottom: 2px solid var(--primary-green);
  padding-bottom: 2px;
}

/* Right side actions group */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 20px;
}

.nav-actions .btn-donate,
.nav-actions .btn-join,
.donate-now a {
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 6px;
  white-space: nowrap;
}

.donate-now a {
  background-color: var(--primary-green);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.nav-link {
  font-weight: 500;
  padding: 0.5rem 0.75rem !important;
  color: #fff !important;
  font-size: 15px;
}

.nav-link.active, .nav-link:hover {
  color: var(--primary-green) !important;
}

/* Hero Section - Full-width Carousel */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: visible;
}

/* Background slide layer */
.hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: var(--bg-position, center center);
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 6s ease;
}

.hero-bg-slide:nth-child(1) {
  background-image: url('../images/slider/slider3.png');
}

.hero-bg-slide:nth-child(2) {
  background-image: url('../images/slider/slider2.png');
}

.hero-bg-slide:nth-child(3) {
  background-image: url('../images/slider/slider1.png');
}

.hero-bg-slide:nth-child(4) {
  background-image: url('../images/slider/slider5.png');
}

.hero-bg-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

/* Dark overlay for readability */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.55));
  z-index: 1;
  pointer-events: none;
}

.hero .hero-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-bottom: 2.5rem;
}

.hero .navbar {
  position: relative;
  z-index: 30;
}

.hero-stage {
  position: relative;
  min-height: 420px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  margin-top: 61px;
}

.hero h1 span {
  color: var(--primary-green);
}

.hero .hero-lead {
  font-size: 1.05rem;
  max-width: 560px;
  color: #f0f0f0;
}

/* Badge update */
.hero .badge {
  background-color: var(--accent-blue) !important;
  color: #fff !important;
  font-size: 0.75rem;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 50px;
}

/* Content slide transitions */
.hero-content-slider {
  position: relative;
  min-height: 340px;
}

.hero-content-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(28px);
  transition: opacity 0.65s ease, transform 0.65s ease, visibility 0.65s;
  pointer-events: none;
}

.hero-content-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
  z-index: 2;
}

.hero-content-slide.is-exiting {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: visible;
  transform: translateX(-28px);
  z-index: 1;
}

/* Hero buttons */
.hero .buttons-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero .btn-hero-primary {
  background-color: #0033A0;
  padding: 11px 26px;
  border-radius: 8px;
  border: none;
}

.hero .btn-hero-primary:hover {
  background-color: #002680;
  color: #fff;
}

.hero .btn-hero-outline {
  padding: 11px 26px;
  border-radius: 8px;
}

/* Static cutout image — fixed over all slides */
.hero-cutout {
  position: absolute;
  right: -2%;
  bottom: 0;
  width: 38%;
  max-width: 420px;
  z-index: 4;
  pointer-events: none;
  line-height: 0;
}

.hero-cutout img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: bottom right;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}

/* Carousel navigation */
.hero-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.hero-nav-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.05);
}

.hero-nav-btn:focus-visible {
  outline: 2px solid var(--primary-green);
  outline-offset: 2px;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
}

.hero-dot.is-active {
  background: var(--primary-green);
  width: 28px;
  border-radius: 5px;
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.65);
}

.hero-dot.is-active:hover {
  background: var(--primary-green);
}

.menuToggle {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.25s ease;
}

.menuToggle:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Cards - More Professional */
.obj-card,
.purpose-card,
.card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-radius: 16px;
}

.obj-card:hover,
.purpose-card:hover,
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 138, 2, 0.08);
}

/* Stats / Counters */
.stat-number {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--primary-green);
}

/* Forms - Professional Look */
.form-control, .form-select {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 0.75rem 1rem;
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(0, 138, 2, 0.15);
}

/* ============================================
   Grassroots in Action - Custom Carousel Gallery
   Professional overlapping card carousel styling
   ============================================ */

#gallery.carousel-container,
.carousel-container {
  font-family: 'Roboto', system-ui, sans-serif;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #e4f1de;
  padding-bottom: 40px;
}

#gallery .text-center h2,
.carousel-container h2 {
  color: var(--heading-color);
}

.gallery {
  width: 100%;
  position: relative;
  max-width: 1100px;
}

.gallery-container {
  display: flex;
  align-items: center;
  height: 460px;
  margin: 0 auto;
  max-width: 100%;
  position: relative;
}

.gallery-item {
  position: absolute;
  height: 230px;
  width: 310px;
  opacity: 0;
  transition: all 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  border: 4px solid #fff;
  z-index: 0;
}

/* Carousel positions - 5 item overlapping effect */
.gallery-item-1 {
  left: 12%;
  opacity: 0.35;
  transform: translateX(-50%) scale(0.88);
  z-index: 0;
}

.gallery-item-2,
.gallery-item-4 {
  height: 280px;
  width: 360px;
  opacity: 0.75;
  z-index: 1;
}

.gallery-item-2 {
  left: 28%;
  transform: translateX(-50%);
}

.gallery-item-3 {
  left: 50%;
  height: 330px;
  width: 560px;
  opacity: 1;
  z-index: 3;
  transform: translateX(-50%);
  box-shadow: -4px 10px 32px rgba(0, 0, 0, 0.28);
  border-width: 5px;
}

.gallery-item-4 {
  left: 72%;
  transform: translateX(-50%);
}

.gallery-item-5 {
  left: 88%;
  opacity: 0.35;
  transform: translateX(-50%) scale(0.88);
  z-index: 0;
}

/* Controls */
.gallery-controls {
  display: flex;
  justify-content: space-between;
  width: 70%;
  max-width: 620px;
  margin-top: 8px;
  padding: 0 20px;
}

.gallery-controls button {
  background: #ffffff;
  border: 1px solid #ccc;
  font-size: 18px;
  color: #333;
  cursor: pointer;
  padding: 6px 16px;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.gallery-controls button:hover {
  background: var(--primary-green);
  color: #fff;
  border-color: var(--primary-green);
  transform: translateY(-1px);
}

/* Responsive for gallery */
@media (max-width: 768px) {
  .gallery-container {
    height: 380px;
  }
  
  .gallery-item,
  .gallery-item-1,
  .gallery-item-2,
  .gallery-item-4,
  .gallery-item-5 {
    display: none;
  }
  
  .gallery-item-3 {
    left: 50%;
    height: 300px;
    width: 85%;
    max-width: 420px;
    transform: translateX(-50%);
    display: block;
    opacity: 1;
    z-index: 3;
  }
  
  .gallery-controls {
    display: none; /* hide on mobile or simplify */
  }
}

/* Donation & Impact Cards */
.donation-row {
  position: relative;
  background-size: cover;
  background-position: center;
}

/* Footer */
footer a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover {
  color: var(--primary-green);
}

/* ============================================
   Modern Mobile Navigation (Slide-in Sidebar)
   Brand Colors: #1a2b5d (bg), #388a1b & #2596be (accents), #023899 (headings)
   ============================================ */

.m-nav-link {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 300px;
  height: 100vh;
  background-color: #1a2b5d;
  z-index: 1001;
  padding: 0;
  transition: right 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  overflow-y: auto;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.25);
  display: block !important;
}

.m-nav-link.open {
  right: 0;
}

/* Header with brand and close */
.mobile-nav-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 16px 20px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background-color: #1a2b5d;
}

.mobile-brand {
  line-height: 1.1;
}

.mobile-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  padding: 0 8px;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.mobile-close:hover {
  opacity: 1;
  color: #2596be;
}

/* Navigation Links - No bullets, good padding */
.m-nav-link ul {
  list-style: none;
  padding: 8px 0 20px;
  margin: 0;
}

.m-nav-link li a {
  display: block;
  padding: 16px 24px;
  color: #fff;
  font-size: 16.5px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.m-nav-link li a:hover {
  background-color: rgba(255,255,255,0.06);
  padding-left: 32px;
  color: #388a1b;
}

/* Mobile nav — animated dropdown sub-menus */
.mobile-nav-list {
  list-style: none;
  padding: 8px 0 20px;
  margin: 0;
}

.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 16.5px;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-dropdown-toggle:hover {
  background-color: rgba(255, 255, 255, 0.06);
  color: #388a1b;
}

.mobile-chevron {
  font-size: 0.75rem;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-nav-item.is-open .mobile-chevron {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), padding 0.3s ease;
}

.mobile-nav-item.is-open .mobile-dropdown-menu {
  max-height: 420px;
}

.mobile-dropdown-menu li a {
  padding: 12px 24px 12px 40px !important;
  font-size: 15px !important;
  color: rgba(255, 255, 255, 0.88) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.mobile-dropdown-menu li a:hover {
  color: #388a1b !important;
  padding-left: 48px !important;
}

/* Special prominent styling for Donate and Join the Movement */
.m-nav-link .mobile-cta-donate,
.m-nav-link li a[href*="donate.html"] {
  background-color: #388a1b !important;
  color: #fff !important;
  margin: 14px 20px 6px !important;
  padding: 15px 24px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  text-align: center !important;
  border-bottom: none !important;
  box-shadow: 0 2px 8px rgba(56, 138, 27, 0.35);
}

.m-nav-link .mobile-cta-donate:hover {
  background-color: #2e6f15 !important;
  transform: translateY(-1px);
}

.m-nav-link .mobile-cta-join,
.m-nav-link li a[data-bs-toggle="modal"] {
  background-color: #2596be !important;
  color: #fff !important;
  margin: 6px 20px 18px !important;
  padding: 15px 24px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  text-align: center !important;
  border-bottom: none !important;
  box-shadow: 0 2px 8px rgba(37, 150, 190, 0.35);
}

.m-nav-link .mobile-cta-join:hover {
  background-color: #1e7a99 !important;
  transform: translateY(-1px);
}

/* Backdrop for professional overlay */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.nav-backdrop.open {
  opacity: 1;
  visibility: visible;
}

/* Responsive Tweaks */
@media (max-width: 991px) {
  .hero-stage {
    min-height: auto;
  }

  .hero-content-slider {
    min-height: 300px;
  }

  .hero-bg-slide {
    background-attachment: scroll;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 560px;
  }

  .hero-content-slide h1,
  .hero-content h1 {
    font-size: 2.4rem;
  }

  .hero-slider-controls {
    margin-top: 1rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }
}

/* Accessibility & Polish */
.btn:focus-visible,
.nav-link:focus-visible {
  outline: 2px solid var(--primary-green);
  outline-offset: 2px;
}

/* Brand font (optional) */
@font-face {
  font-family: 'Queen of Camelot';
  src: url('../images/Queen of Camelot 2.0.ttf') format('opentype');
}

/* Additional professional navbar right-side alignment */
.container-fluid.d-flex.align-items-center {
  display: flex;
  align-items: center;
  width: 100%;
}

/* ============================================
   Site-wide Components — Pages, Sections, UI
   ============================================ */

/* Inner page header — same nav structure as hero */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.85) 100%);
  backdrop-filter: blur(8px);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header .nav-links ul li a,
.site-header .menuToggle {
  color: #fff;
}

/* Nav dropdowns — preserve existing link styling */
.nav-has-dropdown {
  position: relative;
}

.nav-links {
  position: relative;
  z-index: 40;
}

.nav-chevron {
  font-size: 0.65rem;
  margin-left: 3px;
  opacity: 0.75;
  transition: transform 0.2s ease;
}

.nav-has-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 210px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  list-style: none;
  padding: 8px 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 200;
}

.nav-has-dropdown:hover .nav-dropdown-menu,
.nav-has-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  animation: navDropdownIn 0.32s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes navDropdownIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(14px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

.nav-dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  color: #333 !important;
  font-size: 14px !important;
  border-bottom: none !important;
  white-space: nowrap;
}

.nav-dropdown-menu li a:hover {
  background: var(--light-green);
  color: var(--primary-green) !important;
  padding-bottom: 10px !important;
}

/* Page hero banners */
.page-hero-banner {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.page-hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.72), rgba(0, 51, 160, 0.45));
  z-index: 1;
}

.page-hero-banner .container {
  position: relative;
  z-index: 2;
}

.page-hero-banner h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
}

/* Section utilities */
.section-label {
  display: inline-block;
  background: #e8f5e9;
  color: var(--primary-green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
}

.section-title {
  font-family: 'Roboto', sans-serif;
  color: var(--heading-color);
  font-weight: 600;
}

.bg-light-green {
  background: var(--light-green);
}

/* Home hero — single slide variant */
.hero-home .hero-stage {
  min-height: 460px;
}

.hero-home .hero-lead {
  max-width: 620px;
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero-side-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  border: 3px solid rgba(255, 255, 255, 0.15);
}

.hero-side-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* Benefit cards */
.benefit-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.75rem;
  height: 100%;
  border: 1px solid rgba(0, 135, 81, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 135, 81, 0.12);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.benefit-card ul {
  padding-left: 1.1rem;
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.benefit-card ul li {
  margin-bottom: 0.35rem;
}

/* Core values */
.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: 18px;
  height: 100%;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: var(--primary-green);
  box-shadow: 0 12px 30px rgba(0, 135, 81, 0.1);
}

.value-card .value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--light-green);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

/* How it works — step flow */
.steps-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  position: relative;
}

.step-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-blue);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.1rem;
  box-shadow: 0 4px 14px rgba(0, 51, 160, 0.3);
}

.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 2.4rem;
  right: -12px;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), var(--primary-green));
}

/* Leadership hierarchy */
.hierarchy-tree {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hierarchy-level {
  background: #fff;
  border-radius: 14px;
  padding: 1.25rem 2rem;
  text-align: center;
  min-width: 280px;
  border: 2px solid rgba(0, 51, 160, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.hierarchy-level:hover {
  transform: scale(1.02);
}

.hierarchy-level.state { border-color: var(--accent-blue); background: linear-gradient(135deg, #fff, #f0f4ff); }
.hierarchy-level.lga { border-color: var(--primary-green); min-width: 320px; }
.hierarchy-level.ward { border-color: #2596be; min-width: 360px; }
.hierarchy-level.members { border-color: #ccc; min-width: 400px; background: var(--light-green); }

.hierarchy-connector {
  width: 2px;
  height: 28px;
  background: linear-gradient(180deg, var(--accent-blue), var(--primary-green));
}

/* Opportunity preview cards */
.opp-preview-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  height: 100%;
  border-left: 4px solid var(--primary-green);
  transition: all 0.3s ease;
}

.opp-preview-card:hover {
  transform: translateX(6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.status-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.status-badge.open { background: #e8f5e9; color: var(--primary-green); }
.status-badge.new { background: #e3f2fd; color: var(--accent-blue); }
.status-badge.closing { background: #fff3e0; color: #e65100; }

/* Community desk */
.community-desk {
  background: linear-gradient(135deg, #0f3d14 0%, #1a5c2e 100%);
  color: #fff;
  border-radius: 24px;
  overflow: hidden;
}

/* Stats grid premium */
.stats-grid .stat-box {
  background: #fff;
  border-radius: 18px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 135, 81, 0.08);
  border: 1px solid rgba(0, 135, 81, 0.08);
  transition: transform 0.3s ease;
}

.stats-grid .stat-box:hover {
  transform: translateY(-4px);
}

.stats-grid .stat-number {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  padding: 2rem;
  height: 100%;
  position: relative;
  border: 1px solid #eee;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-green);
  opacity: 0.15;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

/* FAQ Accordion */
.faq-accordion .faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 10px;
  border: 1px solid #e8e8e8;
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}

.faq-accordion .faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.faq-accordion .faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.15rem 1.5rem;
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
  color: var(--heading-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
}

.faq-accordion .faq-question i {
  transition: transform 0.3s ease;
  color: var(--primary-green);
}

.faq-accordion .faq-item.is-open .faq-question i {
  transform: rotate(180deg);
}

.faq-accordion .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
  color: var(--text-muted);
}

.faq-accordion .faq-item.is-open .faq-answer {
  max-height: 200px;
  padding: 0 1.5rem 1.15rem;
}

/* Tab system */
.tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-bottom: 2px solid #eee;
  padding-bottom: 0;
  margin-bottom: 2rem;
}

.tab-btn {
  background: none;
  border: none;
  padding: 12px 22px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.25s ease;
  font-family: 'Roboto', sans-serif;
}

.tab-btn:hover { color: var(--heading-color); }

.tab-btn.is-active {
  color: var(--accent-blue);
  border-bottom-color: var(--accent-blue);
}

.tab-panel { display: none; animation: fadeTab 0.4s ease; }
.tab-panel.is-active { display: block; }

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

/* Multi-step registration */
.reg-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.reg-step-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  color: #aaa;
  font-size: 0.85rem;
  font-weight: 600;
}

.reg-step-indicator .step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.reg-step-indicator.is-active .step-dot,
.reg-step-indicator.is-done .step-dot {
  border-color: var(--primary-green);
  background: var(--primary-green);
  color: #fff;
}

.reg-step-indicator.is-active { color: var(--heading-color); }

.reg-form-step { display: none; }
.reg-form-step.is-active { display: block; animation: fadeTab 0.4s ease; }

/* Opportunity board cards */
.opp-board-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.opp-board-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

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

.opp-board-card .card-body {
  padding: 1.5rem;
}

/* Leadership tree / profile grid */
.leader-tier-card {
  background: #fff;
  border-radius: 18px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  border-top: 4px solid var(--accent-blue);
  transition: all 0.3s ease;
}

.leader-tier-card:hover {
  box-shadow: 0 14px 36px rgba(0, 51, 160, 0.12);
}

.leader-profile-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.leader-profile-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.leader-profile-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Contact page */
.contact-info-card {
  background: var(--light-green);
  border-radius: 18px;
  padding: 2rem;
  height: 100%;
}

.contact-form-card {
  background: #fff;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

/* Unified footer */
footer {
  background: #0a0a0a;
}

.footer-container {
  padding: 3.5rem 0 1.5rem;
}

.footer-social-icon a,
.footer-social-icon i {
  color: #aaa;
  font-size: 1.2rem;
  transition: color 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.footer-social-icon a:hover,
.footer-social-icon i:hover {
  color: var(--primary-green);
  transform: translateY(-2px);
}

.footer-col-one h4,
footer h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 1.5rem 0;
}

/* Final CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--accent-blue) 0%, #001a66 100%);
  color: #fff;
  border-radius: 24px;
  padding: 3.5rem 2rem;
  text-align: center;
}

.cta-band h2 { color: #fff; }

/* News cards */
.news-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.news-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

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

/* Login card */
.auth-card {
  max-width: 440px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

@media (max-width: 1199px) {
  .nav-links ul { gap: 14px; }
  .nav-links ul li a { font-size: 13px; }
}

@media (max-width: 991px) {
  .step-item:not(:last-child)::after { display: none; }
  .steps-flow { gap: 1rem; }
  .step-item { flex: 1 1 45%; }
  .hero-side-img img { height: 280px; }
}

@media (max-width: 768px) {
  .page-hero-banner { min-height: 300px; }
  .hierarchy-level { min-width: auto; width: 100%; }
}

/* ============================================
   Our Achievements — 3D Card Carousel
   ============================================ */

.achievements-carousel-section {
  position: relative;
  overflow: hidden;
  background-color: #e8e8e8;
  background-image: url('../images/CHIEVEMENTSbg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.achievements-carousel-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.42) 0%,
    rgba(248, 255, 248, 0.18) 45%,
    rgba(255, 255, 255, 0.48) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.achievements-carousel-section .container {
  position: relative;
  z-index: 1;
}

.achievements-carousel-section .section-title {
  color: var(--heading-color);
}

.achievements-carousel-section .text-muted {
  color: #4a4a4a !important;
}

.achievements-carousel__viewport {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 2.5rem 0 1rem;
  min-height: 430px;
  perspective: 1400px;
  overflow: hidden;
}

.achievements-carousel__track {
  position: relative;
  width: 100%;
  height: 400px;
}

.achievement-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(360px, 86vw);
  margin: 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.1);
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0.4;
  z-index: 1;
  pointer-events: none;
  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.6s ease,
    visibility 0.6s ease;
  will-change: transform, opacity;
}

.achievement-card.is-active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  z-index: 5;
  pointer-events: auto;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.16);
}

.achievement-card.is-prev {
  transform: translate(calc(-50% - 240px), -50%) scale(0.86);
  opacity: 0.5;
  z-index: 3;
}

.achievement-card.is-next {
  transform: translate(calc(-50% + 240px), -50%) scale(0.86);
  opacity: 0.5;
  z-index: 3;
}

.achievement-card.is-far-left {
  transform: translate(calc(-50% - 420px), -50%) scale(0.72);
  opacity: 0;
  z-index: 0;
}

.achievement-card.is-far-right {
  transform: translate(calc(-50% + 420px), -50%) scale(0.72);
  opacity: 0;
  z-index: 0;
}

.achievement-card.is-hidden {
  visibility: hidden;
}

.achievement-card__media {
  position: relative;
  border-radius: 18px 18px 0 0;
  overflow: visible;
  aspect-ratio: 16 / 10;
  background: #e8e8e8;
}

.achievement-card__media > img:first-child {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
}

.achievement-card__avatar {
  position: absolute;
  right: 22px;
  bottom: -22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
  z-index: 2;
}

.achievement-card__body {
  padding: 2.25rem 1.5rem 1.35rem;
  background: #fff;
  border-radius: 0 0 18px 18px;
}

.achievement-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-green);
  margin-bottom: 0.55rem;
}

.achievement-card__title {
  font-family: 'Roboto', sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.35;
  color: #111;
  margin: 0;
}

.achievement-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid #ececec;
  font-size: 0.8rem;
  color: #8a8a8a;
}

.achievement-card__divider {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: #c8c8c8;
  flex-shrink: 0;
}

.achievements-carousel__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.achievements-carousel__dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid var(--primary-green);
  background: transparent;
  cursor: pointer;
  transition: background 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
}

.achievements-carousel__dot:hover {
  transform: scale(1.1);
}

.achievements-carousel__dot.is-active {
  background: var(--primary-green);
  transform: scale(1.18);
}

.achievements-carousel__dot:focus-visible {
  outline: 2px solid var(--primary-green);
  outline-offset: 3px;
}

@media (max-width: 991px) {
  .achievement-card.is-prev {
    transform: translate(calc(-50% - 190px), -50%) scale(0.82);
    opacity: 0.45;
  }

  .achievement-card.is-next {
    transform: translate(calc(-50% + 190px), -50%) scale(0.82);
    opacity: 0.45;
  }
}

@media (max-width: 767px) {
  .achievements-carousel__viewport {
    min-height: 390px;
    padding-top: 1.5rem;
  }

  .achievements-carousel__track {
    height: 360px;
  }

  .achievement-card {
    width: min(320px, 92vw);
  }

  .achievement-card.is-prev {
    transform: translate(calc(-50% - 130px), -50%) scale(0.78);
    opacity: 0.35;
  }

  .achievement-card.is-next {
    transform: translate(calc(-50% + 130px), -50%) scale(0.78);
    opacity: 0.35;
  }

  .achievement-card__title {
    font-size: 1rem;
  }

  .achievement-card__avatar {
    width: 50px;
    height: 50px;
    right: 16px;
    bottom: -18px;
  }
}

@media (max-width: 480px) {
  .achievement-card.is-prev,
  .achievement-card.is-next {
    opacity: 0.2;
    transform: translate(-50%, -50%) scale(0.7);
  }

  .achievement-card.is-far-left,
  .achievement-card.is-far-right {
    display: none;
  }
}

@media (max-width: 991px), (hover: none) {
  .achievements-carousel-section {
    background-attachment: scroll;
  }
}

/* ============================================
   Hon. O.K Chinda — Profile Tab Section
   ============================================ */

.chinda-profile-section {
  position: relative;
  overflow: hidden;
  background-color: #e8e8e8;
  background-image: url('../images/CHIEVEMENTSbg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.chinda-profile-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(248, 255, 248, 0.28) 45%,
    rgba(255, 255, 255, 0.55) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.chinda-profile-section .container {
  position: relative;
  z-index: 1;
}

.chinda-profile-section .section-title {
  color: var(--heading-color);
}

.chinda-profile-section .text-muted {
  color: #3d3d3d !important;
}

.chinda-profile__card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem 2.25rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.chinda-profile__media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 420px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
  background: #e9ecef;
}

.chinda-profile__img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center top;
  transition: opacity 0.32s ease;
}

.chinda-profile__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.chinda-tab-btn {
  border: none;
  background: transparent;
  color: #1f1f1f;
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  white-space: nowrap;
}

.chinda-tab-btn:hover:not(.is-active) {
  color: var(--heading-color);
  background: rgba(0, 51, 160, 0.06);
}

.chinda-tab-btn.is-active {
  background: #388a1b;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(56, 138, 27, 0.32);
}

.chinda-tab-btn:focus-visible {
  outline: 2px solid var(--primary-green);
  outline-offset: 2px;
}

.chinda-profile__content {
  position: relative;
  min-height: 220px;
}

.chinda-profile__content .tab-panel {
  display: none;
  animation: chindaTabIn 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.chinda-profile__content .tab-panel.is-active {
  display: block;
}

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

.chinda-profile__panel-title {
  font-family: 'Roboto', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.85rem;
}

.chinda-profile__content p {
  color: #4a4a4a;
  margin-bottom: 0.9rem;
  line-height: 1.65;
}

.chinda-profile__list {
  padding-left: 1.1rem;
  color: #4a4a4a;
}

.chinda-profile__list li {
  margin-bottom: 0.55rem;
  line-height: 1.55;
}

.chinda-profile__list li::marker {
  color: var(--primary-green);
}

@media (max-width: 991px) {
  .chinda-profile__media,
  .chinda-profile__img {
    min-height: 340px;
  }

  .chinda-profile__tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .chinda-profile__tabs::-webkit-scrollbar {
    height: 4px;
  }

  .chinda-profile__tabs::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.18);
    border-radius: 4px;
  }
}

@media (max-width: 767px) {
  .chinda-profile__media,
  .chinda-profile__img {
    min-height: 300px;
  }

  .chinda-tab-btn {
    font-size: 0.84rem;
    padding: 9px 14px;
  }

  .chinda-profile__panel-title {
    font-size: 1.1rem;
  }

  .chinda-profile__card {
    padding: 1.5rem 1.25rem;
  }
}

@media (max-width: 991px), (hover: none) {
  .chinda-profile-section {
    background-attachment: scroll;
  }
}

/* ============================================
   Leadership Team Section
   ============================================ */

.leadership-team-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--light-green) 100%);
}

.team-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 51, 160, 0.08);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(0, 51, 160, 0.12);
}

.team-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e9ecef;
}

.team-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-card__media img {
  transform: scale(1.04);
}

.team-card__body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

.team-card__name {
  font-family: 'Roboto', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.35rem;
}

.team-card__role {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-green);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.85rem;
}

.team-card__bio {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.team-card__btn {
  display: inline-block;
  align-self: center;
  padding: 0.6rem 1.5rem;
  background: var(--accent-blue);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease;
}

.team-card__btn:hover {
  background: #002878;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

/* Convener — distinguished card */
.team-card--convener {
  border: 2px solid var(--primary-green);
  box-shadow: 0 16px 48px rgba(0, 135, 81, 0.18);
  transform: translateY(-8px);
}

.team-card--convener::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 135, 81, 0.06) 0%,
    transparent 40%,
    rgba(0, 51, 160, 0.04) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.team-card--convener:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 56px rgba(0, 135, 81, 0.22);
}

.team-card--convener .team-card__media {
  aspect-ratio: 4 / 3.2;
}

.team-card--convener .team-card__body {
  position: relative;
  z-index: 2;
}

.team-card__badge {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: linear-gradient(135deg, var(--primary-green) 0%, #006b3f 100%);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(0, 135, 81, 0.35);
  white-space: nowrap;
}

.team-card--convener .team-card__name {
  font-size: 1.3rem;
  color: var(--accent-blue);
}

.team-card--convener .team-card__role {
  color: var(--accent-blue);
  font-size: 0.85rem;
}

.team-card__btn--convener {
  background: var(--primary-green);
}

.team-card__btn--convener:hover {
  background: #006b3f;
}

@media (max-width: 991px) {
  .team-card--convener {
    transform: none;
  }

  .team-card--convener:hover {
    transform: translateY(-6px);
  }
}

/* ============================================
   Candidate Profile Page
   ============================================ */

.chinda-profile__read-more {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: var(--accent-blue);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease;
}

.chinda-profile__read-more:hover {
  background: #002878;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.candidate-profile-img {
  max-height: 480px;
  width: 100%;
  object-fit: cover;
}

.candidate-highlights {
  background: var(--light-green);
  border: 1px solid rgba(0, 135, 81, 0.15);
}

.candidate-bio p {
  color: #4a4a4a;
  line-height: 1.75;
  margin-bottom: 1.1rem;
}

.candidate-projects-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--light-green) 100%);
}

.candidate-project-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 51, 160, 0.08);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.candidate-project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 51, 160, 0.1);
}

.candidate-project-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.candidate-project-card__body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.candidate-project-card__body h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1.45;
  margin: 0;
}

.candidate-quote {
  background: #fff;
  border-left: 4px solid var(--primary-green);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.candidate-bio a {
  color: var(--accent-blue);
  text-decoration: underline;
}

.candidate-bio a:hover {
  color: var(--primary-green);
}

/* ============================================
   Homepage — Join Movement CTA
   ============================================ */

.home-cta-section {
  background: #f8fff8;
}

.home-cta-band {
  background: linear-gradient(135deg, #0033a0 0%, #001f5c 55%, #0f3d14 100%);
  border-radius: 24px;
  padding: 3.5rem 2rem 2.5rem;
  color: #fff;
  box-shadow: 0 24px 60px rgba(0, 51, 160, 0.18);
  overflow: hidden;
  position: relative;
}

.home-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(0, 135, 81, 0.22) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 45%);
  pointer-events: none;
}

.home-cta-band__content {
  position: relative;
  z-index: 1;
  margin-bottom: 2.5rem;
}

.home-cta-band__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7dffb8;
  margin-bottom: 0.85rem;
}

.home-cta-band__title {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.home-cta-band__text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.home-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.home-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, border-color 0.25s ease;
}

.home-cta-btn--primary {
  background: var(--primary-green);
  color: #fff;
}

.home-cta-btn--primary:hover {
  background: #006b3f;
  color: #fff;
  transform: translateY(-2px);
}

.home-cta-btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.home-cta-btn--outline:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.home-cta-btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.home-cta-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.home-cta-stats {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 1.75rem 1.25rem 1.25rem;
}

.home-cta-stat {
  padding: 0.5rem 0.25rem;
}

.home-cta-stat__number {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #7dffb8;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.home-cta-stat__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  .home-cta-band {
    padding: 2.5rem 1.25rem 1.75rem;
  }

  .home-cta-band__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-cta-btn {
    width: 100%;
  }
}