/* =========================== MASTER STYLE.CSS FOR B2H =========================== */

/* ================= GLOBAL RESET & FONTS ================= */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Montserrat', sans-serif; }
body { background: #0b1c2b; color: #e0f7fa; overflow-x: hidden; }
a { text-decoration: none; }
img { max-width: 100%; display: block; }

/* ================= CONTAINERS ================= */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section { padding: 80px 0; }
.dark-section { background: linear-gradient(135deg, #081821, #0f3a50, #1a5670); }
.section-title { font-size: 2.6rem; font-weight: 800; text-align: center; margin-bottom: 25px; }
.readable-text { font-size: 1.1rem; line-height: 1.6; color: #b0e0e6; text-align: center; }

}/* ======== FOUNDER PAGE STYLES (DARK MODE) ======== */
.founder-page {
  background-color: #111; /* dark background to match main page */
  padding: 60px 20px;
}

.founder-page .container {
  max-width: 1100px;
  margin: 0 auto;
}

.founder-page h2 {
  font-size: 2.5rem;
  text-align: center; /* centered heading */
  font-weight: 800;
  margin-bottom: 15px;
  color: #10b981; /* green heading color */
  position: relative;
}

.founder-page h2::after {
  content: '';
  display: block;
  width: 120px; /* centered underline width */
  height: 4px;
  background: linear-gradient(to right, #10b981, #3b82f6, #ef4444, #f59e0b, #10b981);
  margin: 8px auto 0; /* centered underline */
  border-radius: 2px;
}

.founder-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  margin-top: 40px;
  justify-content: center;
}

.founder-img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.founder-img:hover {
  box-shadow: 0 8px 30px rgba(16,185,129,0.7);
  transform: scale(1.05);
}

.founder-text {
  flex: 1;
  min-width: 300px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #b0e0e6; /* light text for dark background */
}

.founder-text p {
  margin-bottom: 18px;
}

.founder-text .signature {
  margin-top: 25px;
  font-weight: 600;
  font-size: 1.15rem;
  color: #10b981;
  text-align: right;
}

/* ======== RESPONSIVE ======== */
@media screen and (max-width: 900px) {
  .founder-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .founder-page h2 {
    text-align: center;
  }
  .founder-img {
    width: 180px;
    height: 180px;
  }
  .founder-text {
    font-size: 1rem;
  }
  .founder-text .signature {
    text-align: center;
  }
}

/* ================= PHILOSOPHY (CARDS) ================= */
.philosophy-section {
  background: #081821;
  color: #b0e0e6;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

/* Section title */
.philosophy-section .section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #22c55e;
  text-shadow: 0 0 15px rgba(34,197,94,0.6);
  margin-bottom: 12px;
}

/* Multi-color glowing underline */
.philosophy-section .section-underline.multi-glow {
  width: 100px;
  height: 5px;
  margin: 10px auto 40px;
  border-radius: 3px;
  background: linear-gradient(to right, #22c55e, #f59e0b, #ef4444);
  box-shadow: 0 0 12px rgba(0,255,198,0.5);
}

/* Grid layout */
.philosophy-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  position: relative;
}

/* Individual cards */
.philosophy-card {
  background: rgba(0,255,198,0.05);
  backdrop-filter: blur(12px);
  border-radius: 15px;
  width: 240px;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0,255,198,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

/* Highlighted card */
.philosophy-card.highlight {
  background: rgba(34,197,94,0.1);
}

/* Lift and glow on hover */
.philosophy-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,255,198,0.4),
              0 0 40px rgba(0,255,198,0.2) inset;
}

/* Glow behind each card */
.philosophy-card::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border-radius: 20px;
  background: radial-gradient(circle, rgba(0,255,198,0.15) 0%, transparent 70%);
  z-index: -1;
  filter: blur(12px);
}

/* Card headings */
.philosophy-card h3 {
  color: #0fffc3;
  margin-bottom: 10px;
  font-size: 1.15rem;
}

/* Card paragraphs */
.philosophy-card p {
  font-size: 0.95rem;
  color: #b0e0e6;
  line-height: 1.5;
  text-align: center;
}

/* Subtle background glow behind section */
.philosophy-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle at center, rgba(0,255,198,0.05) 0%, transparent 70%);
  animation: philosophyGlow 12s infinite alternate;
  z-index: 0;
  pointer-events: none;
}

@keyframes philosophyGlow {
  0% { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1.05) rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
  .philosophy-card { width: 85%; }
  .philosophy-section .section-title { font-size: 2.4rem; }
}

