.hero-section {
    background: url('../uploads/hero.jpg') center/cover no-repeat;
    min-height: 400px;
    position: relative;
  }
  
  .hero-section .overlay {
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .hero-section .container {
    position: relative;
    z-index: 1;
  }
  .hero-section {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
.hero-section h1 {
  font-size: 3rem;
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.hero-section p {
  font-size: 1.25rem;
  color: #f8f9fa;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
.hero-section .btn-light {
  font-weight: 600;
  box-shadow: 0 0 10px rgba(255,255,255,0.3);
  transition: all 0.3s ease;
}

.hero-section .btn-light:hover {
  background-color: #fff;
  color: #000;
  box-shadow: 0 0 15px rgba(255,255,255,0.5);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-section .container {
  animation: fadeInUp 1s ease-out;
}
.text-shadow {
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.animate-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease-out forwards;
}

.animate-up.delay-1 {
  animation-delay: 0.3s;
}
.animate-up.delay-2 {
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-hero {
  min-height: 350px;
  background-size: cover;
  background-position: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

















