
    .ije-hero {
  position: relative;
  height: 85vh;
  min-height: 600px;
}

.ije-hero img {
  width: 100%;
  height: 90vh;
  object-fit: cover;
}

.ije-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.55) 40%,
    rgba(0, 0, 0, 0.70) 100%
  );
  z-index: 2;
}


.ije-hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-highlight {
  color: #F8AC18;
  font-weight: 600;
}

.hero-search-wrapper {
  max-width: 650px;
  width: 100%;
}

.hero-highlight {
  position: relative;
  display: inline-block;
  font-weight: 700;
  color: #ffffff;
  padding-bottom: 8px;
}

.hero-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #F8AC18, #ffcc33);
  border-radius: 4px;
}

.fas,
.fa {
  color: #F8AC18;
}

/* ===== MOBILE HERO FIX (SAFE VERSION) ===== */

@media (max-width: 991px) {

  .ije-hero {
    height: 100vh; /* keep hero full */
    min-height: 100vh;
  }

  .ije-hero img {
    height: 100vh;
  }

  /* Add spacing INSIDE content instead */
  .ije-hero-content {
   
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-search-wrapper {
    margin-top: 25px;
  }

}

@media (max-width: 768px) {

  .ije-hero h1 {
    font-size: 1.9rem;
    line-height: 1.2;
  }

  .ije-hero .lead {
    font-size: 1rem;
  }

}


