.city-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.city-card:hover {
    transform: scale(1.05);
}

.city-image-container {
    width: 100%;
    height: 200px; /* Fixed height for images */
    overflow: hidden;
}

.city-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.city-text {
    padding: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border-radius: 0 0 8px 8px;
    text-align: left;
}

.city-text h5 {
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: bold;
}

.city-text p {
    margin: 0;
    font-size: 14px;
}
.whatsapp{
    color: aliceblue;
}
.whatsapp:hover{
color: beige;
}
