.industry_banner {
  position: relative;
  text-align: center;
  color: white;
}

/* 1. Controlling Image Transparency */
.transparent-image {
  display: block;
  width: 100%;
  height: 250px;
  opacity: 0.25; /* 0.0 is invisible, 1.0 is solid */
}

/* Centered text */
.imgcentered {
  position: absolute;
  top: 60%;
  left: 50%;
  color: #ffffff;
  white-space: nowrap; /* Prevents wrapping */
  transform: translate(-50%, -50%);
}