.hero-section {
  min-height: 100vh;
  background: #f8f9fa;
}

/* === Full-Width Hero Section === */
#hero {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, #002b6b, #0d6efd);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 80px 0;
}

/* Optional: Background image overlay */
#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  z-index: 0;
}

#hero .container {
  position: relative;
  z-index: 1;
}

.hero-img {
  max-width: 90%;
  animation: float 4s ease-in-out infinite;
}

/* Floating animation for hero image */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Responsive text */
@media (max-width: 768px) {
  #hero {
    text-align: center;
    padding: 60px 15px;
  }
  #hero h1 {
    font-size: 1.8rem;
  }
  #hero p {
    font-size: 1rem;
  }
}