.hero-home {
  min-height: 100vh;
  min-height: 100dvh; /* Dynamic viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 80px 0; /* Add padding to account for header */
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-alt) 60%, #21262d 100%);
  overflow: hidden;
}

.hero-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    padding: 20px;
}

.hero-badge {
  display: inline-block;
  background: rgba(66, 165, 245, 0.12);
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  border-radius: 20px;
  padding: 7px 20px;
  margin-bottom: 28px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(66, 165, 245, 0.08);
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  margin-bottom: 28px;
  line-height: 1.1;
  color: var(--light);
  text-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray);
  margin-bottom: 44px;
  font-weight: 400;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-cta {
  font-size: 1.18rem;
  padding: 22px 48px;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(66, 165, 245, 0.25), 0 2px 8px rgba(0,0,0,0.10);
  border: 2px solid #fff;
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 8px 32px rgba(66, 165, 245, 0.25), 0 2px 8px rgba(0,0,0,0.10);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 12px rgba(66, 165, 245, 0.10);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 8px 32px rgba(66, 165, 245, 0.25), 0 2px 8px rgba(0,0,0,0.10);
  }
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  color: var(--primary);
  font-size: 2.2rem;
  opacity: 0.85;
  cursor: pointer;
  animation: bounce 1.8s infinite;
  z-index: 3;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(12px); }
}

@media (max-width: 768px) {
  .hero-home {
    padding: 60px 0;
  }

  .hero-title {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  .hero-badge {
    font-size: 0.95rem;
    padding: 6px 14px;
  }

  .hero-cta {
    padding: 16px 28px;
    font-size: 1rem;
  }

  .hero-content {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .hero-home {
    padding: 50px 0;
  }

  .hero-badge {
    font-size: 0.9rem;
    padding: 5px 12px;
  }

  .hero-content {
    padding: 0 16px;
  }
}

@media (max-width: 360px) {
  .hero-home {
    min-height: 100vh;
    min-height: 100dvh;
  }
}

@media (max-height: 668px) {
  .hero-home {
    height: 740px;
  }

  .scroll-indicator{
    display: none ;
  }
}

