.overlay-vector {
    position: absolute;
    right: 0;
    bottom: 0 !important;
    width: auto;
    height: 112vh;
    z-index: 1000;
    pointer-events: none;
}

.overlay-vector img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.overlay-vector-mobile {
    width: auto;
    right: 0;
    top: 115px!important;
    z-index: 0;
}

.overlay-vector-mobile img {
    opacity: 1 !important;
    width: 55vw;
    height: auto;
    object-fit: contain;
}

.home-banner-image {
    margin-top: 20px;
}

/* Mobile Styles */
@media (max-width: 991.98px) {
    .home-banner-image .img-fluid {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }

    .home-main-title {
        font-size: 40px;
        margin-top: 60px;
    }
}


/* Desktop Styles */
@media (min-width: 992px) {
    .home-main-title {
        font-size: 64px;
        margin-top: 8vh;
    }

    .home-banner-image {
        position: relative;
        margin-top: 40px;
    }

    .home-banner-image .img-fluid {
        width: 100%;
        height: 65vh;
        aspect-ratio: 2.8 / 1;
        object-fit: cover;
        object-position: 0% 20%;
    }

    .footer-bottom-green {
        text-align: left
    }

    .overlay-vector img {
        opacity: 1;
    }
}