/* Popup Overlay */
.welcome-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Dark semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999; /* Higher than preloader and header */
    visibility: visible;
    opacity: 1;
    transition: opacity 0.5s ease;
}

/* Popup Content Container */
.popup-content {
    position: relative;
    max-width: 90%;
    max-height: 80%;
}

/* The Image */
.popup-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Close Button (X) */
.close-popup {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.close-popup:hover {
    color: #ffcc00; /* G-TEC yellow or primary color */
}

/* Class to hide the popup */
.popup-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}