#leadPopup {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10,37,64,0.8);
    display: none;
    z-index: 9999;
}

.popupBox {
    background: #F9FCFF;
    width: 90%;
    max-width: 420px;
    padding: 28px;
    border-radius: 12px;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 40px rgba(11,94,215,0.25);
    border-top: 6px solid #0B5ED7;
}

.popupBox h2 {
    color: #0A2540;
    margin-bottom: 8px;
    font-size: 24px;
}

.popupBox p {
    color: #555;
    margin-bottom: 15px;
}

.popupBox input, 
.popupBox textarea {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 1px solid #cfd9e5;
    border-radius: 6px;
    font-size: 15px;
}

.popupBox input:focus,
.popupBox textarea:focus {
    outline: none;
    border-color: #00A8B5;
    box-shadow: 0 0 0 2px rgba(0,168,181,0.15);
}

.popupBox button {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, #0B5ED7, #00A8B5);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.popupBox button:hover {
    transform: scale(1.03);
}

.closeBtn {
    position: absolute;
    right: 12px;
    top: 10px;
    font-size: 20px;
    color: #0A2540;
    cursor: pointer;
}
