/* ======================== Lead Modal ======================== */

.leadModal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);    
   
    justify-content: center;
    align-items: center;
    
    backdrop-filter: blur(4px);
}

/* Modal box */
.modal-content {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 12px;
    width: 90%;
    max-width: 380px;
    
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    
    animation: popup 0.3s ease;
}
