
/* Service Cards */
a{
    text-decoration:none;
}

.service-card, .place-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px 10px;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.service-card:hover, .place-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}
.service-card i {
    color: #ff8c00;
}
.service-card p, .place-card p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Overlay */
.service-card .overlay, .place-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 140, 0, 0.9);
    color: #fff;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s;
}
.service-card:hover .overlay, .place-card:hover .overlay {
    opacity: 1;
}

/* Place Images */
.place-card img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 5px;
}
