.about-banner {
  /* Sample high-quality industrial background image */
  background-image: url("../images/new/2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 300px; /* Standard banner height */
  position: relative;
  width: 100%;
}

.banner-overlay {
  background-color: rgba(0, 0, 0, 0.6); /* Dark overlay to make text pop */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-content h1 {
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 1px;
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* --- Mobile Responsiveness --- */

@media (max-width: 768px) {
  .about-banner {
    height: 200px; /* Slightly shorter on mobile */
  }

  .banner-content h1 {
    font-size: 32px; /* Smaller font for mobile screens */
  }
}

@media (max-width: 480px) {
  .about-banner {
    height: 150px;
  }

  .banner-content h1 {
    font-size: 28px;
  }
}
