body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f8f9fa;
  color: #000;
}

header {
  background-color: #007aff;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 15px 30px;
  align-items: center;
}

header nav a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
}

/* ==== Hashtag drop animation (NEW) ==== */
.tagline-boxes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
  overflow: hidden;
}

/* Base */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f8f9fa;
  color: #000;
}

header {
  background-color: #007aff;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 15px 30px;
  align-items: center;
}

header nav a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
}

/* ==== Hashtag bounce drop animation (UPDATED) ==== */
.tagline-boxes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
  overflow: hidden;
}

.tagline-boxes span {
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1rem;
  animation: bounceDrop 1s ease-out forwards;
  opacity: 0;
}

/* Sequential delays + colors */
.tagline-boxes span:nth-child(1) { animation-delay: 0.5s; background: #007bff; color: #fff; }
.tagline-boxes span:nth-child(2) { animation-delay: 1.5s; background: #28a745; color: #fff; }
.tagline-boxes span:nth-child(3) { animation-delay: 2.5s; background: #ffc107; color: #000; }
.tagline-boxes span:nth-child(4) { animation-delay: 3.5s; background: #17a2b8; color: #fff; }
.tagline-boxes span:nth-child(5) { animation-delay: 4.5s; background: #6f42c1; color: #fff; }

@keyframes bounceDrop {
  0%   { transform: translateY(-80px); opacity: 0; }
  60%  { transform: translateY(0);     opacity: 1; }
  75%  { transform: translateY(-10px); }
  90%  { transform: translateY(5px); }
  100% { transform: translateY(0); }
}

/* (Legacy slider styles – keep if used elsewhere) */
.banner-slider { overflow: hidden; width: 100%; height: 250px; }
.slides { display: flex; animation: slide 30s infinite; }
.slides img { width: 100%; height: 250px; object-fit: cover; }

@keyframes slide {
  0% { transform: translateX(0); }
  33% { transform: translateX(-100%); }
  66% { transform: translateX(-200%); }
  100% { transform: translateX(0); }
}

/* Sections */
.stats, .download { text-align: center; padding: 20px; }

footer {
  background-color: #007aff;
  color: white;
  text-align: center;
  padding: 10px;
}

footer {
  background-color: #007aff;
  color: white;
  text-align: center;
  padding: 10px;
}
