

.hero {
  z-index: 1;
  height: 100vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/hero3.png") center/cover;
  display: flex;
  align-items: center;
  position: relative;
  color: white;
}

.hero {
  z-index: 1;
min-height: 100vh;
  padding: 120px 0 80px;  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/hero3.png") center/cover;
  display: flex;
  align-items: center;
  position: relative;
  color: white;
  background-attachment: fixed;
}

.hero-content {
  animation: fadeInUp 1s ease;
}

.hero h1 {
  font-size: clamp(2.2rem, 7vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: clamp(1rem, 3.5vw, 1.3rem);
  margin-bottom: 30px;
  opacity: 0.9;
}

.btn-primary-custom {
  background: var(--secondary);
  color: var(--primary);
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background: #ffb300;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 193, 7, 0.4);
}

.btn-outline-custom {
  border: 2px solid white;
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  background: transparent;
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-3px);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator i {
  font-size: 2rem;
  color: var(--secondary);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 95vh;
    padding: 100px 0 70px;
  }

  .hero h1 {
    font-size: 2.3rem;
    line-height: 1.25;
  }

  .hero p {
    font-size: 1rem;
  }
}



