    /* Pop-up overlay */
    .popup-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.75); /* Dark overlay with transparency */
        align-items: center;
        z-index: 1000;
        padding: 15px;
        justify-content: flex-end; /* Move pop-up to the right on large screens */
            padding-right: 30px;
    }

    /* Pop-up content box */
    .popup-content {
        background-color: #ffffff;
        background-image: linear-gradient(to bottom right,#0470ae, #0693e3);
        background-size: cover; /* Adjust to fit the box */
        background-position: center;
        padding: 30px;
        border-radius: 15px;
        text-align: center;
        width: 400px;
        max-width: 100%;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        position: relative;
        animation: fadeIn 0.5s ease-out; /* Smooth fade-in effect */
    }

    /* Add logo */
    .popup-content .logo {
        max-width: 128px;
        margin-bottom: 10px;
    }

    /* Headings */
    .popup-content h2 {
        font-size: 24px;
        color: #333;
        margin-bottom: 10px;
    }

    .popup-content h3 {
        font-size: 18px;
        color: #fff;
        margin-bottom: 15px;
    }

    /* Paragraph */
    .popup-content p {
        font-size: 16px;
        color: #fff;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    /* Survey button */
    .popup-content .survey-btn {
        background-color: #F7C141; /* Yellow background */
        color: #101010;
        padding: 12px 25px;
        border: none;
        border-radius: 30px;
        cursor: pointer;
        font-size: 16px;
        transition: background-color 0.3s ease;
        width: 51%;
    }

    .popup-content .survey-btn:hover {
        background-color: #d9a630;
    }

    /* QR code styling */
    .popup-content .qr-code img {
        width: 100px;
        height: 100px;
    }

    /* Close button */
    .popup-content .close-btn {
        position: absolute;
        top: 10px;
        right: 15px;
        background-color: transparent;
        border: none;
        font-size: 20px;
        cursor: pointer;
        color: #fff;
    }

    .popup-content .close-btn:hover {
        color: #333;
    }
.qr-code {
          display: flex;
    align-items: center;
    margin-top: 15px;
    flex-direction: row;
    justify-content: space-around;
        }
    /* Animation for pop-up */
    @keyframes fadeIn {
        from { opacity: 0; transform: scale(0.8); }
        to { opacity: 1; transform: scale(1); }
    }

    /* Desktop-specific styles: Move the pop-up to the right side */
    @media (min-width: 992px) {
        .popup-overlay {
            justify-content: flex-end; /* Move pop-up to the right on large screens */
            padding-right: 50px; /* Add some space between the pop-up and the edge */
        }

        .popup-content {
           width: 30%;
        padding: 5px;
        height: 470px;
        border-radius: 10%;
        }
        .popup-content .survey-btn{width:50%;}
    }

    /* Mobile-specific styles */
    @media (max-width: 768px) {
        .popup-content {
            width: 100%;
            max-width: 90%; /* Ensure it takes up most of the screen on mobile */
            padding: 20px;
            margin: 0 auto;
        }

        .popup-content h2 {
            font-size: 20px;
        }

        .popup-content h3 {
            font-size: 16px;
        }

        .popup-content p {
            font-size: 14px;
        }

        .popup-content .survey-btn {
            padding: 12px 20px;
            font-size: 14px;
        }

        /* QR code size reduction on mobile */
        .popup-content .qr-code img {
            width: 80px;
            height: 80px;
        }
    }