/* ====================== SINGLE HERO BANNER (About Page) ====================== */
.single-hero-banner {
  height: 55vh;                    /* Balanced height */
  min-height: 460px;
  position: relative;
  margin-top: -4%;                   /* Negative margin hataya */
  overflow: hidden;
}

.single-hero-bg-img {
  height: 200%;                    /* Parent ke hisaab se full */
  width: auto;
  margin-top: -4%;
  object-fit: cover;
  filter: brightness(0.65) contrast(1.05);
}

.single-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;             /* Center mein rakha */
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.55));
}

/* Heading Styling */
.single-hero-heading {
  font-size: 2.8rem;
  line-height: 1.15;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
  margin-bottom: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .single-hero-banner {
    height: 100vh;
    margin-top: -25%;
    min-height: 380px;
  }
  .single-hero-overlay {
  position: absolute;
  top: 0%;
}
  .single-hero-heading {
    font-size: 2.1rem;
  }
}