.focus-card {
  display: flex;
  flex-direction: column;
}
/* ============================================================
   16. About Page
   ============================================================ */

/* Mission & Vision */
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.mission-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
}

.mission-card h2 {
  color: var(--white);
  margin: 1rem 0 0.75rem;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
}

.mission-card p {
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  margin: 0;
}

.mission-icon {
  width: 64px;
  height: 64px;
  background: rgba(200,151,26,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--secondary);
  margin: 0 auto;
}

/* Founder Signature */
.founder-sig {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.founder-sig strong {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--primary);
}

.founder-sig span {
  font-size: 0.88rem;
  color: var(--text-light);
  font-family: var(--font-ui);
}

@media (max-width: 768px) {
  .mission-vision-grid { grid-template-columns: 1fr; }
}

/*---------------*/
/* ============================================================
   Focus Areas — Image Strip Design (fa-strip-*)
   Add this block to custom.css (does NOT touch old .focus-grid/.focus-card)
   ============================================================ */

.fa-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.fa-strip-card {
  display: block;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.fa-strip-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.fa-strip-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.fa-strip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.fa-strip-card:hover .fa-strip-img img {
  transform: scale(1.06);
}

.fa-strip-band {
  padding: 0.9rem 0.75rem;
  text-align: center;
}

.fa-strip-band h3 {
  margin: 0;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.3;
}

.fa-strip-navy {
  background: var(--primary);
}

.fa-strip-gold {
  background: var(--secondary);
}

.fa-strip-green {
  background: var(--accent);
}

/* ---------------- Responsive ---------------- */
@media (max-width: 991px) {
  .fa-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .fa-strip-grid {
    grid-template-columns: 1fr;
  }
}
.value-icon-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin: 0 auto 0.5rem;
  display: block;
}

/* ================================================================= */

.hero-fullbg {
  min-height: 92vh;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--primary-dark); 
  overflow: hidden;
}

/* BG image layer */
.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(13, 27, 55, 0.88) 0%,
    rgba(13, 27, 55, 0.75) 45%,
    rgba(13, 27, 55, 0.30) 75%,
    rgba(13, 27, 55, 0.10) 100%
  );
}

/* Move pattern above overlay */
.hero-fullbg .hero-pattern {
  z-index: 2;
}

/* Container sits above overlay */
.hero-fullbg .container {
  position: relative;
  z-index: 3;
}

.hero-inner-fullbg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-end;
  gap: 2rem;
  padding: 6rem 0 5rem;
  min-height: 80vh;
  position: relative;
}

/* Content column */
.hero-inner-fullbg .hero-content {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  max-width: 620px;
}

/* Stat card — bottom right */
.hero-stat-card {
  grid-column: 2;
  grid-row: 1;
  align-self: flex-end;
  justify-self: flex-end;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  min-width: 220px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  margin-bottom: 1rem;
}

.hero-stat-icon {
  width: 52px;
  height: 52px;
  background: rgba(200, 151, 26, 0.22);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--secondary-light);
  flex-shrink: 0;
}

.hero-stat-card .number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.hero-stat-card .label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.80);
  margin-top: 0.25rem;
  line-height: 1.4;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero-inner-fullbg {
    grid-template-columns: 1fr;
    padding: 5rem 0 4.5rem;
    min-height: auto;
  }

  .hero-inner-fullbg .hero-content {
    grid-column: 1;
    max-width: 100%;
  }

  .hero-stat-card {
    grid-column: 1;
    justify-self: flex-start;
    margin-top: 2rem;
    margin-bottom: 0;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(13, 27, 55, 0.80) 0%,
      rgba(13, 27, 55, 0.65) 100%
    );
  }
}
/*--------------*/
@media (max-width: 768px) {
  .hero-fullbg {
    min-height: auto;
  }

  .hero-inner-fullbg {
    padding: 4rem 0 4rem;
  }

  .hero-bg-img img {
    object-position: 65% center; 
  }

  .hero-stat-card {
    display: none; 
  }
}
/* ================================================================ */

