    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  background: url('leaves.svg') no-repeat center center fixed;
  background-size: cover;
  color: white;
  overflow-x: hidden;
    }

.hero-card {
  --radius: 20px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 2.25rem;
  background: var(--glass);                /* uses your existing variable */
  backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  margin-bottom: 2.5rem;
  z-index: 2;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

/* inner wrapper for consistent padding if used inside tight containers */
.hero-card__inner {
  max-width: 980px;
  margin: 0;
}

/* soft radial accent like your original */
.hero-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -40%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(139,195,74,0.08) 0%, transparent 60%);
  opacity: 0.9;
  pointer-events: none;
  animation: hero-rotate 24s linear infinite;
  z-index: 0;
}

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

/* decorative SVG in corner */
.hero-decor {
  position: absolute;
  right: -18px;
  top: -18px;
  width: 150px;
  height: 150px;
  opacity: 0.12;
  transform: rotate(10deg);
  z-index: 0;
  pointer-events: none;
}

/* content sits above decorations */
.hero-title,
.hero-text,
.hero-actions {
  position: relative;
  z-index: 1;
}

/* title */
.hero-title {
  font-size: clamp(1.6rem, 2.2vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--accent);
  letter-spacing: -0.3px;
}

/* body text */
.hero-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.93);
  max-width: 70ch;
}

/* actions (buttons) */
.hero-actions {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

/* hover lift for whole card if desired */
.hero-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}

