/* Popup Overlay */
.emc-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Popup Box */
.emc-popup-box {
    background: #ffffff;
    max-width: 520px;
    width: 90%;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    animation: popupFade 0.4s ease;
}

/* Close Button */
.emc-popup-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: #555;
}

/* Title */
.emc-popup-box h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1e3a8a;
}

/* Text */
.emc-popup-box p {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Apply Now Button */
.emc-apply-btn {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.emc-apply-btn:hover {
    background: #1e4fd7;
    transform: translateY(-2px);
}

/* Animation */
@keyframes popupFade {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
