#saswat-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    opacity: 0; visibility: hidden;
    transition: 0.35s ease;
    z-index: 99997;
}

#saswat-popup-overlay.show {
    opacity: 1; 
    visibility: visible;
}

#saswat-popup {
    position: fixed;
    width: 70%;
    max-width: 900px;
    height: 500px;
    background: #fff;
    top: 50%; left: 50%;
    transform: translate(-50%, -40%) scale(0.8);
    display: none;
    border-radius: 14px;
    overflow: hidden;
    transition: 0.45s cubic-bezier(.16,1,.3,1);
    z-index: 99998;
}

#saswat-popup.show {
    display: flex;
    transform: translate(-50%, -50%) scale(1);
}

#saswat-close {
    position: absolute;
    top: 12px; right: 12px;
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
}

.saswat-popup-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#saswat-popup .saswat-popup-left {
    width: 45%;
}

#saswat-popup .saswat-popup-right {
    width: 55%;
    padding: 40px;
}

#saswat-enquiry-form input,
#saswat-enquiry-form select {
    width: 100%;
    margin-bottom: 14px;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.saswat-submit-btn {
    width: 100%;
    padding: 14px;
    background: #18425d;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.saswat-form-msg .error { color: #18425d; }
.saswat-form-msg .success { color: green; }

/* Responsive */
@media(max-width: 768px){
    #saswat-popup {
        flex-direction: column;
        width: 90%;
        height: auto;
    }
    #saswat-popup .saswat-popup-left {
        height: 180px;
        width: 100%;
    }
    #saswat-popup .saswat-popup-right {
        width: 100%;
    }
}
