  
    /* --- Base & Theme --- */
    body {
      background: linear-gradient(135deg, #FFFBEA, #fff9d4);
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      overflow-x: hidden;
      transition: background 0.5s ease;
      color: #1a1a1a;
    }
    .dark-mode {
      background: linear-gradient(135deg, #1a1a1a, #333);
      color: #f5e542;
    }
    a, a:hover {
      text-decoration: none;
    }

    /* --- Hero --- */
    .hero {
      background: linear-gradient(to right, #FFC800, #FFB700);
      color: #000;
      padding: 80px 20px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
      position: relative;
      z-index: 5;
      user-select: none;
    }
    .hero h1 {
      font-size: 4rem;
      font-weight: 900;
      margin-bottom: 10px;
      text-shadow: 0 2px 5px rgba(0,0,0,0.15);
    }
    .hero p {
      font-size: 1.6rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }

    /* --- Section Titles --- */
    .section-title {
      font-size: 2.6rem;
      font-weight: 900;
      text-align: center;
      margin: 60px 0 50px;
      color: #b8860b;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      position: relative;
      user-select: none;
    }
    .section-title::after {
      content: '';
      display: block;
      width: 90px;
      height: 4px;
      background: #ffc107;
      margin: 10px auto 0;
      border-radius: 2px;
      box-shadow: 0 0 10px #ffc107aa;
    }

    /* --- Flip Cards --- */
    .flip-card {
      background: transparent;
      width: 100%;
      height: 300px;
      perspective: 1200px;
    }
    .flip-card-inner {
      position: relative;
      width: 100%;
      height: 100%;
      transition: transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
      transform-style: preserve-3d;
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
      border-radius: 16px;
    }
    .flip-card:hover .flip-card-inner,
    .flip-card:focus-within .flip-card-inner {
      transform: rotateY(180deg);
    }
    .flip-card-front, .flip-card-back {
      position: absolute;
      width: 100%;
      height: 100%;
      backface-visibility: hidden;
      border-radius: 16px;
      padding: 25px 30px;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      user-select: none;
    }
    .flip-card-front {
      background: #fff;
      border: 2px solid #ffca28;
      color: #222;
    }
    .flip-card-back {
      background: #fff3b0;
      border: 2px solid #ffc107;
      color: #4a3e00;
      transform: rotateY(180deg);
      font-weight: 600;
      font-size: 1rem;
      text-align: center;
      line-height: 1.4;
      padding-top: 50px;
      padding-bottom: 50px;
      box-shadow: inset 0 0 20px #ffeb3b88;
    }
    .icon {
      font-size: 3rem;
      color: #ffb300;
      margin-bottom: 20px;
      filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.15));
      user-select: none;
    }
    .flip-card h5, .flip-card h6 {
      margin: 0;
      font-weight: 900;
      color: #b8860b;
      user-select: none;
    }

    /* --- Timeline --- */
    .timeline {
      position: relative;
      max-width: 960px;
      margin: auto;
      padding: 40px 20px 80px;
      user-select: none;
      z-index: 2;
    }
    .timeline::after {
      content: '';
      position: absolute;
      width: 6px;
      background: #ffb300;
      top: 0;
      bottom: 0;
      left: 50%;
      margin-left: -3px;
      border-radius: 3px;
      box-shadow: 0 0 12px #ffb300aa;
      z-index: 1;
    }
    .timeline-block {
      position: relative;
      width: 50%;
      padding: 20px 40px;
      box-sizing: border-box;
      z-index: 5;
    }
    .timeline-block.left {
      left: 0;
      text-align: right;
    }
    .timeline-block.right {
      left: 50%;
      text-align: left;
    }
    .timeline-block::before {
      content: '';
      position: absolute;
      top: 30px;
      width: 24px;
      height: 24px;
      background: #ffc107;
      border: 4px solid #fff;
      border-radius: 50%;
      box-shadow: 0 0 10px #ffc107bb;
      z-index: 10;
      transition: background 0.3s ease;
    }
    .timeline-block.left::before {
      right: -12px;
    }
    .timeline-block.right::before {
      left: -12px;
    }
    .timeline-content {
      background: #fff8c4;
      padding: 25px 30px;
      border-radius: 16px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      font-weight: 600;
      color: #4a3e00;
      user-select: text;
      transition: transform 0.3s ease;
    }
    .timeline-content h5 {
      font-weight: 900;
      color: #b8860b;
      margin-bottom: 8px;
      font-size: 1.25rem;
    }
    .timeline-content p {
      font-size: 1rem;
      line-height: 1.4;
    }

    /* --- Responsive Timeline --- */
    @media (max-width: 768px) {
      .timeline-block {
        width: 100% !important;
        text-align: left !important;
        padding-left: 60px;
        padding-right: 20px;
        margin-bottom: 50px;
      }
      .timeline-block::before {
        left: 20px !important;
        right: auto !important;
      }
      .timeline::after {
        left: 30px !important;
      }
    }

    /* --- Video Section --- */
    .video-wrapper {
      max-width: 720px;
      margin: 60px auto 60px;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 15px 30px rgba(0,0,0,0.25);
      user-select: none;
    }
    iframe {
      width: 100%;
      height: 405px;
      border: none;
      border-radius: 16px;
      display: block;
    }

    /* --- Manifesto Download Button --- */
    .btn-manifesto {
      background: #ffc107;
      color: #4a3e00;
      font-weight: 900;
      padding: 15px 30px;
      border: none;
      border-radius: 50px;
      box-shadow: 0 5px 15px #ffca2877;
      cursor: pointer;
      transition: background 0.3s ease, box-shadow 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      user-select: none;
      text-decoration: none;
      font-size: 1.2rem;
      margin: 20px auto;
    }
    .btn-manifesto:hover, .btn-manifesto:focus {
      background: #ffb300;
      box-shadow: 0 8px 20px #ffca2888;
      outline: none;
    }
    .btn-manifesto i {
      font-size: 1.4rem;
    }

    /* --- Voter Reminder --- */
    .voter-reminder {
      background: #fff8c4;
      border: 2px solid #ffc107;
      border-radius: 16px;
      max-width: 500px;
      margin: 30px auto 80px;
      padding: 20px 30px;
      font-weight: 600;
      color: #4a3e00;
      text-align: center;
      box-shadow: 0 8px 20px rgba(255,193,7,0.3);
      user-select: none;
    }
    .voter-reminder a {
      color: #b8860b;
      font-weight: 900;
      text-decoration: underline;
    }
    .voter-reminder a:hover,
    .voter-reminder a:focus {
      color: #ffb300;
      outline: none;
    }

    /* --- Dark Mode Toggle --- */
    .dark-toggle-wrapper {
      position: fixed;
      top: 20px;
      right: 20px;
      background: #ffc107cc;
      border-radius: 50px;
      box-shadow: 0 5px 15px #ffca2877;
      cursor: pointer;
      width: 56px;
      height: 56px;
      display: flex;
      justify-content: center;
      align-items: center;
      user-select: none;
      transition: background 0.3s ease;
      z-index: 1000;
    }
    .dark-toggle-wrapper:hover {
      background: #ffb300cc;
    }
    .dark-toggle-wrapper i {
      font-size: 1.8rem;
      color: #4a3e00;
      transition: color 0.3s ease;
    }
    .dark-mode .dark-toggle-wrapper i {
      color: #fff9c4;
    }

    /* --- Language Selector Placeholder --- */
    .lang-selector {
      position: fixed;
      top: 20px;
      left: 20px;
      background: #ffc107cc;
      border-radius: 50px;
      box-shadow: 0 5px 15px #ffca2877;
      width: 56px;
      height: 56px;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      user-select: none;
      z-index: 1000;
      transition: background 0.3s ease;
    }
    .lang-selector:hover {
      background: #ffb300cc;
    }
    .lang-selector i {
      font-size: 1.6rem;
      color: #4a3e00;
      transition: color 0.3s ease;
    }
    .dark-mode .lang-selector i {
      color: #fff9c4;
    }
  


  
    html {
      font-size: 16px;
    }

    @media (max-width: 768px) {
      html {
        font-size: 15px;
      }
    }

    @media (max-width: 576px) {
      html {
        font-size: 14px;
      }

      .hero h1 {
        font-size: 2.2rem;
      }

      .hero p {
        font-size: 1.1rem;
      }

      .section-title {
        font-size: 1.8rem;
      }

      .flip-card {
        height: 260px;
      }

      .flip-card-front, .flip-card-back {
        padding: 20px;
      }

      .timeline-content {
        padding: 20px;
      }

      .btn-manifesto {
        font-size: 1rem;
        padding: 12px 20px;
      }

      .video-wrapper iframe {
        height: 250px;
      }
    }

    .voter-reminder {
      background-color: #f4f4f4;
      padding: 1rem;
      text-align: center;
      font-size: 1rem;
      margin-top: 1rem;
    }

    .voter-reminder a {
      color: #0056b3;
      text-decoration: underline;
    }
  



.glossy-hero {
  background: linear-gradient(145deg, #ffe600, #ffcc00);
  color: #000;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow:
    inset 0 8px 10px rgba(255, 255, 255, 0.5),
    inset 0 -8px 15px rgba(0, 0, 0, 0.1),
    0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Gloss sparkle overlay */
.glossy-hero::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 60%);
  animation: sparkleShift 15s linear infinite;
  pointer-events: none;
  transform: rotate(25deg);
}

/* Additional shimmer streak */
.glossy-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 70%
  );
  animation: shimmerSlide 5s ease-in-out infinite;
  pointer-events: none;
}

