:root {
    --navy-blue: #002147;
    --warning-yellow: #ffc107;
    --light-bg: #f8f9fa;
}

/* Facility Cards */
.card-facility {
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    height: 100%;
    background: whitesmoke;
}
.card-facility:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.card-img-container {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.badge-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--warning-yellow);
    color: var(--navy-blue);
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
}
.card-body {
    padding: 1.5rem;
}
.card-title {
    color: var(--navy-blue);
    font-weight: 700;
    margin-bottom: 15px;
}
.icon-box {
    color: var(--warning-yellow);
    margin-bottom: 10px;
}