#custom-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 400px;
    transform: scale(0);
    transform-origin: bottom right;
    transition: transform 0.6s ease;
    z-index: 9999;
}

#custom-popup.show {
    transform: scale(1);
}

.popup-content {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 25px;
    min-height: 220px;           /* ✅ Gives the bg image space to render */
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
    /* color: white; */
     font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, sans-serif;
    overflow: hidden;            /* ✅ Keeps the overlay clipped to border-radius */
}

/* Dark overlay */
/* .popup-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    border-radius: 20px;
    z-index: 0;
} */

.popup-content * {
    position: relative;
    z-index: 1;
}
#typing-heading {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;   
    margin-bottom: 10px;
}


.popup-list {
    margin: 15px 0;
    padding-left: 20px;
}

.popup-list li {
    font-size: 14px;
    color: #374151;  /* soft dark gray */
    margin-bottom: 6px;
    line-height: 1.5;
}

.buttons {
    opacity: 0;
    transition: opacity 0.5s ease;
    margin-top: 15px;
}

.buttons.show {
    opacity: 1;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0px !important;
    height: 34px;              

    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    line-height: 1;
}

.btn img {
    width: 90px;     
   
    object-fit: contain;
    display: block;
}




.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 20px;
    color: white;
    z-index: 2;                  /* ✅ Ensures close button sits above overlay */
}

/* Mobile */
@media (max-width: 480px) {
    #custom-popup {
        width: 90%;
        right: 5%;
    }
}
