/* ============================================================
   IHRF - International Human Rights Foundation
   Premium NGO Website Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;600;700&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --primary: #1a237e;
  --primary-dark: #0d1457;
  --primary-light: #3949ab;
  --secondary: #c9a84c;
  --secondary-dark: #a07c30;
  --secondary-light: #f0c040;
  --accent: #e53935;
  --accent-light: #ff6f60;
  --dark: #0a0f1e;
  --dark-2: #121929;
  --dark-3: #1e2a45;
  --text-dark: #1a1a2e;
  --text-body: #444466;
  --text-light: #7a7a9a;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --shadow-sm: 0 2px 15px rgba(0, 0, 0, 0.08);
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.2);
  --shadow-gold: 0 8px 30px rgba(201, 168, 76, 0.3);
  --gradient-primary: linear-gradient(135deg, #1a237e 0%, #283593 50%, #3949ab 100%);
  --gradient-gold: linear-gradient(135deg, #c9a84c 0%, #f0c040 50%, #c9a84c 100%);
  --gradient-dark: linear-gradient(135deg, #0a0f1e 0%, #121929 100%);
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-main: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

ul {
  list-style: none;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
  font-family: var(--font-main);
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 3px;
}

/* ============================================================
   LOADER
   ============================================================ */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  text-align: center;
}

.loader-logo {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: 4px;
  margin-bottom: 20px;
  animation: pulse-glow 1.5s ease-in-out infinite;
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin: 0 auto;
}

.loader-bar::after {
  content: '';
  display: block;
  height: 100%;
  width: 40%;
  background: var(--gradient-gold);
  border-radius: 3px;
  animation: loader-slide 1.2s ease-in-out infinite;
}

@keyframes loader-slide {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(350%);
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    text-shadow: 0 0 20px rgba(201, 168, 76, 0.5);
  }

  50% {
    text-shadow: 0 0 40px rgba(201, 168, 76, 0.9);
  }
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-gold);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 9000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}

#back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.5);
}

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.12);
  color: var(--secondary);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-title span {
  color: var(--primary);
}

.section-title.light {
  color: var(--white);
}

.section-title.light span {
  color: var(--secondary);
}

.section-sub {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

.section-sub.left {
  margin: 0 0 40px;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-gold);
  color: var(--dark);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}

.btn-primary-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.btn-primary-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(201, 168, 76, 0.5);
}

.btn-primary-gold:hover::before {
  opacity: 1;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 13px 32px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-primary-blue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(26, 35, 126, 0.4);
}

.btn-primary-blue:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(26, 35, 126, 0.6);
  color: var(--white);
}

/* ============================================================
   SECTION PADDING
   ============================================================ */
.section-pad {
  padding: 90px 0;
}

.section-pad-sm {
  padding: 60px 0;
}

/* ============================================================
   NAVBAR — see /assets/css/navbar.css for full navbar styles
   ============================================================ */

/* Scrolled state (shared here so scrollY works) */
#main-navbar.scrolled .navbar-main {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}

#main-navbar.scrolled .navbar-main .container {
  height: 60px;
}


/* ============================================================
   PAGE HEADER (Inner Pages)
   ============================================================ */
.page-hero {
  background: var(--gradient-primary);
  min-height: 280px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 70px;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>') center/300px;
}

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

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
}

.breadcrumb-nav a {
  color: var(--secondary);
}

.breadcrumb-nav span {
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-1 {
  background: linear-gradient(135deg, #1a237e 0%, #283593 40%, #0d47a1 100%);
}

.hero-slide-2 {
  background: linear-gradient(135deg, #0d1457 0%, #1a237e 40%, #283593 100%);
}

.hero-slide-3 {
  background: linear-gradient(135deg, #311b92 0%, #1a237e 40%, #283593 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 15, 30, 0.92) 0%, rgba(10, 15, 30, 0.6) 60%, rgba(10, 15, 30, 0.3) 100%);
  z-index: 1;
}

.hero-decor {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-decor-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.04);
  animation: hero-rotate 25s linear infinite;
}

.hero-decor-circle:nth-child(1) {
  width: 600px;
  height: 600px;
  right: -100px;
  top: -100px;
}

.hero-decor-circle:nth-child(2) {
  width: 400px;
  height: 400px;
  right: 50px;
  top: 100px;
  animation-direction: reverse;
  animation-duration: 18s;
}

.hero-decor-circle:nth-child(3) {
  width: 200px;
  height: 200px;
  right: 200px;
  top: 200px;
  border-color: rgba(201, 168, 76, 0.1);
}

@keyframes hero-rotate {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.particle {
  position: absolute;
  background: rgba(201, 168, 76, 0.4);
  border-radius: 50%;
  animation: float-particle 6s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 750px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--secondary);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-title span {
  color: var(--secondary);
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 580px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-item h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}

.hero-stat-item p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--secondary);
  width: 30px;
  border-radius: 5px;
}

.slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.1rem;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.slider-nav-btn:hover {
  background: var(--secondary);
  color: var(--dark);
  border-color: var(--secondary);
}

#slider-prev {
  left: 30px;
}

#slider-next {
  right: 30px;
}