.mvv-card-bg {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border: none !important;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 !important;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.mvv-card-bg:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
}

/* Dark gradient overlay — bottom heavy so text is readable */
.mvv-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(13, 27, 55, 0.28) 0%,
    rgba(13, 27, 55, 0.62) 45%,
    rgba(13, 27, 55, 0.93) 100%
  );
  transition: background 0.35s ease;
}

.mvv-card-bg:hover .mvv-card-overlay {
  background: linear-gradient(
    180deg,
    rgba(13, 27, 55, 0.12) 0%,
    rgba(13, 27, 55, 0.52) 40%,
    rgba(13, 27, 55, 0.88) 100%
  );
}

/* Content sits above overlay */
.mvv-card-inner {
  position: relative;
  z-index: 2;
  padding: 2.2rem 2rem;
  text-align: left;
}

/* Icon */
.mvv-card-bg .mvv-icon {
  width: 56px;
  height: 56px;
  background: rgba(200, 151, 26, 0.20);
  border: 2px solid rgba(200, 151, 26, 0.50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1.2rem 0;
  font-size: 1.4rem;
  color: var(--secondary-light);
  transition: background 0.3s ease, transform 0.3s ease;
}

.mvv-card-bg:hover .mvv-icon {
  background: rgba(200, 151, 26, 0.35);
  transform: scale(1.08);
}

/* Heading */
.mvv-card-bg h3 {
  color: var(--white) !important;
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

/* Paragraph */
.mvv-card-bg p {
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 0.91rem;
  line-height: 1.75;
  margin: 0;
}

/* Gold divider */
.divider-white {
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
  border-radius: var(--radius-full);
  margin: 0.5rem 0 1.1rem 0;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .mvv-card-bg {
    min-height: 360px;
  }
}

@media (max-width: 768px) {
  .mvv-card-bg {
    min-height: 300px;
  }
  .mvv-card-inner {
    padding: 1.8rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .mvv-card-bg {
    min-height: 280px;
  }
}
/* ================================ */

.stats-section-v2 {
  background: linear-gradient(135deg, #0d1b37 0%, var(--primary-dark) 40%, #1a3a6b 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

/* Decorative background circles */
.stats-decor-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.stats-decor-1 {
  width: 400px;
  height: 400px;
  top: -180px;
  right: -100px;
  background: radial-gradient(circle, rgba(200,151,26,0.10) 0%, transparent 70%);
}

.stats-decor-2 {
  width: 300px;
  height: 300px;
  bottom: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(46,125,50,0.10) 0%, transparent 70%);
}

/* Heading row */
.stats-section-v2 .stats-heading-row {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.stats-tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary-light);
  background: rgba(200, 151, 26, 0.12);
  border: 1px solid rgba(200, 151, 26, 0.28);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.stats-section-v2 .stats-heading-row h2 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin: 0;
}

/* Grid */
.stats-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

/* Stat Card */
.stat-item-v2 {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.5rem 2rem;
  text-align: center;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}


.stat-item-v2:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(200, 151, 26, 0.35);
  transform: translateY(-5px);
}

.stat-item-v2:hover::before {
  width: 70px;
}

/* Icon wrap */
.stat-icon-wrap {
  width: 58px;
  height: 58px;
  background: rgba(200, 151, 26, 0.14);
  border: 1px solid rgba(200, 151, 26, 0.30);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.4rem;
  color: var(--secondary-light);
  transition: background 0.3s ease, transform 0.3s ease;
}

.stat-item-v2:hover .stat-icon-wrap {
  background: rgba(200, 151, 26, 0.25);
  transform: scale(1.08);
}

/* Number */
.stat-item-v2 .stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
}

/* Label */
.stat-item-v2 .stat-label {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--secondary-light);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  margin-bottom: 0.6rem;
}

