.tick-list {
      list-style-type: none;
    }

    .tick-list li::before {
      content: '\2713'; /* Unicode character for a checkmark */
      font-size: 1.2em;
      margin-right: 0.5em;
      color: green; /* Color of the checkmark */
    }
    
    .about-stats {
  background: linear-gradient(135deg, #f8fbff, #f0f7ff);
  border-top: 1px solid #e6ecf5;
  border-bottom: 1px solid #e6ecf5;
}

.stats-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #007bff;
}

.stats-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 123, 255, 0.2);
}

.stats-card i {
  font-size: 40px;
  color: #007bff;
  margin-bottom: 10px;
}

.stats-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.stats-card p {
  font-size: 22px;
  font-weight: 700;
  color: #007bff;
  margin: 0;
}
.anniversary-banner {
  background: linear-gradient(135deg, #0078ff, #00c6ff);
  color: #fff;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 8px 25px rgba(0, 120, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.anniversary-banner::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.anniversary-banner::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(15px); }
}

.anniversary-card {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
}

.anniversary-card h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

.anniversary-card p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

.anniversary-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #0078ff;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  margin-top: 20px;
  font-weight: 800;
  font-size: 2.5rem;
  box-shadow: 0 6px 15px rgba(255,255,255,0.3);
  animation: pulse 2s infinite;
}

.anniversary-badge small {
  font-size: 12px;
  font-weight: 600;
  color: #0078ff;
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255,255,255,0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}


.about-stats {
  background: linear-gradient(135deg, #f8fbff, #f0f7ff);
  border-top: 1px solid #e6ecf5;
  border-bottom: 1px solid #e6ecf5;
  position: relative;
  overflow: visible;
}

.stats-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #007bff;
  cursor: pointer;
}

.stats-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 123, 255, 0.2);
}

.chart-overlay {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%) scale(0.95);
  width: 100%;
  max-width: 900px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  margin-top: 20px;
  z-index: 10;
  padding: 20px;
}

.chart-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1);
}

.chart-title {
  font-weight: 600;
  color: #007bff;
  margin-bottom: 10px;
  text-align: center;
}

#chartOverlayReads .chart-title {
  color: #28a745;
}

@media (max-width: 768px) {
  .chart-overlay {
    max-width: 95%;
  }
}

 .live-card { position: relative; overflow: visible; }
.live-badge {
  position: absolute; top: 10px; right: 12px;
  background: #111; color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: .3px;
  padding: 4px 8px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.live-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #28a745; box-shadow: 0 0 8px rgba(40,167,69,.9);
  animation: blinkLive 1s infinite;
}
@keyframes blinkLive { 0%,100%{opacity:1} 50%{opacity:.3} }

/* optional: a gentle pulse on numbers so they feel live */
.live-card p {
  animation: pulseLive 1.5s ease-in-out infinite;
}
@keyframes pulseLive {
  0%,100% { text-shadow: 0 0 6px rgba(0,123,255,.45); opacity: 1; }
  50%     { text-shadow: 0 0 12px rgba(0,123,255,.9);  opacity: .92; }
}