/* Overlay Background */
#openContactPopup{
    cursor: pointer;
}
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none; /* Initially hidden */
    align-items: center;
    justify-content: center;
    z-index: 1050;
    backdrop-filter: blur(20px);
}

/* Popup Box */
.popup-box {
    background: var(--primary1);
    width: 90%;
    max-width: 800px;
    /* text-align: center; */
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: scale(0.8); /* Start small */
    transition: transform 0.3s ease-in-out;
    border-radius: 20px;
    /* padding: 10px; */
    overflow: hidden;
    .popup-header{
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 1.5em;
        h3{
            color: var(--primary);
            font-family: Inter-Light;
            margin: 0;
        }
        p{
            font-family: Inter-Thin;
            font-size: clamp(1rem, 3vw, 2.5rem);
        }
    }
    .popup-body{
        padding: 1.5em;
        /* background: no-repeat center linear-gradient(45deg,#2ac0d5, #006B5F); */
        background-color: var(--dark-primary);
        input,textarea{
            width: 100%;
            background-color: var(--primary1);
            border: 0;
            padding: 10px;
            border-radius: 10px;
            color: var(--primary);
            font-family: Inter;
            font-size: 18px;
        }
        textarea{
            min-height: 150px;
            resize: vertical;
        }
        .send-button{
            background: no-repeat center linear-gradient(45deg,#2ac0d5, #006B5F);
            /* background-color: var(--primary); */
            border: 0;
            border-radius: 10px;
            padding: 10px;
            width: 80px;
            /* font-weight: bold; */
            font-size: 18px;
            font-family: Inter-Light;
            cursor: pointer;
            color: white;
        }
    }
}

/* Close Button */
.popup-close {
    /* position: absolute;
    top: 10px;
    right: 10px; */
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: white;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 576px) {
    .popup-box {
        max-width: 90%;
        /* padding: 15px; */
    }
}