/* Shimmer Animations */
@keyframes shimmerSlide {
  0% { left: -100%; }
  50% { left: 0%; }
  100% { left: 100%; }
}

@keyframes sparkleShift {
  0% { transform: rotate(25deg) translateX(0); }
  100% { transform: rotate(25deg) translateX(100px); }
}

/* Hero text styles */
.glossy-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.glossy-hero p {
  font-size: 1.2rem;
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto 10px;
}

.glossy-hero strong {
  font-weight: 700;
  font-size: 1.25rem;
}


.about-section {
  background: linear-gradient(to right, #fffde7, #fff9c4);
  padding: 80px 20px;
  border-top: 4px solid #ffe600;
  border-bottom: 4px solid #ffe600;
}

.about-badge {
  width: 250px;
  margin: 0 auto;
  position: relative;
  border-radius: 30px;
  border: 6px solid #ffeb3b;
  background: linear-gradient(145deg, #fffde7, #fdd835);
  padding: 10px;
  box-shadow:
    inset 0 4px 6px rgba(255, 255, 255, 0.7),
    0 8px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

/* subtle sparkle overlay */
.about-badge::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
  animation: sparkle 4s linear infinite;
  pointer-events: none;
  border-radius: 30px;
  mix-blend-mode: screen;
  z-index: 1;
}

@keyframes sparkle {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(20px, 20px) rotate(360deg); }
}

.about-badge img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2; /* keep above sparkle */
}

