.hpp-popup {
    display: none; /* Initially hidden, shown by JavaScript */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.hpp-popup-content {
    display: flex;
    width: 100%; /* Increased width */
    max-width: 1140px; /* Increased max-width for a larger popup */
    height: 520px; /* Increased height for a larger popup */
    border-radius: 00px;
	border-top: 0px;
border-bottom: 0px solid #fff ;
    overflow: hidden;
    position: relative; /* Ensure the close button positions relative to this */
}

.hpp-popup-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    overflow: hidden;
}

.hpp-popup-left img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the space */
    display: block; /* Ensures the image displays */
}

.hpp-popup-right {
    flex: 1;
    background: #fff;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative; /* Ensure the close button positions correctly */
}

.hpp-popup-right h2 {
    color: #000;
    font-size: 36px;
    margin-bottom: 20px;
}

.hpp-popup-right p {
    color: #000;
    font-size: 16px;
    margin-bottom: 20px;
}

.hpp-button {
    display: inline-block;
    background: #00005a;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
}

.hpp-close {
    position: absolute;
    top: -10px;
    right: 0px;
    font-size: 44px;
    cursor: pointer;
    color: #fff;
    background: #00005a;
    border-radius: 0% 0% 0% 29%;
    width: 75px;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10; /* Ensure it’s above other elements */
    transition: transform 0.3s ease; /* Smooth transition for the spin */
}
