.banner {
    height: 73vh;
    position: relative;            
    display: flex;
    align-items: flex-end;            
    padding: 2rem;
    color: white;     
}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Dark overlay */
    z-index: 1;
}
.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}   

.banner-content {
    position: absolute;
    z-index: 2;
    max-width: 700px;
    color: white;            
    padding: 20px;
    border-radius: 10px;
    left: 50px;            
    /* transform: translateY(-50%); */
}

.banner-content h1{
    color: #fff !important;
    font-size: 50px !important;
}
.banner-content h4{
    color: #fff !important;
    font-size: 24px !important;
}


@media screen and (max-width:768px) {
    .banner-content {
        position: absolute;
        z-index: 2;
        max-width: 350px;
        color: white;            
        padding: 20px;
        border-radius: 10px;
        bottom: 0px;
        left: 0px;            
        /* transform: translateY(-50%); */
    }   
    .banner-content h1{
        font-size: 24px !important;
    }

    .banner-content h4{
        font-size: 16px !important;
    }
    .banner-content p{
        font-size: 12px !important;
    }

}