.services-banner {
  position: relative;
  background-image: url('../images/img3.jpeg');
  background-size: cover;
  background-position: center;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.services-banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); 
  backdrop-filter: blur(1px);     
  z-index: 1;
}

.sservices-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.services-content h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #087a9c;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 768px) {
  .services-banner {
    height: 60vh;
  }

  .services-content h1 {
    font-size: 2rem;
    margin-top: 3rem;
  }
}