
.novavolt-hero {
  width: 100vw;
  max-width: 100%;
  margin-left: calc(-50vw + 50%);
  height: 70vh;
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
.hero-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 5%;
}
.hero-content {
  max-width: 600px;
  color: #2c3e50;
  animation: fadeInUp 1s ease-in-out forwards;
  opacity: 0;
}
.hero-content h1 {
  font-size: 36px;
  margin-bottom: 15px;
}
.hero-content p {
  font-size: 18px;
  margin-bottom: 25px;
}
.hero-btn {
  background: #485c4c;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  transition: opacity 0.3s ease;
}
.hero-btn:hover {
  opacity: 0.9;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1024px) {
  .novavolt-hero {
    height: 60vh;
    background-position: center;
  }
  .hero-content h1 {
    font-size: 28px;
  }
  .hero-content p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .novavolt-hero {
    height: 50vh;
    text-align: center;
    justify-content: center;
    padding: 0 10px;
  }
  .hero-content {
    max-width: 90%;
    padding: 0 5px;
  }
  .hero-content h1 {
    font-size: 24px;
  }
  .hero-content p {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .novavolt-hero {
    height: 40vh;
  }
  .hero-content h1 {
    font-size: 20px;
  }
  .hero-content p {
    font-size: 13px;
  }
  .hero-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}