/* ============================================================
   HERO SPLIT SECTION — Image Slider Left + Text Right
   ============================================================ */
.hero-split-section {
  display: flex;
  min-height: 100vh;
  margin-top: -72px;
  overflow: hidden;
  position: relative;
  align-items: stretch;
}

/* ── LEFT: Image Slider Column ── */
.hero-slider-col {
  position: relative;
  width: 50%;
  flex-shrink: 0;
  overflow: hidden;
  min-height: 100vh;
  /* Container sets the height */
}

/* ALL slides are always position:absolute — they fill the container */
.hs-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  /* Only opacity + a subtle zoom animate — never change position */
  transition: opacity 1.2s ease;
  transform: scale(1.04);
  transition: opacity 1.2s ease, transform 7s ease;
}

/* Active slide: just make it visible, keep it absolute */
.hs-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hs-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(5, 10, 40, 0.15) 0%,
      rgba(5, 10, 40, 0.05) 60%,
      rgba(5, 10, 40, 0.4) 100%);
}

/* Slide label at bottom */
.hs-slide-label {
  position: absolute;
  bottom: 70px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(10, 15, 40, 0.72);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  z-index: 5;
}

.hs-slide-label i {
  color: var(--secondary);
}

/* Nav Buttons */
.hs-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.hs-nav-btn:hover {
  background: var(--secondary);
  color: var(--dark);
  border-color: var(--secondary);
}

.hs-prev {
  left: 16px;
}

.hs-next {
  right: 16px;
}

/* Dots */
.hs-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.hs-dot.active {
  background: var(--secondary);
  width: 24px;
  border-radius: 4px;
}

/* Progress bar */
.hs-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 10;
}

.hs-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--gradient-gold);
  border-radius: 0 2px 2px 0;
}

/* ── RIGHT: Content Column ── */
.hero-content-col {
  flex: 1;
  position: relative;
  background: linear-gradient(135deg, #060c2e 0%, #101e78 45%, #0d1357 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Blobs inside content col */
.hc-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.hc-blob-1 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(26, 35, 126, 0.55) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.hc-blob-2 {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.14) 0%, transparent 70%);
  bottom: -60px;
  left: 20px;
}

.hc-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-content-inner {
  position: relative;
  z-index: 5;
  padding: 100px 50px 60px 50px;
  max-width: 620px;
}

/* Title inside hero content */
.hc-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hc-highlight {
  color: var(--secondary);
  position: relative;
}

.hc-highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
  opacity: 0.45;
}

.hc-desc {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.85;
  margin-bottom: 30px;
}

.hc-desc strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

/* Initiative quick-link chips */
.hc-initiatives {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hc-init-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.82);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  text-decoration: none;
}

.hc-init-chip i {
  color: var(--secondary);
  font-size: 0.85rem;
}

.hc-init-chip:hover {
  background: rgba(201, 168, 76, 0.18);
  border-color: rgba(201, 168, 76, 0.4);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .hero-split-section {
    flex-direction: column;
    min-height: auto;
    margin-top: 0;
  }

  .hero-slider-col {
    width: 100%;
    min-height: 60vw !important;
    /* Override the 100vh for mobile */
    max-height: 480px;
  }

  /* No position overrides needed — slides are always absolute */
  .hero-content-col {
    padding: 0;
  }

  .hero-content-inner {
    padding: 50px 28px 60px;
    max-width: 100%;
  }

  .hc-title {
    font-size: clamp(1.8rem, 5vw, 2.6rem);
  }
}

@media (max-width: 575px) {
  .hero-content-inner {
    padding: 36px 20px 50px;
  }

  .hc-title {
    font-size: 1.9rem;
  }

  .hc-initiatives {
    gap: 8px;
  }

  .hc-init-chip {
    font-size: 0.72rem;
    padding: 6px 12px;
  }
}

/* ============================================================
   HERO SECTION V2 — 2-Column Full Viewport
   ============================================================ */
.hero-section-v2 {
  position: relative;
  min-height: 100vh;
  margin-top: -72px;
  /* Pull up to sit directly under fixed navbar */
  background: linear-gradient(135deg, #060c2e 0%, #101e78 45%, #0d1357 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Animated bg blobs */
.hv2-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: hv2-float 8s ease-in-out infinite alternate;
}

.hv2-blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26, 35, 126, 0.6) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  animation-delay: 0s;
}

.hv2-blob-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.18) 0%, transparent 70%);
  bottom: -80px;
  right: 200px;
  animation-delay: 2.5s;
}

