/* csss */

.media-185 img{
    height: 185px;
    object-fit: cover;
}

/* Popup Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.popup {
    background: rgba(255, 255, 255, 0.9);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 450px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.popup .content {
    position: relative;
    z-index: 1;
}

.popup h1 {
    margin: 0 0 15px;
    color: #2c3e50;
    font-size: 24px;
    font-weight: bold;
}

.popup p {
    color: #34495e;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
}

.cta-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #2980b9;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
     
}

.cta-btn:hover {
    background-color: #3498db;
}

.close-btn {
    position: absolute;
    top: 0px;
    right: 5px;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 2;
    color: #7f8c8d;
}

.close-btn:hover {
    color: #c0392b;
}

.popup .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1; /* Adjust the opacity as needed */
   /*  width: 80%; */ /* Adjust the width as needed */
    z-index: 0;
}

@media (max-width: 600px) {
    .popup {
        width: 90%;
        padding: 20px;
    }

    .popup h1 {
        font-size: 20px;
    }

    .popup p {
        font-size: 14px;
    }

    .cta-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .popup .logo {
        width: 50%; /* Adjust the width as needed for smaller screens*/
    }
}