.popup {
    z-index: 500;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.PopUpHide {
    display: none;
}

.popup-background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.44);
    z-index: 40;
}

.popup-content {
    height: auto;
    width: 850px;
    background-color: white;
    border-radius: 0.60rem;
    padding: 1.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 50;
}

.InnerContent {
    display: flex;
}

.LeftImageSection {
    width: 50%;

}

.RightImageSection {
    width: 50%;
    padding-left: 2rem;
}

.popup-image {
    width: 100%;
    /* height: 100%; */
    height: 78%;
    /* object-fit: cover; */
    border-radius: 0.60rem;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.popup-title {
    font-size: 1.5rem;
    font-weight: normal;
    color: #AC8B5C;
}

.close-button {
    transition: opacity 0.3s;
    border: none;
}

.close-button:hover {
    opacity: 0.75;
}

.close-button img {
    height: 30px;
    width: 30px;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-input,
.form-select,
.form-textarea {
    /* padding: 1rem; */
    /* padding: 0.5rem; */
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    transition: all 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #AC8B5C;
    box-shadow: 0 0 0 1px #AC8B5C;
}

.submit-button {
    width: 50%;
    margin-top: 1rem;
    background-color: #AC8B5C;
    color: white;
    border: none;
    padding: 1rem 2rem;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    transition: all 0.3s;
    font-weight: medium;
    box-shadow: 0 4px 6px #ac8b5c89;
}

.submit-button:hover {
    background-color: #AC8B5C;
    box-shadow: 0 6px 8px #ac8b5c89;
}

@media (max-width: 1024px) {
    .popup-content {
        width: 90%;
        height: auto;
        max-height: 90vh;
        overflow-y: auto;
        flex-direction: column;
    }

    .InnerContent {
        flex-direction: column;
    }

    .LeftImageSection,
    .RightImageSection {
        width: 100%;
        padding-left: 0;
    }

    .popup-image {
        height: auto;
        margin-bottom: 1rem;
    }

    .submit-button {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .popup-title {
        font-size: 1.25rem;
    }

    .popup-content {
        padding: 1rem;
    }

    .form-input,
    .form-select,
    .form-textarea {
        font-size: 1rem;
    }

    .close-button img {
        height: 24px;
        width: 24px;
    }
}


/* whatsapp :start */
.whatsapp {
    position: fixed;
    bottom: 45px;
    right: 22px;
    z-index: 99;
}

.whatsapp img {
    width: 50px;
    padding-bottom: 61px;
}

/* whatsapp end  */

        /* Geekboy :start */
        .geekboy {
            color: #fff;
            font-family: Consolas, Menlo, Monaco, monospace;
            font-weight: bold;
            font-size: 20px;
        }

        .geekboy img {
            width: 40px;
        }

        .geekboy span {
            display: inline-block;
            opacity: 0.8;
            color: #fff;
            animation: pulse 0.4s alternate infinite ease-in-out;
        }

        .geekboy span:nth-child(odd) {
            animation-delay: 0.4s;
            z-index: 1100;
        }

        @keyframes pulse {
            to {
                transform: scale(0.8);
                opacity: 0.5;
            }
        }

        .geekboy.hidden {
            animation: fadeOut 1s;
            animation-fill-mode: forwards;
        }

        @keyframes fadeOut {
            100% {
                opacity: 0;
                visibility: hidden;
            }
        }

        /*    Geek boy */