/* ================= GOVERNANCE SECTION ================= */
.governance-section {
  background: #081821;
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.governance-section h2 {
  font-size: 2.2rem;
  color: #22c55e; /* green headings */
  margin-bottom: 20px;
}

.governance-intro {
  font-size: 1rem;
  color: #b0e0e6;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
  text-align: justify;
}

.transparency-link {
  color: #f59e0b;
  font-weight: 700;
  text-decoration: none;
}

.transparency-link:hover {
  text-decoration: underline;
}

/* ================= GOVERNANCE FRAMEWORK ================= */
.governance-block {
  margin-bottom: 30px;
  text-align: center;
}

.governance-block h3 {
  font-size: 1.6rem;
  color: #0fffc3;
  margin-bottom: 10px;
  text-align: center;
}

.governance-block p {
  color: #b0e0e6;
  font-size: 1rem;
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
}

/* ===== GOVERNANCE FLOW WITH VERTICAL GLOW LINE ===== */
.governance-flow-container {
  position: relative;
  padding-left: 40px;
  margin: 30px auto;
  max-width: 700px;
  text-align: left;
}

/* ===== BRIGHTER VERTICAL GLOW LINE ===== */
.glow-line {
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #14b8a6, #f59e0b, #3b82f6, #ef4444, #10b981);
  border-radius: 2px;
  box-shadow: 0 0 15px rgba(0,255,198,0.4);
}

.governance-node {
  margin-bottom: 25px;
  position: relative;
  padding-left: 20px;
}

.governance-node h4 {
  font-size: 1.4rem;
  color: #22c55e;
  margin-bottom: 5px;
}

.governance-node p {
  color: #b0e0e6;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ================= BOARD OF TRUSTEES ================= */
.board-title {
  text-align: center;
  margin-bottom: 25px;
  color: #f59e0b;
}

.board-members {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.board-card {
  background: rgba(0, 255, 198, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  width: 220px; 
  text-align: center;
  padding: 20px 15px;
  transition: transform 0.4s, box-shadow 0.4s;
  position: relative;
  z-index: 1;
}

/* ================= BOARD OF TRUSTEES IMAGE CENTERING ================= */
.board-card img {
  display: block;
  margin: 0 auto 15px auto;  /* centers image horizontally in card */
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.4s, box-shadow 0.4s;
  position: relative;
  z-index: 2;
}

.board-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,255,198,0.4),
              0 0 40px rgba(0,255,198,0.2) inset;
}

.board-card h4 {
  color: #0fffc3;
  margin-bottom: 8px;
}

.board-card p {
  color: #b0e0e6;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Glow behind board images */
.board-card img::after {
  content: '';
  position: center;
  width: 140px;
  height: 140px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,255,198,0.15), transparent 70%);
  filter: blur(25px);
  z-index: -1;
}

/* ================= CONSTITUTION SECTION ================= */
.constitution-section {
  background: #081821;
  color: #b0e0e6;
  text-align: center;
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.constitution-section h2 {
  font-size: 2.2rem;
  color: #22c55e;
  margin-bottom: 25px;
}

.constitution-section p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #b0e0e6;
  text-align: justify;
}

.constitution-section p span.orange {
  color: #f59e0b;
  font-weight: 600;
}

/* ================= TOKENOMICS – REFINED ================= */
.tokenomics {
  background: radial-gradient(circle at top, #0b1f29, #06121a);
  color: #e0f7fa;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.tokenomics-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* ===== Title & underline ===== */
.tokenomics-title {
  font-size: 2.8rem;
  color: #22c55e;
  margin-bottom: 10px;
  text-shadow: 0 0 15px rgba(34,197,94,0.5);
}

.tokenomics-underline {
  width: 100px;
  height: 5px;
  margin: 10px auto 25px;
  background: linear-gradient(90deg, #22c55e, #f59e0b, #ef4444);
  border-radius: 3px;
  box-shadow: 0 0 12px rgba(0,255,198,0.5);
}

.tokenomics-subtitle {
  color: #b0e0e6;
  margin-bottom: 50px;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Bars container ===== */
.tokenomics-bars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* ===== Each token box ===== */
.token-box {
  flex: 1 1 200px;
  max-width: 220px;
  text-align: center;
  position: relative;
  transition: transform 0.4s, box-shadow 0.4s;
  cursor: default;
}
.token-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 28px rgba(0,255,198,0.4);
}

/* Bar track */
.bar {
  width: 100%;
  height: 28px;
  background: rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  margin-top: 6px;
}

/* Bar fill */
.bar-fill {
  width: 0%;
  height: 100%;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  transition: width 2s ease-in-out;
}

/* Animated fill percentage */
.bar-fill span {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 2;
}

/* Floating shine effect on bar fill */
.bar-fill::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transform: skewX(-20deg);
  animation: shineMove 2.5s linear infinite;
  border-radius: 14px;
}

@keyframes shineMove {
  0% { left: -50%; }
  100% { left: 100%; }
}

/* Bar colors */
.bar-fill.red    { background: linear-gradient(90deg, #ff4d4d, #ff8080); }
.bar-fill.orange { background: linear-gradient(90deg, #ff9f1c, #ffd166); }
.bar-fill.blue   { background: linear-gradient(90deg, #3a86ff, #7db9ff); }
.bar-fill.green  { background: linear-gradient(90deg, #2ec4b6, #8ef1df); }
.bar-fill.lgreen { background: linear-gradient(90deg, #90db7b, #caffbf); }

/* Token box headings */
.token-box h3 {
  margin-bottom: 8px;
  color: #0fffc3;
  text-shadow: 0 0 8px rgba(0,255,198,0.5);
  font-size: 1.1rem;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .token-box { max-width: 100%; }
  .tokenomics-title { font-size: 2.4rem; }
  .tokenomics-subtitle { font-size: 1rem; }
}

@media (max-width: 600px) {
  .token-box { width: 90%; }
  .tokenomics-bars { gap: 20px; }
}

/* ================= HOW B2H WORKS – FINAL READY-TO-PASTE ================= */

#how-B2H-works {
  display: block;
  width: 100%;
  clear: both;
  overflow: hidden;
  margin-top: 80px; /* space from previous section */
}

.how-B2H-works {
  background: radial-gradient(circle at top, #0b2230, #06131b);
  padding: 90px 20px 70px;
  text-align: center;
  color: #cfeff5;
  position: relative;
  overflow: hidden;
}

.how-B2H-works-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: block;
  clear: both;
}

/* ---------- HEADER ---------- */
.how-B2H-works .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.how-B2H-works .section-header h2 {
  font-size: 2.9rem;
  font-weight: 800;
  color: #f59e0b;
  text-shadow: 0 0 16px rgba(245,158,11,0.6);
  margin-bottom: 14px;
}

.how-B2H-works .section-underline {
  width: 90px;
  height: 4px;
  margin: 0 auto 18px;
  border-radius: 3px;
  background: linear-gradient(to right, #22c55e, #f59e0b, #ef4444);
}

.how-B2H-works .subheading {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #b6e6ee;
}

/* ---------- FLOW LINE + ARROWS ---------- */
.how-B2H-works .flow-container {
  position: relative;
  width: 100%;
  margin: 60px 0;
  height: 6px;
}

.how-B2H-works .flow-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, #22c55e, #14b8a6, #f59e0b, #ef4444);
  transform: translateY(-50%);
  z-index: 1;
}

/* Soft energy glow effect along line */
.how-B2H-works .flow-line::after {
  background: linear-gradient(90deg,
    transparent,
    rgba(0,0,0,0.15),
    transparent
  );
  mix-blend-mode: overlay;
}

@keyframes flowGlow {
  0% { transform: translateX(-100%); opacity: 0.2; }
  50% { transform: translateX(0); opacity: 0.45; }
  100% { transform: translateX(100%); opacity: 0.2; }
}

/* ---------- MOVING ARROWS ---------- */
.how-B2H-works .moving-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  font-weight: 700;
  z-index: 2;
  animation: moveArrow 7s linear infinite;
}

.how-B2H-works .moving-arrow:nth-child(2) { color: #22c55e; }
.how-B2H-works .moving-arrow:nth-child(3) { color: #f59e0b; animation-delay: 1.5s; }
.how-B2H-works .moving-arrow:nth-child(4) { color: #ef4444; animation-delay: 3s; }

@keyframes moveArrow {
  0% { left: -40px; opacity: 0; }
  10% { opacity: 1; }
  50% { left: calc(100% - 40px); opacity: 1; }
  90% { opacity: 0; }
  100% { left: 100%; opacity: 0; }
}

/* ---------- STEPS ---------- */
.how-B2H-works .flow-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 28px;
  margin-top: 30px;
}

.how-B2H-works .step {
  width: 45%;
  min-width: 260px;
  padding: 18px 22px;
  text-align: center;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: stepFadeUp 0.9s ease forwards;
}

.how-B2H-works .step:nth-child(1) { animation-delay: 0.2s; }
.how-B2H-works .step:nth-child(2) { animation-delay: 0.4s; }
.how-B2H-works .step:nth-child(3) { animation-delay: 0.6s; }
.how-B2H-works .step:nth-child(4) { animation-delay: 0.8s; }

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

.how-B2H-works .step:nth-child(odd) { align-self: flex-start; }
.how-B2H-works .step:nth-child(even) { align-self: flex-end; }

.how-B2H-works .step::before {
  content: "";
  position: absolute;
  inset: -14px;
  background: radial-gradient(circle, rgba(0,255,198,0.18), transparent 70%);
  filter: blur(14px);
  border-radius: 22px;
  z-index: -1;
}

.how-B2H-works .step:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 0 35px rgba(0,255,198,0.45);
}

.how-B2H-works .step h3 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.how-B2H-works .step p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #cfeff5;
}

/* ================= HOW B2H WORKS – UNIFIED B2H SIGNATURE ================= */

/* Section header */
.how-B2H-works .section-header h2 {
  color: #22c55e; /* green like Mission & Vision */
  font-weight: 800;
  font-size: 2.9rem;
  text-shadow: 0 0 14px rgba(34,197,94,0.5);
  margin-bottom: 14px;
  position: relative;
  display: inline-block;
}

/* Gradient underline for section header */
.how-B2H-works .section-underline {
  width: 90px;
  height: 4px;
  margin: 0 auto 18px;
  border-radius: 3px;
  background: linear-gradient(
    90deg,
    #22c55e,
    #f59e0b,
    #ef4444,
    #3b82f6,
    #10b981
  ); /* B2H signature gradient */
  box-shadow: 0 0 12px rgba(0,255,198,0.5);
}

/* Subheading text */
.how-B2H-works .subheading {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #b0e0e6; /* subtle greenish tint like Mission & Vision */
}

/* Step headings (boxes inside section) */
.how-B2H-works .step h3 {
  color: #22c55e;  /* green like other headings */
  font-size: 1.15rem;
  margin-bottom: 6px;
  position: relative;
  display: inline-block;
}

/* Multi-color gradient underline for step headings */
.how-B2H-works .step h3::after {
  content: '';
  display: block;
  width: 60px; /* adjust width if needed */
  height: 4px;
  margin: 6px auto 0;
  border-radius: 3px;
  background: linear-gradient(
    90deg,
    #22c55e,
    #f59e0b,
    #ef4444,
    #3b82f6,
    #10b981
  ); /* B2H signature gradient */
  box-shadow: 0 0 8px rgba(0,255,198,0.4);
}

/* ---------- CTA BUTTON ---------- */
.how-B2H-works .cta {
  margin-top: 60px;
  text-align: center;
}

.how-B2H-works .cta .btn {
  padding: 14px 38px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  border-radius: 50px;
  box-shadow: 0 0 25px rgba(245,158,11,0.6);
  transition: all 0.35s ease;
}

.how-B2H-works .cta .btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 0 40px rgba(239,68,68,0.9);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .how-B2H-works .flow-steps {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .how-B2H-works .flow-steps {
    flex-direction: column;
    align-items: center;
  }
  .how-B2H-works .step {
    width: 85%;
  }
}

@media (max-width: 480px) {
  .how-B2H-works .section-header h2 { font-size: 2.2rem; }
  .how-B2H-works .subheading { font-size: 1rem; }
}

/* ================= CHARITY ================= */
.charity-section { background: #0f2734; padding: 80px 20px; }
.charity-header h2 { color: #22c55e; margin-bottom: 10px; text-align: center; }
.charity-intro { text-align: center; color: #b0e0e6; margin-bottom: 40px; }
.charity-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.charity-card { background: rgba(0,255,198,0.05); backdrop-filter: blur(8px); border-radius: 15px; width: 280px; overflow: hidden; box-shadow: 0 6px 20px rgba(0,255,198,0.15); }
.charity-card img { width: 100%; height: 180px; object-fit: cover; }
.charity-content { padding: 15px; }
.charity-content h3 { color: #0fffc3; margin-bottom: 8px; }
.charity-content p { font-size: 0.95rem; color: #b0e0e6; line-height: 1.5; }

/* ================= CHARITY CARDS – GLOW EFFECT ================= */
.charity-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  position: relative;
}

.charity-card {
  background: rgba(0, 255, 198, 0.05); /* subtle card base */
  backdrop-filter: blur(12px);
  border-radius: 15px;
  width: 280px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 255, 198, 0.15);
  transition: transform 0.4s, box-shadow 0.4s;
  position: relative;
}

.charity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 255, 198, 0.4),
              0 0 40px rgba(0, 255, 198, 0.2) inset;
}

/* Glowing effect behind each charity card */
.charity-card::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border-radius: 20px;
  background: radial-gradient(circle, rgba(0,255,198,0.15) 0%, transparent 70%);
  z-index: -1;
  filter: blur(12px);
}

/* Card content */
.charity-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.charity-content h3 {
  color: #0fffc3;
  margin-bottom: 8px;
}

.charity-content p {
  font-size: 0.95rem;
  color: #b0e0e6;
  line-height: 1.5;
}

/* ================= WHO BENEFITS STYLING ================= */
#who-benefits {
  padding: 100px 20px;
  text-align: center;
  background: #0f172a;
}

#who-benefits .section-header {
  max-width: 800px;
  margin: 0 auto 60px auto;
}

/* Gradient Animated Heading (Green style) */
.section-title.animate-gradient {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, #22c55e, #00ffc6, #22c55e);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientAnimation 4s linear infinite;
  display: inline-block;
}

/* Heading animation keyframes */
@keyframes gradientAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Multi-Color Gradient Underline */
.section-underline.multi-glow {
  width: 120px;
  height: 4px;
  margin: 15px auto 25px auto;
  border-radius: 4px;
  background: linear-gradient(270deg, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #8f00ff, #ff0000);
  background-size: 400% 400%;
  box-shadow: 0 0 15px rgba(255,255,255,0.3);
  animation: rainbowUnderline 5s ease infinite;
}

/* Underline gradient animation */
@keyframes rainbowUnderline {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Subheading */
#who-benefits .subheading {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #cbd5e1;
  max-width: 720px;
  margin: 0 auto;
}

/* Grid Layout */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Card Styling */
.philosophy-card {
  background: rgba(0, 255, 198, 0.05);
  padding: 30px 25px;
  border-radius: 16px;
  backdrop-filter: blur(8px);
  transition: all 0.4s ease;
  text-align: center;
  border: 1px solid rgba(0,255,198,0.1);
}

.philosophy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(0,255,198,0.4);
  border-color: rgba(0,255,198,0.4);
}

/* Highlight Card */
.philosophy-card.highlight {
  background: linear-gradient(135deg, rgba(34,197,94,0.15), rgba(0,255,198,0.08));
  border: 1px solid rgba(0,255,198,0.3);
}

/* Icons */
.philosophy-icon {
  font-size: 2rem;
  color: #00ffc6;
  margin-bottom: 15px;
}

/* Card Title */
.philosophy-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #22c55e;
}

/* Card Text */
.philosophy-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e2e8f0;
}

/* ================= CHARITY SECTION ADJUSTMENTS ================= */

/* Center images inside charity cards */
.charity-card img {
  display: block;
  margin: 0 auto; /* center horizontally */
}

/* Wrap intro text in two lines and center */
.charity-intro {
  max-width: 600px; /* restrict line length */
  margin: 0 auto 40px auto; /* center horizontally */
  text-align: center; /* keep centered */
}

/* ================= CHARITY SECTION – REDUCE VERTICAL SPACING ================= */

/* Reduce the gap between charity cards */
.charity-grid {
  gap: 15px 20px; /* vertical 15px, horizontal 20px */
}

/* Optional: reduce padding inside card for a slightly more compact look */
.charity-content {
  padding: 12px 15px;
}

/* ================= DONATIONS & REAL ASSETS – CLEANED ================= */
.assets-section {
  background: #081821;
  color: #b0e0e6;
  text-align: center;
  padding: 90px 20px 60px;
  position: relative;
  overflow: hidden;
}

/* Section Heading */
.assets-header h2 {
  color: #22c55e;          /* green like mission & vision */
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 0 0 14px rgba(34,197,94,0.5);
  position: relative;
  border: none !important;  /* remove old underline */
  box-shadow: none !important;
  display: inline-block;
}

/* Multi-color gradient underline */
.assets-header h2::after {
  content: '';
  display: block;
  width: 120px;             /* adjust width as needed */
  height: 5px;              /* underline height */
  margin: 10px auto 0;      /* center under heading */
  border-radius: 3px;
  background: linear-gradient(
    90deg,
    #22c55e,
    #f59e0b,
    #ef4444,
    #3b82f6,
    #10b981
  ); /* B2H signature gradient */
  box-shadow: 0 0 12px rgba(0,255,198,0.5);
}

/* Intro text */
.assets-intro {
  max-width: 720px;
  margin: 0 auto 50px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #b0e0e6;
}

/* Grid & cards */
.assets-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  position: relative;
}

.asset-card {
  background: rgba(0, 255, 198, 0.05);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  width: 240px;
  padding: 25px 18px;
  box-shadow: 0 8px 25px rgba(0,255,198,0.15);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.asset-card.highlight {
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
}

.asset-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0,255,198,0.35),
              0 0 50px rgba(0,255,198,0.2) inset;
}

/* Glow behind card */
.asset-card::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  width: calc(100% + 24px);
  height: calc(100% + 24px);
  border-radius: 22px;
  background: radial-gradient(circle, rgba(0,255,198,0.18) 0%, transparent 70%);
  filter: blur(14px);
  z-index: -1;
  animation: subtleGlow 6s ease-in-out infinite alternate;
}

@keyframes subtleGlow {
  0% { opacity: 0.65; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.02); }
  100% { opacity: 0.65; transform: scale(1); }
}

/* Card headings & text */
.asset-card h3 {
  color: #22c55e; /* green like section heading */
  font-size: 1.2rem;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

/* Multi-color underline for card headings */
.asset-card h3::after {
  content: '';
  display: block;
  width: 60px;               /* card underline width */
  height: 4px;
  margin: 6px auto 0;
  border-radius: 3px;
  background: linear-gradient(
    90deg,
    #22c55e,
    #f59e0b,
    #ef4444,
    #3b82f6,
    #10b981
  );
  box-shadow: 0 0 8px rgba(0,255,198,0.4);
}

.asset-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #b0e0e6;
}

/* ================= MISSION & VISION ================= */
.mission {
    background: #0f2734;
    text-align: center;
    padding: 80px 20px;
}

/* Heading styles with gradient underline */
.mission h2, .mission h3 {
    position: relative;
    display: inline-block;
    color: #00ffc6; /* heading text color */
    font-weight: 600;
    margin-bottom: 20px;
}

/* Gradient underline */
.mission h2::after,
.mission h3::after {
    content: "";
    display: block;
    height: 4px;             /* thickness of the line */
    width: 80px;             /* line length */
    margin: 8px auto 0;      /* spacing under heading */
    border-radius: 3px;
    background: linear-gradient(135deg, #22c55e, #f59e0b, #ef4444, #3b82f6, #10b981);
    background-size: 300% 300%;
    animation: gradientShift 6s ease infinite;
}

/* Gradient animation keyframes */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Mission & Vision Cards container */
.mission-vision-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 30px; /* spacing from heading */
}

/* Individual cards */
.mv-card {
    background: rgba(0,255,198,0.05);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 35px 25px;
    max-width: 350px;
    transition: transform 0.4s, box-shadow 0.4s;
    text-align: center;
}

/* Card hover effects */
.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 15px 30px rgba(0,255,198,0.4),
        0 0 40px rgba(0,255,198,0.2) inset;
}

/* Icon in card */
.mv-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #00ffc6;
    text-shadow: 0 0 12px rgba(0,255,198,0.6);
}

/* Card heading inside */
.mv-card h3 {
    font-size: 24px;
    color: #00ffc6; /* consistent with section heading */
    margin-bottom: 15px;
}

/* Card paragraph */
.mv-card p {
    font-size: 16px;
    color: #b0e0e6;
    line-height: 1.6;
}

/* ================= ROADMAP – REFINED ================= */
.roadmap {
  background: #081821;
  color: #b0e0e6;
  padding: 90px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.roadmap .section-title {
  color: #22c55e;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 35px;
  text-shadow: 0 0 14px rgba(34,197,94,0.5);
}

/* Roadmap list & vertical gradient line */
.roadmap-list {
  list-style: none;
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  padding-left: 40px;
}

.roadmap-list::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(to bottom, #14b8a6, #f59e0b, #3b82f6, #ef4444, #10b981);
  border-radius: 3px;
  box-shadow: 0 0 16px rgba(255,255,255,0.2);
}

/* Each milestone item */
.roadmap-list li {
  background: rgba(0,255,198,0.08);
  backdrop-filter: blur(10px);
  border-radius: 22px;
  padding: 16px 20px 16px 60px;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}

.roadmap-list li:nth-child(1) { animation-delay: 0.1s; }
.roadmap-list li:nth-child(2) { animation-delay: 0.3s; }
.roadmap-list li:nth-child(3) { animation-delay: 0.5s; }
.roadmap-list li:nth-child(4) { animation-delay: 0.7s; }
.roadmap-list li:nth-child(5) { animation-delay: 0.9s; }

/* Fade-in animation */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Step circle */
.step-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(45deg, #22c55e, #0fffc3);
  box-shadow: 0 0 14px #22c55e, 0 0 24px #0fffc3;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: floatGlow 3s ease-in-out infinite alternate;
}

@keyframes floatGlow {
  0% { transform: translateY(-50%) scale(1); }
  50% { transform: translateY(-55%) scale(1.05); }
  100% { transform: translateY(-50%) scale(1); }
}

/* Hover effect for step circles */
.roadmap-list li:hover .step-circle {
  transform: translateY(-50%) scale(1.5);
  box-shadow: 0 0 22px #22c55e, 0 0 40px #0fffc3, 0 0 55px currentColor inset;
}

/* Responsive */
@media (max-width: 768px) {
  .roadmap-list {
    padding-left: 30px;
    gap: 20px;
  }
  .roadmap-list li {
    padding: 14px 16px 14px 50px;
  }
  .section-title { font-size: 2.4rem; }
}

/* ================= ROADMAP – HOVER EFFECT ================= */
.roadmap-list li {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

.roadmap-list li::before {
  /* optional subtle glow behind each step */
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  border-radius: 20px;
  background: radial-gradient(circle, rgba(0,255,198,0.12) 0%, transparent 70%);
  z-index: -1;
  filter: blur(8px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.roadmap-list li:hover {
  transform: translateY(-10px);
}

.roadmap-list li:hover::before {
  opacity: 1;
}

/* ================= JOIN THE MOVEMENT ================= */
.join-movement .btn-join { padding: 14px 28px; margin:10px; border-radius: 8px; font-weight:700; color:#fff; display:inline-block; transition:all 0.3s; }
.btn-join.donate { background:#22c55e; }
.btn-join.volunteer { background:#3b82f6; }
.btn-join.spread { background:#f59e0b; }
.btn-join:hover { transform:translateY(-3px); box-shadow:0 0 15px rgba(255,255,255,0.4); }
.join-buttons { display:flex; flex-wrap:wrap; justify-content:center; gap:20px; margin-top:20px; }

/* ================= JOIN THE MOVEMENT ================= */
.join-movement .section-title {
  color: #22c55e; /* green like other headings */
  text-shadow: 0 0 14px rgba(34,197,94,0.6);
  margin-bottom: 12px;
}

/* Multicolor underline */
.join-movement .section-underline {
  width: 100px;
  height: 4px;
  margin: 0 auto 20px;
  border-radius: 3px;
  background: linear-gradient(to right, #22c55e, #f59e0b, #ef4444);
  box-shadow: 0 0 12px rgba(34,197,94,0.5);
}

/* Buttons container */
.join-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

/* Buttons base style */
.btn-join {
  padding: 14px 28px;
  margin: 10px;
  border-radius: 8px;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.35s ease;
}

/* Base glow behind buttons */
.btn-join::before {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  border-radius: 12px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

/* Hover effect with glow lift */
.btn-join:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 0 20px rgba(255,255,255,0.35), 0 0 30px rgba(255,255,255,0.2) inset;
}

.btn-join:hover::before {
  opacity: 1;
  transform: scale(1.05);
}

/* Animated glow behind buttons */
.btn-join::after {
  content: '';
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  border-radius: 50%;
  background: conic-gradient(
    rgba(34,197,94,0.2),
    rgba(245,158,11,0.2),
    rgba(239,68,68,0.2),
    rgba(34,197,94,0.2)
  );
  z-index: -2;
  filter: blur(20px);
  animation: rotateGlow 6s linear infinite;
  opacity: 0.7;
}

/* Rotate animation for glow */
@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Individual button colors (original) */
.btn-join.donate { background: #22c55e; }
.btn-join.volunteer { background: #3b82f6; }
.btn-join.spread { background: #f59e0b; }

/* ======== FOUNDER IMAGE WRAPPER WITH FLOATING PARTICLES ======== */
.founder-img-wrapper {
  position: relative;
  display: inline-block;
}

/* Image floating gently */
.founder-img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  transition: all 0.4s ease, transform 1.5s ease-in-out;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

/* Gentle float animation */
@keyframes floatFounder {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

.founder-img {
  animation: floatFounder 4s ease-in-out infinite;
}

.founder-img:hover {
  box-shadow: 0 12px 35px rgba(16,185,129,0.7);
  transform: scale(1.08);
}

/* ======== PARTICLES AROUND FOUNDER ======== */
.founder-img-wrapper span.founder-particle {
  position: absolute;
  display: block;
  background: rgba(16,185,129,0.7);
  border-radius: 50%;
  pointer-events: none;
  animation: floatParticle 6s linear infinite;
  opacity: 0.8;
}

@keyframes floatParticle {
  0%   { transform: translate(0,0) scale(1); opacity: 0.6; }
  50%  { transform: translate(calc(var(--x) * 1px), calc(var(--y) * 1px)) scale(1.3); opacity: 0.9; }
  100% { transform: translate(0,0) scale(1); opacity: 0.6; }
}

/* ===== Mobile fix: How B2H Works button ===== */
@media (max-width: 768px) {
  .how-b2h-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    margin: 10px auto;
  }
}

/* ================= MAIN PAGE FOOTER ================= */
.footer {
  background: #0b1f29;
  color: #e5e7eb;
  padding: 40px 20px 20px;
  font-family: 'Montserrat', sans-serif;
}

.footer a {
  color: #32cd32;
  text-decoration: none;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-subscribe, 
.footer-address, 
.footer-social {
  flex: 1 1 250px;
}

.footer-subscribe h4,
.footer-address h4,
.footer-social h4 {
  margin-bottom: 10px;
  color: #32cd32;
}

.subscribe-form {
  display: flex;
  gap: 10px;
}

.subscribe-form input {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #32cd32;
  background: #0f2734;
  color: #fff;
}

.subscribe-form button {
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  background: #32cd32;
  color: #0b1f29;
  font-weight: 700;
  cursor: pointer;
}

.footer-social .social-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-social .social-icons a img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s;
}

.footer-social .social-icons a:hover img {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid #32cd32;
  padding-top: 10px;
  font-size: 0.9rem;
  color: #9ca3af;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .subscribe-form {
    flex-direction: column;
    gap: 8px;
  }

  .subscribe-form button {
    width: 100%;
  }
}

/* ================= HOW B2H CTA BUTTON ================= */

.how-b2h-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.cta-orange {
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  color: #1a0f00;
  background: linear-gradient(135deg, #ff9f1a, #ff6a00);
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.45);
  transition: all 0.3s ease;
  text-align: center;
}

.cta-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(255, 140, 0, 0.7);
}

/* Mobile safety */
@media (max-width: 768px) {
  .cta-orange {
    width: auto;
    max-width: 90%;
    font-size: 0.95rem;
    padding: 14px 26px;
  }
}

.subscribe-success {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #32cd32;
  opacity: 0.9;
}

 /* ================= FOUNDER GUARDIAN SEAL ================= */

.founder-seal {
  margin-top: 25px;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-block;
  padding: 6px 14px;
  border-radius: 30px;
  animation: sealGlow 4s ease-in-out infinite;
}

@keyframes sealGlow {
  0%   { box-shadow: 0 0 0 rgba(255,255,255,0); }
  50%  { box-shadow: 0 0 14px rgba(255,255,255,0.25); }
  100% { box-shadow: 0 0 0 rgba(255,255,255,0); }
} 

/* ================= FOUNDER SECTION ================= */
.founder-page {
  margin-top: 120px;        /* visual space after hero */
  padding: 50px 20px;
}

.founder-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;                /* space between image and text */
  align-items: flex-start;
}

.founder-img-wrapper {
  flex: 0 0 250px;          /* image width */
}

.founder-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.founder-text {
  flex: 1;                  /* takes remaining space */
}

.founder-text p {
  margin-bottom: 15px;      /* spacing between paragraphs */
  line-height: 1.6;
}

.founder-text .highlight-quote {
  font-size: 1.2rem;
  font-weight: 600;
  color: #10b981;           /* green accent */
  margin-bottom: 20px;
}

.founder-text .signature {
  font-style: italic;
  font-weight: 600;
  margin-top: 20px;
}

/* ================= HERO SECTION ================= */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background: #0b1c2b;
  color: white;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Particles Background */
#particles-js {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

/* Burn Logo Top-Left */
.burn-logo {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 140px;
  z-index: 2;
  animation: burnPulse 4s infinite ease-in-out;
}
@keyframes burnPulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* Center Hero Content */
.hero-center {
  position: relative;
  z-index: 1;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Main Logo */
.main-logo {
  width: 180px;
  margin-bottom: 20px;
  display: block;
}

/* Hero Heading */
.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #FFD700;
  margin-bottom: 10px;
}

.accent {
  font-size: 1.2rem;
  color: #00ffc6;
  margin-left: 8px;
  vertical-align: middle;
}

/* Subtitle & Description */
.hero-subtitle {
  font-size: 1.2rem;
  margin: 5px 0 15px 0;
}
.highlight { color: #22c55e; font-weight: bold; }
.hero-description {
  font-size: 1rem;
  margin-bottom: 25px;
  line-height: 1.5;
}

/* Hero Callout Buttons */
.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons a {
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

/* Button Styles + Hover */
.btn-primary {
  background: #00ffc6;
  color: #000;
}
.btn-primary:hover { background: #00d3a4; transform: translateY(-3px); }

.btn-secondary {
  background: transparent;
  color: #00ffc6;
  border: 2px solid #00ffc6;
}
.btn-secondary:hover { background: #00ffc6; color: #000; transform: translateY(-3px); }

.btn-partner {
  background: #ffbf00;
  color: #000;
}
.btn-partner:hover { background: #e6ac00; transform: translateY(-3px); }

/* Side Subpage Buttons */
.hero-subpages-left,
.hero-subpages-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-subpages-left { left: 20px; }
.hero-subpages-right { right: 20px; }

.btn-subpage {
  background: #00ffc6;
  padding: 10px 15px;
  color: #000;
  font-weight: 600;
  text-align: center;
  border-radius: 6px;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.btn-subpage:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 15px rgba(0,255,198,0.5);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.5rem; }
  .main-logo { width: 160px; }
  .burn-logo { width: 120px; }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .main-logo { width: 140px; }
  .burn-logo { width: 90px; }

  .hero-subpages-left,
  .hero-subpages-right { display: none; }

  .hero-buttons { flex-direction: column; gap: 12px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-subtitle, .hero-description { font-size: 0.9rem; }
  .hero-buttons a { padding: 12px 20px; }
}

          /* ================= UNIFIED CARD STYLING ================= */
.mv-card, .board-card, .charity-card, .asset-card {
  background: rgba(0,255,198,0.05);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 25px 15px;
  text-align: center;
  transition: transform 0.4s, box-shadow 0.4s;
  position: relative;
  z-index: 1;
}

/* Images inside cards */
.mv-card img, .board-card img, .charity-card img, .asset-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  transition: transform 0.4s, box-shadow 0.4s;
}

/* Hover effect - lift and glow */
.mv-card:hover, .board-card:hover, .charity-card:hover, .asset-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,255,198,0.4), 
              0 0 40px rgba(0,255,198,0.2) inset;
}

/* Headings inside cards */
.mv-card h3, .board-card h4, .charity-card h3, .asset-card h3 {
  color: #0fffc3;
  margin-bottom: 8px;
}

/* Paragraph text inside cards */
.mv-card p, .board-card p, .charity-card p, .asset-card p {
  color: #b0e0e6;
  font-size: 0.95rem;
  line-height: 1.4;
}

.mv-card::before,
.board-card::before,
.charity-card::before,
.asset-card::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(0,255,198,0.15), transparent 70%);
  filter: blur(25px);
  z-index: -1;
}

/* ================= FOOTER MAIN PAGE FIXED ================= */
.footer {
  background: #0b0f1a;
  color: #e5e7eb;
  padding: 40px 20px;
  font-family: 'Montserrat', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Flex layout for social + subscribe blocks */
.footer-bottom-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; /* space between subscribe & social */
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

/* Social Media */
.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-social h4 {
  margin-bottom: 10px;
  color: #32cd32;
}

.footer-social a {
  display: inline-block;
  margin-right: 12px;
  margin-bottom: 6px;
}

.footer-social a img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s, filter 0.3s;
}

.footer-social a:hover img {
  transform: scale(1.2);
  filter: drop-shadow(0 0 5px #32cd32);
}

/* Subscribe */
.footer-subscribe {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-subscribe h4 {
  margin-bottom: 10px;
  color: #32cd32;
}

.footer-subscribe form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-subscribe input[type="email"] {
  flex: 1 1 200px;
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid #32cd32;
  background: #111827;
  color: #e5e7eb;
}

.footer-subscribe .green-btn {
  padding: 10px 20px;
  border-radius: 8px;
  background: #32cd32;
  color: #0b0f1a;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.footer-subscribe .green-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 10px #32cd32;
}

/* Footer Bottom Text */
.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: #9ca3af;
  margin-top: 20px;
}

.footer-bottom p {
  margin: 4px 0;
}

/* ================= RESPONSIVE ================= */
@media screen and (max-width: 768px) {
  .footer-bottom-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-social, .footer-subscribe {
    align-items: center;
  }

  .footer-social a {
    margin-right: 8px;
    margin-bottom: 8px;
  }

  .footer-subscribe form {
    justify-content: center;
  }
}

/* ================= PARTICLES ADJUSTMENT ================= */
.particles-js-canvas-el { position:absolute !important; top:0; left:0; width:100% !important; height:100% !important; z-index:0; }

@media (max-width: 768px){
  /* mobile styles */
}

/* ===== END OF FILE ===== */
