﻿
body {
    overflow-x: hidden;
}

/* ===== MODAL OVERLAY ===== */
#preModal {
    position: fixed;
    inset: 0;
    background: rgba(17, 101, 150, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

    /* ===== MODAL BOX (GLASS) ===== */
    #preModal .box {
        width: 90%;
        max-width: 520px;
        background: rgba(255, 255, 255, 0.75);
        border: 1px solid rgba(17, 101, 150, 0.25);
        border-radius: 18px;
        padding: 28px;
        text-align: right;
        box-shadow: 0 25px 60px rgba(0,0,0,0.15);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        animation: popIn .35s ease;
    }

@keyframes popIn {
    from {
        transform: scale(.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

#preModal h3 {
    margin-bottom: 15px;
    color: #116596;
    font-size: 20px;
    font-weight: bold;
}

#preModal p {
    margin: 6px 0;
    color: #444;
    font-size: 14px;
    line-height: 1.8;
}

/* ===== BUTTONS ===== */
#preModal .actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 22px;
}

#preModal button {
    flex: 1;
    padding: 11px 14px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: all .25s ease;
    font-size: 14px;
}

#preModal .ok {
    background: #116596;
    color: #fff;
}

    #preModal .ok:hover {
        background: #0d4f74;
        transform: translateY(-2px);
    }

#preModal .cancel {
    background: #f1f1f1;
    color: #333;
    border: 1px solid #ddd;
}

    #preModal .cancel:hover {
        background: #e7e7e7;
        transform: translateY(-2px);
    }

/* ===== MAIN FORM HIDE ===== */
#mainForm {
    display: none;
}
.avform input[type="checkbox"] {
    width: 16px !important;
    height: 16px !important;
    margin: 0 8px 0 0;
    vertical-align: middle;
    accent-color: #116596;
    flex-shrink: 0;
}

.avform .form-inner label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.8;
}

    .avform .form-inner label input[type="checkbox"] {
        margin-top: 4px;
    }
.home1-contact-section .transit-area .content .icon svg {
    fill: var(--primary-color2) !important;
}
.primary-btn1.black-bg {
    background-color: var(--primary-color2)!important;
    color: var(--white-color);
}