.jumbotron {
  position: relative;
  overflow: hidden;
  --x: 0px;
  --y: 0px;
}
/* Animation Line */
.animated-line {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #fbbf24 20%,
    #f59e0b 50%,
    #fbbf24 80%,
    transparent 100%
  );
  animation: slideAcross 5s infinite;
  z-index: 1;
}

/* Alternative: Multiple lines */
.animated-line-2 {
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #6a81ff 20%,
    #003cff 50%,
    #6a81ff 80%,
    transparent 100%
  );
  animation: slideAcross 5s infinite 2.5s;
  z-index: 1;
}

/* Keyframe Animation */
@keyframes slideAcross {
  0% {
    left: -100%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

.jumbotron::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at var(--x) var(--y),
    rgba(0, 0, 128, 0.3) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.2s ease;
}

.jumbotron:hover::before {
  opacity: 0.4;
}

.custom-jumbotron {
  border-top: 0.5px solid #e2e2e2; /* Border trên */
  border-bottom: 0.5px solid #e2e2e2; /* Border dưới */
}
.custom-jumbotron > .container {
  padding: 0 120px;
  min-height: 240px;
  align-items: center;
  display: flex;
}

@media (max-width: 767px) {
  .custom-jumbotron > .container {
    padding: 0 15px;
    min-height: 240px;
    align-items: center;
    display: flex;
  }
}

@media (max-width: 480px) {
  .custom-jumbotron > .container {
    padding: 0 15px;
    min-height: 240px;
    align-items: center;
    display: flex;
  }
}