.hv2-blob-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(57, 73, 171, 0.4) 0%, transparent 70%);
  top: 40%;
  left: -80px;
  animation-delay: 5s;
}

@keyframes hv2-float {
  from {
    transform: translateY(0) scale(1);
  }

  to {
    transform: translateY(-30px) scale(1.06);
  }
}

/* Subtle dot-grid overlay */
.hv2-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

/* Inner flex row */
.hv2-inner {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  min-height: 100vh;
}

/* ── LEFT COLUMN ── */
.hv2-left {
  flex: 1;
  max-width: 560px;
  padding: 40px 0;
}

.hv2-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.14);
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: #f0d080;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}

.hv2-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hv2-highlight {
  color: var(--secondary);
  position: relative;
}

.hv2-highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
  opacity: 0.5;
}

.hv2-desc {
  font-size: 0.975rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.85;
  margin-bottom: 32px;
}

.hv2-desc strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

/* CTA Buttons */
.hv2-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hv2-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, #c9a84c, #f0d080, #c9a84c);
  color: #0a0f1e;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 22px rgba(201, 168, 76, 0.35);
  text-decoration: none !important;
  background-size: 200% auto;
  position: relative;
  overflow: hidden;
}

.hv2-btn-primary:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(201, 168, 76, 0.5);
  color: #0a0f1e;
}

.hv2-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  text-decoration: none !important;
}

.hv2-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-3px);
  color: #fff;
}

/* Stats Row */
.hv2-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(12px);
}

.hv2-stat {
  flex: 1;
  text-align: center;
}

.hv2-stat-num {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}

.hv2-stat-lbl {
  display: block;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  font-weight: 600;
}

.hv2-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* ── RIGHT COLUMN ── */
.hv2-right {
  flex: 0 0 auto;
  width: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Visual wrapper — whole orbiting system */
.hv2-visual-wrap {
  position: relative;
  width: 420px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Animated rings */
.hv2-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 168, 76, 0.15);
  animation: hv2-spin 20s linear infinite;
}

.hv2-ring-outer {
  width: 420px;
  height: 420px;
  animation-duration: 28s;
}

.hv2-ring-mid {
  width: 310px;
  height: 310px;
  animation-duration: 20s;
  border-color: rgba(201, 168, 76, 0.22);
  animation-direction: reverse;
}

.hv2-ring-inner {
  width: 200px;
  height: 200px;
  animation-duration: 14s;
  border-color: rgba(201, 168, 76, 0.3);
}

@keyframes hv2-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* SVG justice illustration */
.hv2-main-icon {
  position: relative;
  z-index: 5;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.01) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow:
    0 0 0 1px rgba(201, 168, 76, 0.2),
    0 0 60px rgba(201, 168, 76, 0.12),
    inset 0 0 40px rgba(201, 168, 76, 0.05);
  animation: hv2-pulse 4s ease-in-out infinite;
}

@keyframes hv2-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.2), 0 0 60px rgba(201, 168, 76, 0.12), inset 0 0 40px rgba(201, 168, 76, 0.05);
  }

  50% {
    box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.35), 0 0 90px rgba(201, 168, 76, 0.22), inset 0 0 60px rgba(201, 168, 76, 0.10);
  }
}

/* Floating achievement cards */
.hv2-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 14px;
  padding: 10px 14px;
  z-index: 10;
  white-space: nowrap;
  animation: hv2-card-float 5s ease-in-out infinite alternate;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hv2-card-1 {
  top: 20px;
  left: -30px;
  animation-delay: 0s;
}

.hv2-card-2 {
  top: 20px;
  right: -30px;
  animation-delay: 1.2s;
}

.hv2-card-3 {
  bottom: 80px;
  left: -30px;
  animation-delay: 0.6s;
}

.hv2-card-4 {
  bottom: 20px;
  right: -30px;
  animation-delay: 1.8s;
}

@keyframes hv2-card-float {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-10px);
  }
}