.about-badge:hover {
  transform: scale(1.05);
  box-shadow:
    inset 0 6px 8px rgba(255, 255, 255, 0.9),
    0 12px 35px rgba(255, 235, 59, 0.7);
}










  .glossy-card {
    background: linear-gradient(145deg, #ffeb3b, #fdd835);
    color: #000; /* pure black text */
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow:
      inset 0 4px 6px rgba(255, 255, 255, 0.6), /* gloss highlight */
      inset 0 -6px 10px rgba(0, 0, 0, 0.1),     /* depth shadow */
      0 10px 20px rgba(0, 0, 0, 0.3);           /* outer shadow */
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .glossy-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0) 60%);
    pointer-events: none;
    z-index: 1;
  }

  .glossy-card:hover {
    transform: translateY(-6px);
    box-shadow:
      inset 0 4px 6px rgba(255, 255, 255, 0.7),
      inset 0 -6px 10px rgba(0, 0, 0, 0.12),
      0 14px 24px rgba(0, 0, 0, 0.4);
  }

  .glossy-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #000;
    position: relative;
    z-index: 2;
  }

  .glossy-card h5 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
  }

  .glossy-card p {
    font-size: 1rem;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
  }

  .section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 40px;
  }






.flip-card {
  background: transparent;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 220px;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner,
.flip-card:focus .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: #333;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.flip-card-front {
  background: linear-gradient(145deg, #fffde7, #fff176);
  flex-direction: column;
  text-align: center;
}

.flip-card-front i.icon {
  font-size: 2.5rem;
  color: #fbc02d;
  margin-bottom: 10px;
}

.flip-card-back {
  background: #fffde7;
  transform: rotateY(180deg);
  color: #444;
}




  .sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffeb3b;
    color: #000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
  }

  .sticky-cta .cta-link {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .sticky-cta .cta-link i {
    font-size: 1.2rem;
  }

  @media (max-width: 768px) {
    .sticky-cta {
      font-size: 0.85rem;
    }
  }



.glossy-card {
  background: linear-gradient(145deg, #fff938, #f7ce00); /* brighter yellow */
  color: #000;
  border-radius: 24px;
  padding: 30px 20px;
  box-shadow:
    inset 0 8px 10px rgba(255, 255, 255, 0.6),
    inset 0 -8px 14px rgba(0, 0, 0, 0.15),
    0 12px 24px rgba(0, 0, 0, 0.35);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glossy-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: 24px;
  background: linear-gradient(120deg, rgba(255,255,255,0.7) 10%, rgba(255,255,255,0.1) 40%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

@keyframes shimmer {
  0% { background-position: -150% 0; }
  100% { background-position: 150% 0; }
}


.glossy-card {
  border: 1px solid rgba(255, 255, 255, 0.4); /* gives structure */
}



























.glossy-card.accordion-item {
  background: linear-gradient(145deg, #fff176, #fbc02d);
  border-radius: 16px;
  border: none;
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.5), 0 8px 18px rgba(0,0,0,0.2);
}
.accordion-button {
  font-size: 1.1rem;
  background: transparent;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-body ul {
  padding-left: 1.2rem;
}






.glossy-card {
  background: linear-gradient(145deg, #fff176, #fdd835);
  color: #000;
  border-radius: 20px;
  padding: 25px 20px;
  box-shadow:
    inset 0 4px 6px rgba(255, 255, 255, 0.6),
    inset 0 -6px 10px rgba(0, 0, 0, 0.1),
    0 10px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.glossy-card:hover {
  transform: translateY(-5px);
  box-shadow:
    inset 0 4px 6px rgba(255, 255, 255, 0.7),
    inset 0 -6px 12px rgba(0, 0, 0, 0.15),
    0 14px 24px rgba(0, 0, 0, 0.35);
}
.glossy-card h5 {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.glossy-card p {
  font-size: 0.95rem;
  margin-bottom: 6px;
}




















            .policy-card {
                background: linear-gradient(135deg, #fff176, #fdd835);
                border-radius: 16px;
                padding: 20px;
                box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
                text-align: left;
                transition: transform 0.3s ease;
                position: relative;
            }
            .policy-card:hover {
                transform: translateY(-6px);
                box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
            }
            .card-icon {
                width: 48px;
                height: 48px;
                background: #fffde7;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
                margin-bottom: 16px;
            }
            .policy-desc {
                font-size: 0.96rem;
                color: #333;
                line-height: 1.5;
                margin-top: 10px;
            }


            .glossy-card {
                background: linear-gradient(145deg, #fff176, #fdd835);
                border-radius: 20px;
                padding: 10px;
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
                transition: transform 0.4s ease, box-shadow 0.4s ease;
            }
            .glossy-card:hover {
                transform: translateY(-6px);
                box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
            }
            .accordion-button {
                background: transparent;
                font-size: 1.15rem;
                color: #000;
                gap: 10px;
                align-items: center;
            }
            .accordion-button:not(.collapsed) {
                background-color: #fff59d;
            }
            .accordion-body {
                animation: fadeIn 0.6s ease-in-out;
            }
            @keyframes fadeIn {
                from {
                    opacity: 0;
                    transform: translateY(15px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }


















            .glass-step {
                background: rgba(255, 243, 128, 0.8);
                backdrop-filter: blur(6px);
                border-radius: 20px;
                padding: 25px;
                box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
                transition: transform 0.3s ease;
                border-left: 6px solid #ffeb3b;
                position: relative;
            }
            .glass-step:hover {
                transform: translateY(-4px);
            }
            .stat-pill {
                display: inline-block;
                margin-top: 15px;
                padding: 8px 14px;
                font-weight: 700;
                font-size: 0.85rem;
                background: #000;
                color: #fff;
                border-radius: 50px;
            }
            .stat-quote {
                font-size: 0.9rem;
                font-style: italic;
                color: #555;
                border-left: 3px solid #fbc02d;
                padding-left: 12px;
            }

            .glossy-card {
                background: linear-gradient(145deg, #fff176, #fdd835);
                border-radius: 20px;
                padding: 10px;
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
                transition: transform 0.4s ease, box-shadow 0.4s ease;
            }
            .glossy-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
            }
            .accordion-button {
                background: transparent;
                font-size: 1.15rem;
                color: #000;
                gap: 10px;
                align-items: center;
                transition: background 0.3s ease;
            }
            .accordion-button:not(.collapsed) {
                background-color: #fff59d;
            }
            .accordion-body {
                background: #fffde7;
                border-radius: 12px;
                font-size: 0.95rem;
                color: #333;
                animation: fadeIn 0.5s ease-in-out;
            }
            @keyframes fadeIn {
                0% {
                    opacity: 0;
                    transform: translateY(10px);
                }
                100% {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
   











            .interactive-card {
                position: relative;
                padding: 24px 20px;
                border-radius: 20px;
                background: linear-gradient(135deg, #fff59d, #fdd835);
                transition: all 0.4s ease;
                box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
            }
            .interactive-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
            }
            .card-icon {
                width: 56px;
                height: 56px;
                border-radius: 50%;
                background: #fffde7;
                display: flex;
                align-items: center;
                justify-content: center;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            }
            .counter-box {
                font-size: 0.9rem;
                font-weight: 600;
                color: #000;
            }
            .timeline-card {
                background: #fffde7;
                border-left: 5px solid #ffeb3b;
                padding: 20px;
                border-radius: 16px;
                transition: transform 0.3s ease;
            }
            .timeline-card:hover {
                transform: scale(1.02);
                box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
            }

       
            .pledge-block {
                background: #fffdf3;
                border-left: 6px solid #fdd835;
                border-radius: 12px;
                padding: 24px;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
                transition: transform 0.3s ease, box-shadow 0.3s ease;
            }
            .pledge-block:hover {
                transform: translateY(-5px);
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            }
            .pledge-header h5 {
                font-weight: 700;
                margin-bottom: 12px;
                color: #222;
            }
            .pledge-body {
                font-size: 0.97rem;
                color: #444;
            }
            .pledge-stat {
                display: block;
                font-size: 0.85rem;
                margin-top: 15px;
                color: #000;
                font-weight: 600;
            }
        



      
            .timeline-advanced {
                background: #fffde7;
            }
            .timeline-track {
                position: relative;
                margin: 0 auto;
                padding-left: 30px;
                border-left: 5px solid #fdd835;
            }
            .timeline-node {
                margin-bottom: 80px;
                position: relative;
            }
            .timeline-year {
                position: absolute;
                left: -55px;
                top: 0;
                background: #fbc02d;
                color: #000;
                font-weight: 700;
                padding: 6px 14px;
                border-radius: 12px;
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            }
            .timeline-content {
                border-radius: 18px;
                padding: 28px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
                background: #fff;
                transition: all 0.3s ease;
            }
            .timeline-content:hover {
                transform: scale(1.015);
            }
            .timeline-node.left .timeline-content,
            .timeline-node.right .timeline-content {
                margin-left: 50px;
            }
            .milestone {
                margin-top: 15px;
                font-weight: 600;
                color: #444;
            }
            .gradient-start {
                background: linear-gradient(135deg, #fff9c4, #fbc02d);
            }
            .gradient-legal {
                background: linear-gradient(135deg, #e3f2fd, #90caf9);
            }
            .gradient-campaign {
                background: linear-gradient(135deg, #fce4ec, #f8bbd0);
            }
            .gradient-growth {
                background: linear-gradient(135deg, #e8f5e9, #a5d6a7);
            }
   

      
            .worker-journey-tunnel {
                background: linear-gradient(to right, #fffde7, #fff9c4);
                overflow-x: scroll;
                scroll-snap-type: x mandatory;
                display: flex;
                flex-direction: column;
                height: 100vh;
            }

            .tunnel-header {
                padding: 50px 20px 20px;
            }

            .tunnel-scroll {
                display: flex;
                width: max-content;
                scroll-behavior: smooth;
                scroll-snap-type: x mandatory;
            }

            .tunnel-slide {
                scroll-snap-align: start;
                min-width: 100vw;
                height: 80vh;
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                position: relative;
                padding: 40px 20px;
                background: #fffef0;
                border-right: 1px solid #fceaa7;
            }

            .year-badge {
                font-size: 4rem;
                color: #fbc02d;
                font-weight: 800;
                position: absolute;
                top: 30px;
                left: 30px;
                animation: pulse 3s infinite;
            }

            .slide-inner {
                max-width: 600px;
                text-align: center;
                animation: fadeInUp 0.8s ease forwards;
            }

            .floating-stat {
                margin-top: 30px;
                font-size: 1rem;
                font-weight: 600;
                background: #fff59d;
                border-radius: 12px;
                padding: 12px 20px;
                display: inline-block;
                box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
            }

            .circle-count {
                font-size: 2rem;
                font-weight: 800;
                color: #000;
                transition: all 0.3s ease;
            }

            @keyframes pulse {
                0%,
                100% {
                    transform: scale(1);
                    opacity: 1;
                }
                50% {
                    transform: scale(1.1);
                    opacity: 0.8;
                }
            }

            @keyframes fadeInUp {
                from {
                    opacity: 0;
                    transform: translateY(30px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
      

