.hero {
  min-height: 100vh;
  background: #000000;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 10;
  padding: 40px 5% 0 5%;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-text {
  max-width: 650px;
  flex: 1;
}

.hero-h1 {
  font-size: 64px;
  color: white;
  margin-bottom: 30px;
  line-height: 1.1;
  font-weight: 800;
}

.subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
  line-height: 1.6;
  max-width: 700px;
}

.tagline {
  font-size: 20px;
  color: white;
  margin-bottom: 50px;
  font-weight: 600;
  background: linear-gradient(135deg, #a855f7, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  align-items: center;
}

.cta-button {
  display: inline-block;
  padding: 20px 50px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border: none;
}

.cta-button-primary {
  position: relative;
  font-weight: 700;
  background: #000000;
  color: white;
  padding: 18px 50px;
  cursor: pointer;
  border-radius: 50px;
  outline: none;
  overflow: hidden;
  z-index: 1;
  border: 2px solid #a855f7;
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
}

.cta-button-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(168, 85, 247, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.cta-button-primary:hover::before {
  left: 100%;
}

.cta-button-primary:hover {
  background: #000000;
  box-shadow: 0 0 50px rgba(168, 85, 247, 0.7);
  transform: translateY(-2px);
}

.cta-button-secondary {
  background: linear-gradient(135deg, #a855f7, #ec4899);
  color: white;
  box-shadow: 0 0 30px rgba(236, 72, 153, 0.3);
}

.cta-button-secondary:hover {
  box-shadow: 0 0 50px rgba(236, 72, 153, 0.5);
  transform: translateY(-2px);
}

.stats-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  padding: 8px 40px;
  max-width: 400px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(168, 85, 247, 0.2);
}

.chart-container {
  background: transparent;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  height: 200px;
  margin-bottom: 10px;
}

.bar {
  flex: 1;
  background: linear-gradient(
    to top,
    rgba(168, 85, 247, 0.6),
    rgba(236, 72, 153, 0.8)
  );
  border-radius: 8px 8px 0 0;
  position: relative;
  animation: growBar 1.5s ease-out forwards;
  transform-origin: bottom;
  opacity: 0;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
}

.bar:nth-child(1) {
  height: 40%;
  animation-delay: 0.2s;
}
.bar:nth-child(2) {
  height: 65%;
  animation-delay: 0.4s;
}
.bar:nth-child(3) {
  height: 50%;
  animation-delay: 0.6s;
}
.bar:nth-child(4) {
  height: 80%;
  animation-delay: 0.8s;
}
.bar:nth-child(5) {
  height: 100%;
  animation-delay: 1s;
}

@keyframes growBar {
  from {
    transform: scaleY(0);
    opacity: 0;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

.stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(168, 85, 247, 0.1);
}

.stat-item:last-child {
  border-bottom: none;
}

.stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-weight: 500;
}

.stat-value {
  color: #a855f7;
  font-size: 24px;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

.stat-value-small {
  color: #a855f7;
  font-size: 18px;
  font-weight: 700;
  padding-left: 15px;
  text-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

.awards-section {
  padding-top: 0px;
  display: flex;
  gap: 20px;
  margin-top: 0;
  flex-wrap: wrap;
  position: relative;
}

.award-item {
  position: relative;
  cursor: pointer;
  transition: transform 0.3s;
}

.award-item:hover {
  transform: translateY(-5px);
}

.award-item img {
  width: 84px;
  height: auto;
  display: block;
  /* filter: drop-shadow(0 0 15px rgba(255, 255, 150, 0.7))
    drop-shadow(0 0 25px rgba(255, 200, 100, 0.6))
    drop-shadow(0 0 40px rgba(220, 150, 255, 0.5)); */
  filter: drop-shadow(0 0 18px rgba(255, 240, 120, 0.8)) drop-shadow(0 0 32px rgba(255, 220, 80, 0.7)) drop-shadow(0 0 50px rgba(255, 200, 60, 0.6)) drop-shadow(0 0 65px rgba(230, 160, 255, 0.4));
  transition: filter 0.3s ease;
}

.award-item:hover img {
  filter: drop-shadow(0 0 12px rgba(255, 220, 180, 0.75))
    drop-shadow(0 0 20px rgba(200, 180, 255, 0.65))
    drop-shadow(0 0 35px rgba(168, 100, 255, 0.55));
  animation: neonPulse 2s infinite alternate;
}

.award-badge {
  width: 80px;
  height: 80px;
  position: relative;
}

.award-badge svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 5px 15px rgba(245, 158, 11, 0.4));
}

.award-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
}

.award-tooltip {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  color: #1a1a1a;
  padding: 12px 20px;
  border-radius: 12px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.award-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: rgba(255, 255, 255, 0.95);
}

.award-item:hover .award-tooltip {
  opacity: 1;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite;
}

.scroll-indicator::before {
  content: "";
  display: block;
  width: 30px;
  height: 50px;
  border: 2px solid rgba(168, 85, 247, 0.5);
  border-radius: 25px;
  position: relative;
}

.scroll-indicator::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: #a855f7;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

@keyframes scroll {
  0% {
    top: 10px;
    opacity: 1;
  }
  100% {
    top: 35px;
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .hero-h1 {
    font-size: 42px;
  }

  .subtitle {
    font-size: 18px;
  }

  .tagline {
    font-size: 20px;
  }

  .hero-content {
    padding: 0 5%;
    flex-direction: column;
    gap: 40px;
  }

  .stats-card {
    display: none;
  }

  .nav-menu {
    display: none;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }
}