.hv2-fc-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.hv2-fc-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.hv2-fc-sub {
  font-size: 0.66rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

/* Scroll hint at bottom */
.hv2-scroll-hint {
  position: absolute;
  bottom: -56px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.hv2-scroll-arrow {
  width: 28px;
  height: 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  animation: hv2-bounce 1.6s ease-in-out infinite;
}

@keyframes hv2-bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

/* ── HERO V2 RESPONSIVE ── */
@media (max-width: 1100px) {
  .hv2-inner {
    padding: 0 24px;
    gap: 30px;
  }

  .hv2-right {
    width: 380px;
  }

  .hv2-visual-wrap {
    width: 360px;
    height: 360px;
  }

  .hv2-ring-outer {
    width: 360px;
    height: 360px;
  }

  .hv2-ring-mid {
    width: 265px;
    height: 265px;
  }

  .hv2-ring-inner {
    width: 170px;
    height: 170px;
  }
}

@media (max-width: 860px) {
  .hv2-inner {
    flex-direction: column;
    justify-content: center;
    padding: 100px 24px 60px;
    min-height: auto;
    gap: 50px;
  }

  .hv2-left {
    max-width: 100%;
    text-align: center;
  }

  .hv2-badge {
    margin: 0 auto 20px;
  }

  .hv2-cta {
    justify-content: center;
  }

  .hv2-right {
    width: 100%;
  }

  .hv2-visual-wrap {
    width: 320px;
    height: 320px;
    margin: 0 auto;
  }

  .hv2-ring-outer {
    width: 320px;
    height: 320px;
  }

  .hv2-ring-mid {
    width: 235px;
    height: 235px;
  }

  .hv2-ring-inner {
    width: 150px;
    height: 150px;
  }

  .hv2-card-1 {
    left: 0;
    top: 10px;
  }

  .hv2-card-3 {
    left: 0;
    bottom: 60px;
  }

  .hv2-card-2 {
    right: 0;
    top: 10px;
  }

  .hv2-card-4 {
    right: 0;
    bottom: 10px;
  }
}

@media (max-width: 480px) {
  .hv2-stats {
    gap: 0;
  }

  .hv2-title {
    font-size: 2rem;
  }

  .hv2-float-card {
    padding: 8px 10px;
    gap: 7px;
  }

  .hv2-fc-title {
    font-size: 0.72rem;
  }

  .hv2-fc-sub {
    font-size: 0.6rem;
  }

  .hv2-fc-icon {
    width: 30px;
    height: 30px;
    font-size: 0.85rem;
  }
}

/* ============================================================
   MARQUEE TICKER
   ============================================================ */
.news-ticker {
  background: var(--secondary);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-label {
  background: var(--primary);
  color: var(--white);
  padding: 4px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 3px;
  margin-right: 20px;
  flex-shrink: 0;
}

.ticker-inner {
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ticker-track {
  display: inline-flex;
  gap: 50px;
  animation: ticker-scroll 30s linear infinite;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}

.ticker-track span::before {
  content: '◆ ';
  color: var(--primary);
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ============================================================
   LEADERSHIP SECTION
   ============================================================ */
.leadership-section {
  background: var(--off-white);
}

.leader-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.leader-card-top {
  background: var(--gradient-primary);
  padding: 30px 20px 60px;
  text-align: center;
  position: relative;
}

.leader-card-top::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--white);
  border-radius: 50% 50% 0 0;
}

.leader-photo-wrap {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 4px solid var(--secondary);
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  z-index: 2;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.leader-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-rank-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--secondary);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 1px;
}

.leader-card-body {
  padding: 20px 25px 30px;
  text-align: center;
}

.leader-role {
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.leader-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.leader-message {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
  font-style: italic;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  padding-top: 14px;
  position: relative;
}

.leader-message::before {
  content: '"';
  font-size: 3rem;
  color: var(--secondary);
  opacity: 0.3;
  position: absolute;
  top: -10px;
  left: 0;
  line-height: 1;
  font-family: Georgia, serif;
}

/* ============================================================
   SENIOR OFFICIALS SECTION
   ============================================================ */
.officials-section {
  background: var(--white);
}

.official-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--border-radius);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.official-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: var(--transition);
}

.official-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 168, 76, 0.2);
}

.official-card:hover::before {
  transform: scaleX(1);
}

.official-photo {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  border: 3px solid var(--secondary);
  margin: 0 auto 15px;
  overflow: hidden;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
}

.official-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.official-role {
  font-size: 0.75rem;
  color: var(--secondary);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.official-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-light);
  background: var(--off-white);
  padding: 5px 12px;
  border-radius: 50px;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  background: var(--white);
}

.about-img-wrap {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.about-img-main {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-badge {
  position: absolute;
  bottom: 30px;
  right: -15px;
  background: var(--gradient-gold);
  color: var(--dark);
  padding: 18px 24px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.about-img-badge h3 {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.about-img-badge p {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 3px;
}

.about-img-badge2 {
  position: absolute;
  top: 30px;
  left: -15px;
  background: var(--primary);
  color: var(--white);
  padding: 15px 20px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: 0 8px 30px rgba(26, 35, 126, 0.5);
}

.about-img-badge2 i {
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 5px;
  display: block;
}

.about-img-badge2 p {
  font-size: 0.72rem;
  font-weight: 600;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(26, 35, 126, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--primary);
  flex-shrink: 0;
}

.feature-text h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.feature-text p {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ============================================================
   MISSION VISION SECTION
   ============================================================ */
.mv-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.mv-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(26, 35, 126, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(201, 168, 76, 0.1) 0%, transparent 60%);
}

.mv-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 40px 32px;
  text-align: center;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
  transition: var(--transition);
  height: 100%;
}

.mv-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(201, 168, 76, 0.3);
}

.mv-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-gold);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--dark);
  margin: 0 auto 24px;
  box-shadow: var(--shadow-gold);
}

