/* Popup container */
.popup-container {
    display: none; /* Hidden by default */
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Popup content */
.popup-content {
    background-color: white;
    text-align: center;
    max-width: 400px;
    width: 80%;
    position: relative;
    background: linear-gradient(180deg, #E0A545 0%, #FBF6A5 100%);
    border-radius:15px;
}

/* Image button styling 
.image-button {
    width: 100px;
    height: 100px;
    margin: 10px;
    cursor: pointer;
}
    */

/* Close button */
.close-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
}

.popup-outlet-container {
    display: flex;
    padding:30px;
    gap: 30px; /* Space between the cards */
}

.popup-header-container {
    background: #00378C;
}

.popup-container h2 {
    font-size: 1.5rem;
    color: white;

    padding: 10px;
}

.popup-container h3 {
    font-size: 1.5rem;
    color: black;
}

@media (max-width: 767px) {
    .popup-container h3 {
        font-size: 1rem;
        font-weight:bold;
        color: black;
    }
}


.card {
    width: 350px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.card-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 15px;
    text-align: center;
}
