 .home-style-2 .home-slider {
        height: 660px !important;
    }

    /* Desktop view */
    .banner-new {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .banner-new img {
        width: 100% !important;
        max-width: 1000px !important;
        /* Limits image width on large screens */
        height: 300px !important;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    /* Tablet view */
    @media (max-width: 1199px) {
        .home-style-2 .home-slider {
            height: 400px !important;
        }
    }

    @media (max-width: 992px) {
        .banner-new img {
            height: 250px !important;
        }
    }

    /* Mobile view */
    @media (max-width: 768px) {
        .banner-new img {
            height: 200px !important;
        }

        .home-style-2 .home-slider {
            height: 280px !important;
        }
    }

    /* Extra small devices */
    @media (max-width: 480px) {
        .banner-new img {
            height: 150px !important;
        }

        .home-style-2 .home-slider {
            height: 180px !important;
        }
    }