.mv-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.mv-card p {
  font-size: 0.925rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.mv-card ul {
  text-align: left;
  margin-top: 16px;
}

.mv-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.mv-card ul li i {
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ============================================================
   IMPACT COUNTERS
   ============================================================ */
.impact-section {
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.impact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.impact-card {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 40px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.impact-card:last-child {
  border-right: none;
}

.impact-icon {
  font-size: 2.8rem;
  color: var(--secondary);
  margin-bottom: 16px;
  display: block;
}

.impact-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.impact-number span {
  color: var(--secondary);
}

.impact-label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* ============================================================
   EVENTS SECTION
   ============================================================ */
.events-section {
  background: var(--off-white);
}

.event-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.event-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.3);
}

.event-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-date-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--secondary);
  color: var(--dark);
  padding: 8px 14px;
  border-radius: 10px;
  text-align: center;
  font-weight: 800;
  min-width: 60px;
}

.event-date-badge .day {
  font-size: 1.6rem;
  line-height: 1;
}

.event-date-badge .month {
  font-size: 0.68rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.event-cat {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(26, 35, 126, 0.85);
  color: var(--white);
  font-size: 0.72rem;
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 600;
  backdrop-filter: blur(5px);
}

.event-body {
  padding: 22px;
}

.event-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 0.78rem;
  color: var(--text-light);
}

.event-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.event-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.event-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

.event-footer {
  padding: 14px 22px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.event-read-more {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 5px;
}

.event-read-more:hover {
  color: var(--secondary);
  gap: 10px;
}

/* ============================================================
   DONATION CTA SECTION
   ============================================================ */
.donate-cta-section {
  background: var(--gradient-gold);
  position: relative;
  overflow: hidden;
}

.donate-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.2), transparent 60%);
}

.donate-cta-content {
  position: relative;
  z-index: 2;
}

.donate-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}

.donate-cta-desc {
  font-size: 1.05rem;
  color: rgba(10, 12, 30, 0.7);
  margin-bottom: 32px;
}

.btn-donate-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dark);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
}

.btn-donate-cta:hover {
  background: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: var(--white);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--white);
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 0 20px;
}

.testimonial-inner {
  background: var(--off-white);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  text-align: center;
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-inner::before {
  content: '"';
  font-size: 6rem;
  color: var(--primary);
  opacity: 0.08;
  position: absolute;
  top: 10px;
  left: 30px;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-stars {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.testimonial-quote {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid var(--secondary);
  overflow: hidden;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
}

.testimonial-info h5 {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.testimonial-info span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dot.active {
  background: var(--secondary);
  width: 28px;
  border-radius: 5px;
}

/* ============================================================
   GALLERY PREVIEW
   ============================================================ */
.gallery-section {
  background: var(--off-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 12px;
}

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(2) {
  grid-column: span 2;
}

.gallery-item-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.2);
}

.gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(26, 35, 126, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  gap: 8px;
}

.gallery-item:hover .gallery-hover {
  opacity: 1;
}

.gallery-hover i {
  font-size: 2rem;
  color: var(--secondary);
}

.gallery-hover span {
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 600;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(26, 35, 126, 0.5) 0%, transparent 70%);
}

.newsletter-content {
  position: relative;
  z-index: 2;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-family: var(--font-main);
  transition: var(--transition);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--secondary);
  background: rgba(255, 255, 255, 0.1);
}

.newsletter-btn {
  background: var(--gradient-gold);
  color: var(--dark);
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ============================================================
   FOOTER
   ============================================================ */
.main-footer {
  background: var(--dark);
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}

.main-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 0%, rgba(26, 35, 126, 0.25) 0%, transparent 50%);
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 14px 0 14px;
}

.footer-brand-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--dark);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 12px;
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-links a i {
  font-size: 0.7rem;
}

.footer-contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.footer-contact-icon {
  width: 38px;
  height: 38px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.footer-contact-text p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1px;
}

.footer-contact-text a,
.footer-contact-text span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-text a:hover {
  color: var(--secondary);
}

.footer-bottom {
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links a:hover {
  color: var(--secondary);
}

/* ============================================================
   MEMBERSHIP PAGE
   ============================================================ */
.membership-form-section {
  background: var(--off-white);
}

.form-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.form-card-header {
  background: var(--gradient-primary);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.form-card-header i {
  font-size: 2rem;
  color: var(--secondary);
}

.form-card-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.form-card-header p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.form-card-body {
  padding: 36px;
}

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

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: block;
}

.form-label span {
  color: var(--accent);
}

.form-control-custom {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
}

.form-control-custom:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(26, 35, 126, 0.1);
}

