.hero-section {
  position: relative;
  width: 100%;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-container {
  width: 100%;
  height: 100%;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
  width: 60%;
}

.hero-title {
  font-size: 2rem;
  font-weight: bold;
}

.hero-description {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* Hide on smaller screens */
@media (max-width: 1024px) {
  .hero-section {
    display: none;
  }
}

.btn-default-red {
  position: relative;
  overflow: hidden;
  background-color: #d32f2f;
  color: #fff;
  padding: 12px 20px;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
  margin-top: 5px !important;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Remove focus outline */
.btn-default-red:focus {
  outline: none;
  box-shadow: none;
}

/* Animated Shine Effect */
.btn-default-red::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 100%;
  top: 0;
  left: -100px;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-30deg);
  animation: shine 0.8s infinite linear;
}

/* Keyframes for continuous animation */
@keyframes shine {
  from {
    left: -100px;
  }
  to {
    left: 120%;
  }
}
