/* Styles for the overlay */
    .popup-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7); /* Dark transparent background */
        display: flex; /* Show on page load */
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    /* Styles for the popup content */
    .popup-content {
        position: relative;
        max-width: 55%;
        max-height: 90%;
        background: #fff;
        padding: 20px;
        border-radius: 8px;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Styles for the close button */
    .popup-close {
        position: absolute;
        top: 10px;
        right: 10px;
        background: #333;
        color: #fff;
        padding: 5px 10px;
        cursor: pointer;
        border-radius: 50%;
        font-size: 18px;
        line-height: 18px;
        text-align: center;
    }

    /* Styles for images */
    .popup-image {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain; /* Ensures image fits without cropping */
        border-radius: 8px;
    }

    /* Media queries to display only one image based on screen size */
    .desktop-image {
        display: none;
    }

    .mobile-image {
        display: none;
    }

    /* Show desktop image on larger screens */
    @media (min-width: 768px) {
        .desktop-image {
            display: block;
        }
        .popup-image-desktop{
            max-width:600px ;
        }
    }

    /* Show mobile image on smaller screens */
    @media (max-width: 767px) {
        .mobile-image {
            display: block;
        }
        .popup-content-custom{
            max-width: 85%;
        }
    }

