/* --- Hero Image Overlay for Better Text Visibility --- */
.hero-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.35); /* adjust opacity: 0.25–0.5 for lighter/darker */
  z-index: 1;
}

.hero-banner .container,
.hero-banner .hero-title,
.hero-banner .hero-subtitle {
  position: relative;
  z-index: 2; /* ensures text is above overlay */
  color: #fff !important; /* enforce white text */
}

/* --- Optional: Add background box to text for extra clarity --- */
.hero-title {
  background: rgba(0, 0, 0, 0.55); 
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
}

/* --- Make Logo Area Bigger --- */
.header-logo img {
  max-height: 65px !important; /* increase height */
  max-width: 240px !important; /* increase width */
  height: auto !important;
  width: auto !important;
}