/* .popup-overlay {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    height: 50%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.popup-box {
    background: #fff;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    border-radius: 6px;
    position: relative;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.close-btn {
    position: absolute;
    right: 10px;
    top: 5px;
    cursor: pointer;
    font-size: 20px;
    color: #333;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form input,
.form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.form input:focus,
.form textarea:focus {
    border-color: #007bff;
    outline: none;
}

.form textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group {
    text-align: left;
    font-size: 14px;
}

.form-group img {
    margin: 10px 0;
    border: 1px solid #ddd;
}

.form-group input {
    margin-top: 8px;
}

.readmore {
    padding: 10px 20px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s !important;
}

.readmore:hover {
    background: #0056b3;
}

@media (max-width: 600px) {
    .popup-box {
        width: 95%;
        padding: 15px;
    }

    .readmore {
        padding: 8px 16px;
    }
} */

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.popup-box {
    background: white;
    padding: 20px;
    border-radius: 5px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.close-btn {
    cursor: pointer;
    float: right;
    font-size: 20px;
}
.popup-input
{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (max-width: 600px) {
    .popup-box {
        width: 95%;
    }

    .close-btn {
        font-size: 18px;
    }
}
