.hero-wrapper {
  position: relative;
  height: 90vh; /* or whatever height your header uses */
  background: url("your-image.jpg") no-repeat right center / cover; /* your hero image */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 5%;
}

/* ✅ Just the dark blue box */
.hero-box {
  background-color: #003366; /* UIS dark blue */
  color: #ffffff;
  padding: 2rem 3rem;
  border-radius: 8px;
  max-width: 600px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Heading */
.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 1rem;
  text-transform: uppercase;
  color: #ffffff;
}

/* Subtext */
.hero-subtext {
  font-size: 1rem;
  line-height: 1.5;
  color: #e6e6e6;
  margin: 0;
}

/* Responsive */
@media (max-width: 800px) {
  .hero-wrapper {
    justify-content: center;
    padding: 2rem;
  }
  .hero-box {
    max-width: 90%;
    padding: 1.5rem 2rem;
    text-align: center;
  }
}
