

 #popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 10;
 }

 
 
 /* Popup Form */
 #popup-form {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    max-width: 100%;
    max-width: 880px;
    max-height: 600px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 11;
    overflow: hidden;
 }
 
 
    /* Form Content */
 .form-content {
    display: flex;
    /* flex-direction: row; */
 }
 .form{
    display: flex;
    flex-direction: column;
    gap: 15px;
 }
 .form-container{
    max-height: 700px;
    height: 60%;
 }
 
 
 /* Image Section */
 .image-section {
    /* flex: 1; */
    display: block;
    width: fit-content;
    /* justify-content: center;
    align-items: center; */
 }
 
 
 .image-section img {
    max-width: 400px;
    /* height: fit-content; */
    max-height: 500px;
    border-radius: 10px 0 0 10px;
 }
 
 
 /* Form Section */
 .form-section {
    flex: 1;
    padding: 40px 30px;
 }
 .temp{
    width: 100%;
 }
 
 
 .form-section h2 {
    margin-bottom: 15px;
 }
 .input-row {
    display: flex;
    flex-direction: row;
    gap: 35px;
 }
 .input-row-2 {
    display: flex;
    flex-direction: row;
    gap: 35px;
 }
 .message-div{
    display: flex;
    flex-direction: row;
    width: 100%;
    position: relative;
 }
 .message{
    width: 100%;
 }
 label {
    display: block;
    font-family: "Montserrat", sans-serif;
    line-height: 20px;
    color: #000000;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 500;
 }
 
 
 input, select, textarea {
    /* width: 100%; */
    padding: 8px;
    margin-top: 5px;
    border: none;
    border-bottom: 1px solid #ccc;
    font-family: "Montserrat", sans-serif;
    width: 100%;
    outline: none;
    /* border-radius: 5px; */
 }
 
 
 textarea {
    height: 60px;
    resize: none;
    font-family: "Montserrat", sans-serif;
 }
 
 
 /* Send Message Button */
 .send-btn {
    background-color: #4CAF50;
    color: white;
    padding: 10px 10px;
    font-size: 12px;
    font-weight: 700;
    border: none;
    max-height: 50px;
    width: 170px;
    border-radius: 33px;
    /* width: 100%; */
    margin-top: 90px;
    cursor: pointer;
 }
 
 
 /* Close Button */
 #close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
 }
 
 .arrowImage{
    position: absolute;
    top: 99px;
    left: 180px;
 }
 .arrowImage img{

    width: 150px;
    height: 100px;
 }
 #thank-you-message{
    display: none;
    padding: 70px 30px;

 }
 #thank-you-message h2{
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 26px;
    color: #000000;
 }
 #thank-you-message p{
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #000000;
 }

 
 
 
 
/* Responsive */
@media (max-width: 768px) {
    .form-content {
        flex-direction: column;
    }
    .form-section {
        padding: 40px 10px;
     }

    .form-container {
        height: fit-content;
        /* Adjust the height of the form container to ensure it's fully visible */
    }
    #popup-form{
       max-height: 700px;
       height: 650px;
        width: 90%;
    }

    .image-section {
        /* width: 100%;
        text-align: center; Center the image */
        display: none;
    }

    .image-section img {
        display: none;
    }

    .form-section {
        padding: 20px;
    }

    /* Adjust the form fields layout for mobile */
    .input-row, .input-row-2 {
        flex-direction: column;
        gap: 10px;
    }
    .arrowImage{
        top: 102px;
        left: 128px;
     }
     .send-btn {
        background-color: #4CAF50;
        color: white;
        padding: 5px 5px;
        font-size: 12px;
        font-weight: 700;
        border: none;
        max-height: 50px;
        width: 120px;
        border-radius: 33px;
        /* width: 100%; */
        margin-top: 90px;
        cursor: pointer;
     }

    /* Ensure the textareas and inputs take full width */
    input, select, textarea {
        width: 90%;
        padding-left: 20px;
    }

}
@media (max-width:344px) {
    
}

 