.form-control-custom::placeholder {
  color: var(--text-light);
}

select.form-control-custom {
  cursor: pointer;
}

textarea.form-control-custom {
  resize: vertical;
  min-height: 100px;
}

.upload-area {
  border: 2px dashed rgba(26, 35, 126, 0.2);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.upload-area:hover {
  border-color: var(--primary);
  background: rgba(26, 35, 126, 0.03);
}

.upload-area i {
  font-size: 2rem;
  color: var(--primary);
  opacity: 0.5;
  margin-bottom: 10px;
  display: block;
}

.upload-area p {
  font-size: 0.875rem;
  color: var(--text-light);
}

.upload-area strong {
  color: var(--primary);
}

.upload-area input[type=file] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.form-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(26, 35, 126, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.membership-plan-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.plan-card {
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.plan-card.selected,
.plan-card:hover {
  border-color: var(--primary);
  background: rgba(26, 35, 126, 0.04);
}

.plan-card input[type=radio] {
  display: none;
}

.plan-name {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.plan-price {
  color: var(--secondary);
  font-weight: 800;
  font-size: 1.3rem;
}

.plan-duration {
  font-size: 0.75rem;
  color: var(--text-light);
}

.alert-box {
  padding: 16px 20px;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
}

.alert-success {
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.alert-success i {
  color: #4caf50;
}

.alert-pending {
  background: rgba(255, 152, 0, 0.1);
  border: 1px solid rgba(255, 152, 0, 0.3);
}

.alert-pending i {
  color: #ff9800;
}

/* ============================================================
   DONATION PAGE
   ============================================================ */
.donate-hero-section {
  background: var(--gradient-primary);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.qr-section {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
}

.qr-placeholder {
  width: 200px;
  height: 200px;
  background: var(--off-white);
  border: 2px dashed rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.5;
}

.payment-methods {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 24px;
}

.payment-method-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}

.payment-method-btn.active,
.payment-method-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(26, 35, 126, 0.04);
}

.amount-quick {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.amount-btn {
  padding: 8px 20px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}

.amount-btn.active,
.amount-btn:hover {
  border-color: var(--secondary);
  background: rgba(201, 168, 76, 0.08);
  color: var(--secondary-dark);
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 22px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  color: var(--text-dark);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-full-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.2);
}

.gallery-full-item .gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 15, 30, 0.9) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.gallery-full-item:hover .gal-overlay {
  opacity: 1;
}

.gal-overlay-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.gal-overlay-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  font-size: 2rem;
  color: var(--secondary);
  opacity: 0;
  transition: var(--transition);
}

.gallery-full-item:hover .gal-overlay-zoom {
  opacity: 1;
  transform: translate(-50%, -50%);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: var(--secondary);
  color: var(--dark);
}

/* ============================================================
   TEAM PAGE
   ============================================================ */
.team-section {
  background: var(--off-white);
}

.team-level-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.team-level-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.12), transparent);
}

.team-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.team-card.national::before {
  background: var(--gradient-gold);
}

.team-card.state::before {
  background: var(--gradient-primary);
}

.team-card.district::before {
  background: linear-gradient(135deg, #4caf50, #2e7d32);
}

.team-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid transparent;
  background-clip: padding-box;
  margin: 0 auto 16px;
  overflow: hidden;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.team-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.8rem;
  color: var(--secondary);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.team-state {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.team-contact {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.team-contact a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: var(--text-body);
  transition: var(--transition);
}

.team-contact a:hover {
  background: var(--primary);
  color: var(--white);
}

/* ============================================================
   CERTIFICATES PAGE
   ============================================================ */
.cert-section {
  background: var(--off-white);
}

.cert-verify-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 50px;
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 550px;
  margin: 0 auto;
}

.cert-icon {
  font-size: 3.5rem;
  color: var(--secondary);
  margin-bottom: 20px;
  animation: pulse-glow 2s ease-in-out infinite;
}

.cert-result {
  background: var(--off-white);
  border-radius: var(--border-radius);
  padding: 24px;
  margin-top: 24px;
  text-align: left;
  display: none;
}

.cert-result.show {
  display: block;
}

.cert-result-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.875rem;
}

.cert-result-row:last-child {
  border-bottom: none;
}

.cert-result-label {
  color: var(--text-light);
  font-weight: 500;
}

.cert-result-value {
  color: var(--text-dark);
  font-weight: 700;
}

.cert-status-valid {
  color: #4caf50;
  font-weight: 700;
}

.cert-status-invalid {
  color: var(--accent);
  font-weight: 700;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  background: var(--off-white);
}

.contact-info-card {
  background: var(--gradient-primary);
  border-radius: var(--border-radius-lg);
  padding: 40px 36px;
  color: var(--white);
  height: 100%;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--secondary);
  flex-shrink: 0;
}

