.section-title {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  margin-bottom: 10px !important;
  font-size: 42px !important;
}

.section-title h2 {
  color: #38ACFA !important;
  font-size: 42px !important;
  font-weight: 700 !important;
  margin-bottom: 10px !important;
  text-align: center !important;
  width: 100% !important;
}




html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Scrollbar */

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #000000;
}

::-webkit-scrollbar-thumb {
  background: #38ACFA;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: #2f95d9;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #38ACFA #000000;
}

/* Hero Badge */

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(
    to bottom,
    rgba(56, 172, 250, 0.15),
    rgba(56, 172, 250, 0.05)
  );
  border: 1px solid rgba(56, 172, 250, 0.4);
  border-radius: 9999px;
  margin-bottom: 1rem !important;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  animation: popDownContent 1.2s cubic-bezier(0.23, 0.86, 0.39, 0.96) 0.2s forwards;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: #38ACFA;
}

.hero-badge span {
  font-size: 0.875rem;
  font-weight: 600;
  color: #38ACFA;
  letter-spacing: 0.02em;
}