body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow-y: auto;
}

img {
    width: 100%;
    height: auto;
}

.image-container {
    display: none;
}

@media (min-width: 768px) {
    .swiper {
        display: none;
    }

    .image-container {
        display: block;
    }
}

@media only screen and (min-width: 992px) {
    body {
        background: black;
    }

    .responsive-image {
        width: 70%;
    }

    .image-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.swiper {
    position: relative;
    /* Ensure the swiper container is positioned relative */
}

.swiper .swiper-pagination {
    /* Adjust the top position relative to screen width */
    width: 90vw;
    /* Set width to 90% of the viewport width */
    display: flex;
    justify-content: center;
    /* Center the bullets horizontally */
    position: absolute;
    /* Position it absolutely within the swiper container */
    left: 50%;
    /* Center it horizontally */
    transform: translateX(-50%);
    bottom: 3vw;
}


.swiper-pagination-bullet {
    flex: 1;
    /* Make bullets expand to fill available space */
    margin: 0 0.5vw;
    /* Add spacing between bullets */
    height: 10vw;
    /* Scale height according to screen width */
    text-align: center;
    /* Center the text horizontally */
    line-height: 10vw;
    /* Match line-height to height for vertical centering */
    font-size: 4vw;
    /* Increase font size for bigger text */
    color: #ffffff;
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0;
    /* Optional: remove border-radius if desired */
    text-transform: uppercase;
    /* Convert text to uppercase */
    font-family: sans-serif;
}

.swiper-pagination-bullet-active {
    color: #fff;
    background: rgba(0, 122, 255, 0.3);
    /* Subtle background with 60% opacity */
    border: 1px solid rgba(0, 122, 255, 0.3);
    /* Optional: light border for extra subtlety */
}