/* Description */
.stat-desc {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .stats-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}

@media (max-width: 768px) {
  .stats-section-v2 {
    padding: 55px 0;
  }

  .stats-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-item-v2 {
    padding: 1.8rem 1.2rem 1.5rem;
  }

  .stat-desc {
    display: none;
  }
}

@media (max-width: 480px) {
  .stats-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item-v2 {
    padding: 1.5rem 1rem;
  }
}



/* ============================================================
   4. Focus Areas —
   ============================================================ */
.fa-warm-section {
  background-color: #F5EFE6 !important;
}

.fa-warm-tag {
  color: #8B6914 !important;
  background: rgba(200, 151, 26, 0.12) !important;
  border-color: rgba(200, 151, 26, 0.30) !important;
}

.fa-warm-heading {
  color: #2C2416 !important;
}

.fa-warm-subtext {
  color: #5C4A2A !important;
}

.fa-warm-card {
  border-radius: 16px !important;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(44, 36, 22, 0.10) !important;
}

.fa-warm-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 12px 36px rgba(44, 36, 22, 0.18) !important;
}

.fa-warm-btn {
  background: #2C2416 !important;
  color: #F5EFE6 !important;
  border-color: #2C2416 !important;
}

.fa-warm-btn:hover {
  background: #C8971A !important;
  border-color: #C8971A !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 151, 26, 0.35) !important;
}