/* responsive adjustments */
@media (max-width: 720px) {
  .hero-card { padding: 1.5rem; border-radius: 16px; }
  .hero-text { font-size: 1rem; }
  .hero-actions { justify-content: flex-start; }
  .hero-decor { width: 100px; height: 100px; right: -8px; top: -8px; opacity: 0.08; }
}

    .background-particles { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: -1; }
    .particle { position: absolute; width: 3px; height: 3px; background: #008000; border-radius: 50%; animation: float 6s infinite linear; opacity: 0.6; }
    @keyframes float { 0% { transform: translateY(100vh) rotate(0deg); opacity: 0; } 10% { opacity: 0.6; } 90% { opacity: 0.6; } 100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; } }

    .container { max-width: 1200px; margin: 0 auto; padding: 2rem; position: relative; z-index: 1; }

    .header-container { display: flex; justify-content: space-between; align-items: center; margin-bottom: 3rem; animation: slideInDown 1s ease-out; }
    @keyframes slideInDown { from { transform: translateY(-50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

   .header-title {
  width: 500px;
max-width: 90vw;
  height: auto;
  cursor: pointer;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.header-title:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.6));
}
    .header-logo img { width: 300px; height: auto; transition: transform 0.3s ease; filter: drop-shadow(0 0 10px rgba(75, 111, 68, 0.3)); }
    .header-logo img:hover { transform: scale(1.1); }

    .nav-section { text-align: left; margin-bottom: 3rem; animation: fadeInUp 1s ease-out 0.2s both; }

    @keyframes shimmer { 0% { left: -40%; } 100% { left: 140%; } }
    @keyframes announcementIn { from { transform: translateY(-10px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

    .announcement p {
      color: #eaf4e9;
      font-weight: 600;
      text-align: left;
      font-size: 0.98rem;
      line-height: 1.3;
      max-width: 1000px;
    }

    .announcement a {
      color: #cfe9ce;
      text-decoration: underline;
      font-weight: 700;
    }
    .announcement a:hover { text-decoration: none; }

    .nav-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 2rem; }
    .nav-btn {
      padding: 0.8rem 1.5rem;
      background: linear-gradient(135deg, rgba(75, 111, 68, 0.2), rgba(75, 111, 68, 0.1));
      border: 1px solid rgba(75, 111, 68, 0.3);
      border-radius: 25px;
      color: #008000;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      cursor: pointer;
    }
    .nav-btn:hover { background: linear-gradient(135deg, rgba(75, 111, 68, 0.3), rgba(75, 111, 68, 0.2)); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(75, 111, 68, 0.2); }
    .nav-btn.active { background: linear-gradient(135deg, #008000, #5a8a52); color: white; }

    .content-section { display: none; animation: fadeInUp 0.6s ease-out both; }
    .content-section.active { display: block; }

    .goal-text {
      font-size: 1.3rem;
      margin-bottom: 3rem;
      padding: 1.5rem;
      background: linear-gradient(135deg, rgba(75, 111, 68, 0.1), rgba(75, 111, 68, 0.05));
      border-radius: 15px;
      border: 1px solid rgba(75, 111, 68, 0.3);
      animation: fadeInUp 1s ease-out 0.6s both;
      position: relative;
      overflow: hidden;
    }
    .goal-text::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(75, 111, 68, 0.1), transparent);
      transition: left 0.8s ease;
    }
    .goal-text:hover::before { left: 100%; }

    .email { color: #008000 !important; transition: all 0.3s ease; cursor: pointer; text-decoration: none; position: relative; }
    .email:hover { color: #5a8a52 !important; text-shadow: 0 0 10px rgba(75, 111, 68, 0.5); }
    a, a:link, a:visited { color: #008000; text-decoration: none; transition: all 0.3s ease; }
    a:hover { color: #5a8a52; text-shadow: 0 0 5px rgba(75, 111, 68, 0.3); }

    .highlight-goal { color: #008000; font-weight: 700; font-size: 1.4rem; display: inline-block; animation: pulse 2s infinite; }
    @keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }

    .section-title { font-size: 2rem; color: #008000; margin: 3rem 0 2rem 0; text-align: left; font-weight: 700; position: relative; }
    .section-title::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background: linear-gradient(90deg, #008000, #5a8a52); border-radius: 2px; }

    .two-column { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; margin: 3rem 0; animation: fadeInUp 1s ease-out 0.9s both; }
    .column {
      padding: 2rem;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      backdrop-filter: blur(10px);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    .column::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #008000, #5a8a52, #008000); transform: scaleX(0); transition: transform 0.3s ease; }
    .column:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); border-color: rgba(75, 111, 68, 0.3); }
    .column:hover::before { transform: scaleX(1); }
    .column strong { font-size: 1.3rem; color: #008000; display: block; margin-bottom: 1rem; font-weight: 700; }

    .benefits-list { margin: 2rem 0; animation: fadeInUp 1s ease-out 1.2s both; }
    .benefits-list ul { list-style: none; padding: 0; }
    .benefits-list li {
      padding: 0.8rem 0;
      padding-left: 2rem;
      position: relative;
      transition: all 0.3s ease;
      border-radius: 8px;
      margin-bottom: 0.5rem;
    }
    .benefits-list li::before { content: '✓'; position: absolute; left: 0; color: #008000; font-weight: bold; font-size: 1.2rem; transition: transform 0.3s ease; }
    .benefits-list li:hover { background: rgba(75, 111, 68, 0.1); transform: translateX(10px); }
    .benefits-list li:hover::before { transform: scale(1.3); }

    .download-box {
      margin: 3rem 0;
      padding: 2rem;
      background: linear-gradient(135deg, rgba(75, 111, 68, 0.15), rgba(75, 111, 68, 0.05));
      border: 2px solid #008000;
      border-radius: 20px;
      text-align: left;
      position: relative;
      overflow: hidden;
      animation: fadeInUp 1s ease-out 1.5s both;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .download-box::before {
      content: '';
      position: absolute;
      top: -2px; left: -2px; right: -2px; bottom: -2px;
      background: linear-gradient(45deg, #008000, #5a8a52, #008000, #5a8a52);
      z-index: -1; border-radius: 20px; opacity: 0; transition: opacity 0.3s ease;
    }
    .download-box:hover::before { opacity: 1; }
    .download-box:hover { transform: scale(1.02); box-shadow: 0 10px 30px rgba(75, 111, 68, 0.3); }
    .download-box a { color: #008000; text-decoration: none; font-weight: 700; font-size: 1.2rem; transition: all 0.3s ease; }
    .download-box a:hover { color: #5a8a52; text-shadow: 0 0 10px rgba(75, 111, 68, 0.5); }

    .highlight-box {
      margin: 3rem 0;
      padding: 2rem;
      background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(33, 150, 243, 0.05));
      border-left: 5px solid #2196f3;
      border-radius: 15px;
      position: relative;
      animation: fadeInUp 1s ease-out 1.8s both;
      transition: all 0.3s ease;
    }
    .highlight-box::before { content: '💡'; position: absolute; top: 1rem; right: 1rem; font-size: 1.5rem; animation: bounce 2s infinite; }
    @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-10px); } 60% { transform: translateY(-5px); } }
    .highlight-box:hover { transform: translateX(10px); box-shadow: -10px 10px 30px rgba(33, 150, 243, 0.2); }

    .founder-section { background: linear-gradient(135deg, rgba(75, 111, 68, 0.1), rgba(75, 111, 68, 0.05)); border-radius: 20px; padding: 2rem; margin: 3rem 0; border: 1px solid rgba(75, 111, 68, 0.2); }
    .founder-section h3 { color: #008000; font-size: 1.5rem; margin-bottom: 1rem; }

    .involvement-box {
      background: linear-gradient(135deg, rgba(75, 111, 68, 0.15), rgba(75, 111, 68, 0.08));
      border: 2px solid #008000;
      border-radius: 20px;
      padding: 2rem;
      margin: 3rem 0;
      text-align: left;
      transition: all 0.3s ease;
    }
    .involvement-box:hover { transform: scale(1.02); box-shadow: 0 15px 30px rgba(75, 111, 68, 0.2); }
    .involvement-box h3 { color: #008000; font-size: 1.8rem; margin-bottom: 1rem; }

.involvement-box1 {
  /* slight translucent base so it reads as glass in all browsers */
  background: rgba(255, 255, 255, 0.03);  

  /* the blur you asked for (increase if you want stronger blur) */
  backdrop-filter: blur(40px) saturate(120%);
  -webkit-backdrop-filter: blur(40px) saturate(120%);

  /* soft border and shadow so content stays readable */
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);

  border-radius: 20px;
  padding: 2rem;
  margin: 3rem 0;
  text-align: left;
  transition: all 0.3s ease;

  position: relative;
  z-index: 2; /* ensure it sits above overlays you want blurred */
}
.involvement-box1:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(75,111,68,0.18);
}
.involvement-box1 h3 {
  color: #008000;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

    .footer-section { margin-top: 4rem; padding: 2rem; text-align: left; background: linear-gradient(135deg, rgba(75, 111, 68, 0.1), transparent); border-radius: 15px; animation: fadeInUp 1s ease-out 2.1s both; }
    .footer-section i { font-style: italic; color: #cccccc; font-size: 1.1rem; }

    @media (max-width: 768px) {
      .container { padding: 1rem; }
      .header-container { flex-direction: column; text-align: left; gap: 1rem; }
      .header-logo img { width: 270px; }
      .two-column { grid-template-columns: 1fr; }
      .column { padding: 1.5rem; }
      .nav-buttons { flex-direction: column; align-items: center; }
      .nav-btn { width: 200px; text-align: center; }
    }

    html { scroll-behaviour: smooth; }

    .loading-overlay {
      position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #000; display: flex; justify-content: center; align-items: center; z-index: 1000;
      animation: fadeOut 0.5s ease-out 2s forwards;
    }
    .loading-spinner { width: 50px; height: 50px; border: 3px solid rgba(75, 111, 68, 0.3); border-radius: 50%; border-top-color: #008000; animation: spin 1s ease-in-out infinite; }
    @keyframes spin { to { transform: rotate(360deg); } }
    @keyframes fadeOut { to { opacity: 0; visibility: hidden; } }

    .risk-box {
  background: linear-gradient(135deg, rgba(0, 225, 0, 0.05), rgba(0, 225, 0, 0.3));
  border-radius: 20px;
  padding: 40px;
  margin: 60px 0;
  border: 1px dashed var(--primary);
    }

    .risk-box h3 {
      color: var(--primary);
      margin-bottom: 15px;
      font-size: 1.6rem;
    }

    .risk-list {
      list-style-type: none;
      margin-top: 15px;
    }

    .risk-list li {
      margin-bottom: 12px;
      font-size: 1.05rem;
      color: var(--gray);
    }

    .risk-list li::before {
      content: "✓";
      color: var(--primary);
      font-weight: bold;
      margin-right: 8px;
	}
.nav-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Sparkle Button */
.sparkle-btn {
  flex: 0 0 auto;
  min-width: 200px;
  background: radial-gradient(circle at top left, #fff8e1, #fff3cd);
  border-radius: 25px;
  padding: 0.6rem 1.2rem;    /* smaller padding for a shorter button */
  border: 2px solid gold;
  box-shadow: 0 0 6px rgba(255, 215, 0, 0.4);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #b8860b;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.sparkle-btn::after {
  content: '✨';
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 1.5rem;
  opacity: 0.7;
}

.nav-btn:hover,
.sparkle-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(255, 223, 0, 0.7);
}
	    .highlight-section {
    background: radial-gradient(circle at top left, #fff8e1, #fff3cd);
    border-radius: 20px;
    padding: 2rem;
    margin: 3rem 0;
    border: 2px solid gold;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    position: relative;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #b8860b;
    text-align: left;
  }

  .highlight-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: bold;
  }

  .highlight-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  /* Sparkle animation  */
  .sparkle {
    position: absolute;
    width: 5px;
    height: 5px;
    background: gold;
    border-radius: 50%;
    animation: sparkleAnim 2s infinite;
  }

  @keyframes sparkleAnim {
    0%, 100% { transform: translateY(0) scale(1); opacity: 1; }
    50% { transform: translateY(-10px) scale(1.5); opacity: 0.6; }
  }
   .section-header h2 {
      font-size: 2.6rem;
      color: var(--text);
      margin-bottom: 12px;
      position: relative;
      display: inline-block;
      font-weight: 700;
    }   
    .timeline-container {
      position: relative;
      padding: 60px 0;
      margin: 60px 0;
    }

    .timeline-line {
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(180deg, var(--primary), var(--secondary));
      transform: translateX(-50%);
      z-index: 0;
    }

    .timeline-item {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 50px;
      position: relative;
      z-index: 1;
    }

    .timeline-dot {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      width: 24px;
      height: 24px;
      background: var(--primary);
      border: 4px solid var(--white);
      border-radius: 50%;
      box-shadow: 0 0 0 4px rgba(0, 128, 0, 0.2);
      z-index: 1;
    }

    .timeline-content {
      width: 45%;
      padding: 30px;
      background: var(--white);
      border-radius: 18px;
      box-shadow: var(--shadow);
      transition: var(--transition);
    }

    .timeline-content:hover {
      transform: scale(1.03);
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    }

    .timeline-content h3 {
      color: var(--primary);
      margin-bottom: 10px;
      font-size: 1.4rem;
    }

    .timeline-item:nth-child(even) .timeline-content {
      margin-left: auto;
    }

    .timeline-item:nth-child(even) .timeline-dot {
      left: 50%;
    }
