.background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /* Use vh instead of 100% */
  background-image: url('Leeza-014.png');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: -1;
  pointer-events: none; /* Prevent interaction */
}

.background-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

/* Remove the z-index on all children as it might cause stacking issues */
/* body > *:not(.background-container) {
  position: relative;
  z-index: 1;
} */

/* Fix the large empty space */
.about-hero {
    padding-top: 80px; /* Further reduced to account for navbar */
    padding-bottom: 4rem;
    min-height: auto; /* Remove min-height constraint */
    display: flex;
    align-items: center;
}

.about-hero .container {
    width: 100%;
    margin-top: 0; /* Ensure no margin */
}

/* Ensure navbar is properly positioned */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 80px;
}
