body {
    font-family: Arial, sans-serif;
}

.popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    color: #FFFFFF;
    background-color: #0000ff;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease, border-radius 0.3s ease; /* Add border-radius transition */
}

.close-btn:hover {
    background-color: #bbb;
    transform: scale(1.2); /* Hover state scale */
    border-radius: 50%; /* Round border-radius on hover */
}

.popup-content-wrapper {
    display: flex;
    align-items: center;
}

.popup-image img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease; /* Add transition effect */
}

.popup-image img:hover {
    transform: scale(1.1); /* Hover state zoom effect */
}

.popup-text {
    margin-left: 20px;
}

.subscribe-form {
    margin-top: 20px;
}

.subscribe-form label {
    display: block;
    margin-bottom: 5px;
}

.subscribe-form input {
    width: 200px;
    padding: 5px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease; /* Add transform transition */
    transform-style: preserve-3d; /* Enable 3D transformations */
    perspective: 1000px; /* Set perspective for 3D effect */
}

.subscribe-form input:focus {
    border-color: #0000ff;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.7);
    transform: translateZ(10px); /* Move input towards viewer in 3D space on focus */
}


.subscribe-form button {
    padding: 5px 10px;
    background-color: #0000ff;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-family: 'Arial', sans-serif; /* Customize font family */
    font-size: 14px; /* Customize font size */
    font-weight: bold; /* Customize font weight */
    text-transform: uppercase; /* Convert text to uppercase */
}

.subscribe-form button:hover {
    background-color: #45a049; /* Hover state background color */
    transform: scale(1.1); /* Hover state scale */
}