/* Individual strip colors per card */
.fa-warm-section .fa-strip-grid .fa-strip-card:nth-child(1) .fa-strip-band { background: #1B3A6B; }
.fa-warm-section .fa-strip-grid .fa-strip-card:nth-child(2) .fa-strip-band { background: #2E7D32; }
.fa-warm-section .fa-strip-grid .fa-strip-card:nth-child(3) .fa-strip-band { background: #C8971A; }
.fa-warm-section .fa-strip-grid .fa-strip-card:nth-child(4) .fa-strip-band { background: #6B3FA0; }
.fa-warm-section .fa-strip-grid .fa-strip-card:nth-child(5) .fa-strip-band { background: #C0392B; }
.fa-warm-section .fa-strip-grid .fa-strip-card:nth-child(6) .fa-strip-band { background: #1A7A8A; }
.fa-warm-section .fa-strip-grid .fa-strip-card:nth-child(7) .fa-strip-band { background: #D35400; }
.fa-warm-section .fa-strip-grid .fa-strip-card:nth-child(8) .fa-strip-band { background: #2C3E50; }

.fa-warm-section .fa-strip-grid .fa-strip-band h3 {
  color: #ffffff !important;
}

/* ======================================================= */

/* ── Impact Section ── */
.impact-section-new {
  background: linear-gradient(160deg, #e8f5f3 0%, #f0faf8 40%, #eaf4f7 100%);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}

.impact-section-new::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(46,125,50,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.impact-section-new::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(27,58,107,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Story Banner ── */
.impact-story-banner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 2.5rem 2.5rem 1.8rem;
  box-shadow: 0 6px 32px rgba(27,58,107,0.09);
  margin-bottom: 3.5rem;
  position: relative;
  overflow: hidden;
}

.impact-story-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
}

.impact-story-img-wrap {
  position: relative;
}

.impact-story-img-wrap img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 14px;
}

.impact-story-img-badge {
  position: absolute;
  bottom: -12px; right: -12px;
  background: var(--secondary);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.45rem 0.9rem;
  border-radius: 20px;
  letter-spacing: 0.04em;
  box-shadow: 0 3px 12px rgba(200,151,26,0.35);
}

.impact-story-content {
  padding-right: 0.5rem;
}

.impact-story-content .story-tag {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(46,125,50,0.10);
  padding: 0.28rem 0.8rem;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.impact-story-content h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.impact-story-content p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.impact-story-stats {
  display: flex;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.impact-story-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.impact-story-stat img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: none;
}

.impact-story-stat span {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1.3;
  max-width: 70px;
}

/* ── Impact Cards Grid ── */
.impact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.impact-card-new {
  background: #fff;
  border-radius: 16px;
  padding: 1.6rem 1.3rem 1.5rem;
  text-align: center;
  border: 1.5px solid rgba(27,58,107,0.07);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.impact-card-new::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.impact-card-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(27,58,107,0.12);
  border-color: rgba(27,58,107,0.14);
}

.impact-card-new:hover::after {
  transform: scaleX(1);
}

.impact-icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, rgba(232,245,243,0.9), rgba(240,250,248,1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.impact-card-new:hover .impact-icon-wrap {
  background: linear-gradient(135deg, rgba(46,125,50,0.12), rgba(27,58,107,0.08));
}

.impact-icon-wrap img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.impact-card-new h3 {
  font-family: var(--font-ui);
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.45rem;
  line-height: 1.3;
}

.impact-card-new p {
  font-size: 0.80rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}

/* ── Section heading override for mint bg ── */
.impact-section-new .section-header .tag {
  background: rgba(46,125,50,0.10);
  color: var(--accent);
  border-color: rgba(46,125,50,0.22);
}

.impact-section-new .section-header h2 {
  color: var(--text-dark);
}

.impact-section-new .divider {
  background: linear-gradient(90deg, var(--accent), var(--secondary));
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .impact-story-banner { grid-template-columns: 1fr; gap: 1.5rem; }
  .impact-cards-grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .impact-cards-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .impact-story-banner { padding: 1.5rem; }
}
.focus-grid p {
  margin-bottom: 1.5rem;
}
/* ============================================================
   PARALLAX COMMUNITY SECTION
   ============================================================ */

.parallax-community {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  inset: -100px 0;
  background-image: url('../images/community-parallax.jpg');
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
  z-index: 0;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(10, 20, 45, 0.38);
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 0 1.5rem;
}

.parallax-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.parallax-content p {
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 1.6vw, 1.12rem);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.85;
  margin: 0;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.30);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .parallax-bg {
    background-attachment: scroll;
    inset: 0;
  }
}

@media (max-width: 768px) {
  .parallax-community {
    min-height: 380px;
  }
  .parallax-content h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .parallax-community {
    min-height: 320px;
  }
  .parallax-content h2 {
    font-size: 1.4rem;
  }
  .parallax-content p {
    font-size: 0.92rem;
  }
}
/*----------------*/
.impact-stats-2 .stat-item-v2 .stat-number {
    color: #000000;
}
.impact-stats-2 .stat-desc {
    color: rgb(0 0 0 / 55%);
}

.hero-image-only {
  width: 100%;
  line-height: 0;
}

.hero-image-only img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.land-acknowledgement {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  text-align: center;
}

.land-acknowledgement p {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.land-acknowledgement i {
  color: var(--secondary);
  margin-right: 0.4rem;
}
.divider-2 {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
  border-radius: var(--radius-full);
  margin: 0.75rem 0 1.5rem;
}
.board-avatar-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  margin: 0 auto 1rem;
  display: block;
  border: 3px solid var(--secondary);
}
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gal-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  background: var(--light-bg);
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.gal-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.gal-item:hover img { transform: scale(1.06); }

.gal-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(27, 58, 107, 0.45);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gal-item:hover .gal-item-overlay { opacity: 1; }
.gal-item-overlay i { color: #fff; font-size: 1.5rem; }

.gal-empty { text-align: center; color: #6b7280; padding: 2rem 0; }
.gal-viewall-wrap { text-align: center; margin-top: 2.5rem; }

.gal-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .gal-grid, .gal-grid-full { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 600px) {
  .gal-grid, .gal-grid-full { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
}
.mvv-card-image-only {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  box-shadow: none;
  border: none;
}