﻿.popup-heading-center {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 15px;
}

.popup-heading-center h2 {
    font-size: 45px;
    color: #000;
    margin: 0;
    font-weight: 800;
}

.popup-heading-center h3 {
    font-size: 42px;
    color: #555;
    margin-top: 8px;
}

.custom-exit-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    max-width: 1100px;
    height: 90vh;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    display: none;
    font-family: "Segoe UI", sans-serif;
    overflow: hidden;
}


    .custom-exit-popup .close-btn {
        position: absolute;
        top: 20px;
        right: 25px;
        font-size: 26px;
        font-weight: bold;
        color: red;
        cursor: pointer;
        z-index: 1000;
    }

.popup-content {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    overflow-y: auto;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.popup-content::-webkit-scrollbar {
    width: 8px;
}
.popup-content::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.popup-left,
.popup-right {
    flex: 1;
    min-width: 300px;
    padding: 0px 30px;
    box-sizing: border-box;
}

.popup-left {
    background: #f5faff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popup_left_span {
    font-size: 15px;
}

.popup-left .benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .popup-left .benefits li {
        margin-bottom: 20px;
        font-size: 18px;
        line-height: 1.4;
    }

        .popup-left .benefits li::before {
            content: "➤ ";
            color: #007bff;
            font-weight: bold;
        }

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 37px;
    font-size: 15px;
}

    .partner-logos img {
        height: 40px;
        max-width: 90px;
        object-fit: contain;
    }

.popup-right form input,
.popup-right form textarea {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.popup-right form .phone-input {
    display: flex;
    gap: 8px;
    align-items: center;
}

.popup-right .country-code {
    background: #f2f2f2;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
}

.popup-right form button {
    background: #0066e6;
    color: #fff;
    padding: 12px;
    border: none;
    width: 100%;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    font-weight: bold;
}

@media (max-width: 768px) {
    .popup-content {
        flex-direction: column;
        padding: 20px;
    }

    .popup-left,
    .popup-right {
        padding: 20px 0;
    }

    .popup-heading-center h2 {
        font-size: 22px;
    }

    .popup-heading-center h3 {
        font-size: 16px;
    }
}