.contact-info-text h5 {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.contact-info-text p,
.contact-info-text a {
  font-size: 0.95rem;
  color: var(--white);
}

.contact-info-text a:hover {
  color: var(--secondary);
}

.contact-map-frame {
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 200px;
  margin-top: 24px;
  background: var(--dark-3);
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

/* ============================================================
   LOGIN / SIGNUP PAGES
   ============================================================ */
.auth-page {
  min-height: 100vh;
  background: var(--gradient-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  position: relative;
  overflow: hidden;
}

.auth-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(26, 35, 126, 0.5) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(201, 168, 76, 0.1) 0%, transparent 60%);
}

.auth-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 48px 44px;
  width: 100%;
  max-width: 480px;
  backdrop-filter: blur(20px);
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.auth-logo {
  text-align: center;
  margin-bottom: 32px;
}

.auth-logo-icon {
  width: 72px;
  height: 72px;
  background: var(--gradient-gold);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--dark);
  margin: 0 auto 16px;
  box-shadow: var(--shadow-gold);
}

.auth-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.auth-sub {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

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

.auth-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.auth-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 13px 18px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: var(--font-main);
  transition: var(--transition);
}

.auth-input:focus {
  outline: none;
  border-color: var(--secondary);
  background: rgba(255, 255, 255, 0.1);
}

