/* General Styles */
.hero-container {
  height: 100vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomIn 10s infinite alternate ease-in-out;
  opacity: 1 !important; /* Ensure full visibility */
  filter: none !important; /* Remove extra filters if any */
  transition: filter 0.5s ease; /* Smooth transition for hover effect */
}

/* Glow effect on hover */
.hero-container img:hover {
  filter: none !important; /* Remove extra filters if any */
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  animation: fadeUp 2s ease-in-out;
}

/* Keyframes for animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}


