/* popup Start */

/* General styles */
.pop_body {
    
    margin: 0;
    padding: 0;
    z-index: 500;
    height: 100vh;
    background-color: #f0f0f0;
}

/* Popup Button */
.popup-btn {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

.popup-btn:hover {
    background-color: #0056b3;
}

/* Popup Overlay */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

/* Popup Window */
.popup-window {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 40px;
    width: auto;
    max-width: 90%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    border-radius: 8px;
    animation: popupFadeIn 0.3s ease-out;
	overflow:hidden;
}



/* Popup Content */
.popup-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left side - Contact Form */
.popup-left {
    width: 60%;
    padding-right: 60px;
}

.popup-left h2 {
    margin-bottom: 15px;
}

.popup-left form {
    display: flex;
    flex-direction: column;
}

.popup-left form label {
    margin-bottom: 5px;
    font-weight: bold;
}

.popup-left form input,
.popup-left form textarea {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    width: 350px;
    box-sizing: border-box;
}

/* Right side - Image */
.popup-right img {
    width: 300px;
    height: auto;
    border-radius: 8px;
}

/* Close Button */
.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}

/* Animations */
@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.popup-left h2
{
color:#007BFF;
}

.popup-left label
{
color:#4a4a4a;
}

.popup-right p
{
text-align: center;
}
/* popup end */