.auth-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.auth-divider {
  text-align: center;
  margin: 20px 0;
  position: relative;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.82rem;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 42%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.auth-divider::before {
  left: 0;
}

.auth-divider::after {
  right: 0;
}

.auth-link {
  text-align: center;
  margin-top: 20px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.auth-link a {
  color: var(--secondary);
  font-weight: 600;
}

.auth-link a:hover {
  text-decoration: underline;
}

.input-group-icon {
  position: relative;
}

.input-group-icon .auth-input {
  padding-left: 48px;
}

.input-group-icon .input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.95rem;
}

.input-toggle-pass {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  font-size: 0.95rem;
  transition: var(--transition);
}

.input-toggle-pass:hover {
  color: var(--secondary);
}

/* ============================================================
   ABOUT PAGE EXTRAS
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}

.value-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-bottom-color: var(--secondary);
}

.value-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}

.value-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.value-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
}

.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.timeline-item {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-item::before {
  content: attr(data-year);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
  top: 10px;
  white-space: nowrap;
  z-index: 2;
}

.timeline-content {
  width: calc(50% - 35px);
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.timeline-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* ============================================================
   EVENTS PAGE
   ============================================================ */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.event-card-lg {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.event-card-lg:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {

  /* hamburger + mobile panel handled in navbar.css */
  .hero-stats {
    gap: 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-item:nth-child(2) {
    grid-column: span 2;
  }

  .impact-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    flex-direction: column;
    padding-left: 70px;
  }

  .timeline-item:nth-child(even) {
    flex-direction: column;
  }

  .timeline-item::before {
    left: 30px;
  }

  .timeline-content {
    width: 100%;
  }

  .membership-plan-cards {
    grid-template-columns: 1fr 1fr;
  }

  /* Page hero margin-top synced with navbar height */
  .page-hero {
    margin-top: 64px;
  }

  .hero-slider {
    margin-top: 64px;
  }
}

@media (max-width: 767px) {
  .section-pad {
    padding: 60px 0;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero-stat-item {
    flex: 1;
    min-width: 120px;
  }

  .navbar-top-bar {
    display: none;
  }

  .hero-title {
    font-size: 2rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-input {
    border-radius: 10px;
  }

  .newsletter-btn {
    border-radius: 10px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 1;
  }

  .gallery-item:nth-child(2) {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .auth-card {
    padding: 32px 24px;
  }

  .form-card-body {
    padding: 24px;
  }

  .membership-plan-cards {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 24px;
  }

  .cert-verify-card {
    padding: 32px 24px;
  }

  #slider-prev,
  #slider-next {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
  }

  .btn-primary-gold,
  .btn-outline-white,
  .btn-primary-blue {
    width: 100%;
    justify-content: center;
  }

  .payment-methods {
    flex-direction: column;
  }

  .amount-quick {
    gap: 8px;
  }
}

/* ============================================================
   ANIMATION KEYFRAMES
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float-particle {

  0%,
  100% {
    transform: translateY(0) translateX(0);
    opacity: 0.4;
  }

  33% {
    transform: translateY(-15px) translateX(5px);
    opacity: 0.8;
  }

  66% {
    transform: translateY(10px) translateX(-5px);
    opacity: 0.6;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* AOS Custom */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-left"] {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-left"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

[data-aos="fade-right"] {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-right"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

[data-aos="zoom-in"] {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="zoom-in"].aos-animate {
  opacity: 1;
  transform: scale(1);
}

/* ============================================================
   EVENTS PREMIUM SECTION
   ============================================================ */
.event-item-premium {
  display: flex;
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  gap: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  position: relative;
  align-items: center;
}

.event-item-premium:hover {
  transform: translateX(10px);
  border-color: var(--secondary-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.event-date-box {
  background: var(--primary);
  color: var(--white);
  min-width: 75px;
  height: 85px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.event-date-box .day {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.event-date-box .month {
  font-size: 0.75rem;
  font-weight: 700;
  opacity: 0.8;
  margin-top: 2px;
}

.event-details {
  flex-grow: 1;
}

.event-type-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(26, 35, 126, 0.08);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 50px;
}

.event-status {
  font-size: 0.65rem;
  color: #4caf50;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.event-status i {
  font-size: 5px;
}

.event-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 6px 0;
}

.event-meta {
  display: flex;
  gap: 15px;
  font-size: 0.8rem;
  color: var(--text-light);
}

.event-meta span i {
  color: var(--secondary);
}

.event-link {
  width: 35px;
  height: 35px;
  background: var(--off-white);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.event-item-premium:hover .event-link {
  background: var(--secondary);
  color: var(--dark);
}

/* ============================================================
   NEW INDEX SECTIONS (Impact, Gallery Mosaic, Etc)
   ============================================================ */
.img-mosaic {
  position: relative;
  height: 450px;
}

.mosaic-item {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid #fff;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.m1 {
  width: 80%;
  height: 350px;
  top: 0;
  left: 0;
  z-index: 1;
}

.m2 {
  width: 60%;
  height: 250px;
  bottom: 0;
  right: 0;
  z-index: 2;
}

.mosaic-info {
  position: absolute;
  top: 40%;
  right: 10%;
  z-index: 3;
  background: var(--secondary);
  color: var(--dark);
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.icon-box-sm {
  width: 50px;
  height: 50px;
  background: rgba(26, 35, 126, 0.1);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.gallery-card-simple {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: 250px;
}

.gallery-card-simple img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-card-simple:hover .g-overlay {
  opacity: 1;
}

.gallery-card-simple:hover img {
  transform: scale(1.1);
}

.g-overlay span {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-mega-box {
  border-color: rgba(0, 0, 0, 0.05) !important;
}

.testi-card-v2 {
  transition: transform 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.testi-card-v2:hover {
  transform: translateY(-10px);
  background: #fff !important;
  box-shadow: var(--shadow);
}

@media (max-width: 991px) {
  .img-mosaic {
    height: 350px;
    margin-top: 40px;
  }

  .m1 {
    height: 300px;
  }

  .m2 {
    height: 200px;
  }
}

/* ============================================================
   HERO ENHANCEMENTS v2 (FIXED VISIBILITY)
   ============================================================ */
.hero-trust-box-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.trust-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 15px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.trust-box:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--secondary);
  transform: translateY(-3px);
}

.trust-box i {
  font-size: 1.4rem;
  color: var(--secondary) !important;
}

.trust-box .t-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: left;
}

.trust-box .t-text strong {
  color: #ffffff !important;
  font-size: 0.82rem;
  font-weight: 700;
}

.trust-box .t-text span {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.62rem;
  text-transform: uppercase;
  font-weight: 600;
}

/* Fixed Slider Nav Buttons from being too large */
.hs-nav-btn {
  width: 42px !important;
  height: 42px !important;
  font-size: 0.9rem !important;
  background: rgba(10, 15, 40, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  opacity: 0.7;
}

.hs-nav-btn:hover {
  opacity: 1;
  background: var(--secondary) !important;
  color: var(--dark) !important;
}

@media (max-width: 575px) {
  .hero-trust-box-row {
    gap: 8px;
  }

  .trust-box {
    padding: 8px 12px;
    flex: 1 1 140px;
  }
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-2px);
  color: #fff;
}

/* ============================================================
   NEW PHOTO GALLERY MASONRY (INDEX)
   ============================================================ */
.gallery-masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 15px;
}

.gm-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.gm-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gm-item:hover img {
  transform: scale(1.1);
}

.gm-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 35, 126, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  backdrop-filter: blur(3px);
}

.gm-item:hover .gm-overlay {
  opacity: 1;
}

.gm-overlay i {
  font-size: 2rem;
  color: var(--secondary);
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.gm-item:hover .gm-overlay i {
  transform: translateY(0);
}

.gm-overlay span {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.1s;
}

.gm-item:hover .gm-overlay span {
  transform: translateY(0);
}

/* Span classes for masonry look */
.gm-wide {
  grid-column: span 2;
}

.gm-tall {
  grid-row: span 2;
}

@media (max-width: 991px) {
  .gallery-masonry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gm-tall {
    grid-row: span 1;
  }
}

@media (max-width: 575px) {
  .gallery-masonry-grid {
    grid-template-columns: 1fr;
  }

  .gm-wide {
    grid-column: span 1;
  }
}