@media (min-width: 768px) {
    .desktop-container {
        display: block;
    }
}
@media(min-width: 768px){
    .banner{
        margin-left: 2rem;
        margin-right: 2rem;
        margin-top: 2rem;
    }
}
/* Main Banner Styling */
.banner-box {
    max-width: 100%;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 5px 22px rgba(0, 0, 0, 0.1);
}

.banner-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Right Side Small Banners */
.small-banner {
    height: 170px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.small-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.banner-box img, .small-banner img {
    transition: transform 0.3s ease-in-out;
}

.banner-box:hover img, .small-banner:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .banner-box {
        height: 215px;
    }

    .small-banner {
        height: 140px;
    }

    .right-banner{
        display: none !important;
    }

    .banner{
        margin-left: 3px;
        margin-right: 3px;
        margin-top: 3px;
    }
}