.about-us-hero {
    position: relative;
    height: 55vh;
    min-height: 287px;
    overflow: hidden;
    color: #fff;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45); /* Dark overlay with 45% opacity */
    z-index: 2;
}

.about-us-hero h1 {
    font-size: 54px;
    font-weight: 700;

    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
    z-index: 3;
    position: relative;
}

.about-us-hero h4 {
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 1.5px;
    opacity: 0.95;
    z-index: 3;
    position: relative;
}

@media (max-width: 992px) {
    .about-us-hero h1 {
        font-size: 3.8rem;
    }

    .about-us-hero h4 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .about-us-hero {
        height: 70vh;
    }

    .about-us-hero h1 {
        font-size: 3.2rem;
    }

    .about-us-hero h4 {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .about-us-hero h1 {
        font-size: 2.8rem;
    }

    .about-us-hero h4 {
        font-size: 1.25rem;
    }
}

