header {
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 99999999999999;
}
.inquirymodal{
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    background: rgba(0,0,0,0.7);
    position: fixed;
    top: 0px;
    left: -110%;
    z-index: 9999999999999;
    transition: all 0.3s ease-in-out;
}
.inquirymodal.show{
    left: 0%;
}
.inqmod {
    max-width: 800px;
    width: 100%;
    padding: 40px;
    position: relative;
    margin: 0 auto;
    background: white;
    box-shadow: 0px 0px 5px gray;
}
.inqmod .closemodal {
    display: block;
    width: 40px;
    height: 40px;
    border: none;
    background: url(../images/closemodal.svg) no-repeat center center transparent;
    background-size: 100% auto;
    font-size: 0px;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
.inquirymodal h1 {
    text-align: center;
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
}

.inquirymodal .subheading {
    font-size: 20px;
    margin-bottom: 20px;
}

.inquirymodal .venue-button {
    display: inline-block;
    background-color: #D9D9D9;
    font-size: 22px;
    color: #5D5D5D;
    padding: 10px 30px;
    font-weight: 500;
    border-radius: 4px;
    cursor: default;
    margin: 0 0 20px;
}

.inquirymodal .inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.inquirymodal .inquiry-form label {
    font-size: 18px;
    font-weight: 500;
    margin-top: 10px;
}

.inquirymodal .inquiry-form input,
.inquirymodal .inquiry-form select {
    color: currentColor;
    padding: 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    width: 100%;
}

.inquirymodal .radio-group {
    display: flex;
    gap: 20px;
    margin-top: 5px;
}

.inquirymodal .radio-group label {
    display: flex;
    gap: 6px;
    font-weight: normal;
}

.inquirymodal .submit-btn {
    margin-top: 20px;
    background-color: #000;
    color: #fff;
    padding: 12px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.inquirymodal .submit-btn:hover {
    background-color: #222;
}

.checkbox-group.flex-group {
    width: 300px;
}
.checkbox-group.flex-group label {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.checkbox-group.flex-group label input {
    order:2;
    width: 20px;
}




.lightbox-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.lightbox-overlay img {
    max-width: 90%;
    max-height: 80%;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    background: rgba(0,0,0,0.5);
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    user-select: none;
}
.lightbox-close {
    top: 20px;
    right: 20px;
    transform: none;
}
.lightbox-prev {
    left: 20px;
}
.lightbox-next {
    right: 20px;
}
.gallery-container img,
.more-images {
    cursor: pointer;
}
.more-images img {
    display: none;
}
.more-images img:first-child {
    display: block;
}




.contact-form {
    max-width: 1000px;
    margin: auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    margin-bottom: 20px;
    font-size: 28px;
    color: #333;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
}

.contact-form .form-group textarea {
    resize: vertical;
    height: 120px;
}

.contact-form .form-group button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}
.vendormapsection {
    padding-bottom: 30px;
}
.downloadfilebutton {
    width: 100%;
    display: block;
    padding: 30px 0;
}
.downloadfilebutton a {
    display: inline-block;
    background: #DDDDDD;
    color: #565252;
    text-decoration: none;
    padding: 12px 26px;
    border-radius: 10px;
}
.contact-form .form-group button:hover {
    background-color: #0056b3;
}

@media (max-width: 640px) {
    .contact-form {
    padding: 20px;
    }
}
