*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins', sans-serif;
background:#f8f9fa;;
}

/* facilities header*/

.facilities-hero{
    background: url('../images/your-image.jpg') center/cover no-repeat;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
    text-align: center;
}

.facilities-hero .hero-overlay{
    background: #000;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.facilities-hero h1{
    font-size: 42px;
    font-weight: 700;
}

.facilities-hero p{
    color: #ddd;
    margin-top: 10px;
    max-width: 700px;
    padding: 0 15px;
}

/* Amnities Section */
.amenity-card {
    background: #f3f4f6;
    border-radius: 20px;
    padding: 30px;
    transition: 0.4s ease;
    height: 100%;
    border: 1px solid transparent;
}

.amenity-card h5 {
    font-weight: 600;
    margin-top: 20px;
}

.amenity-card p {
    color: #6b7280;
    font-size: 14px;
}

/* Icon Box */
.icon-box {
    width: 55px;
    height: 55px;
    background: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
}

.icon-box span {
    font-size: 28px;
    color: #28a745;
    transition: 0.4s ease;
}

/* Hover effect */
.amenity-card:hover {
    background: #e6f4ea;
    border: 1px solid #28a745;
box-shadow: 
0 10px 20px rgba(40,167,69,0.18),
0 15px 35px rgba(33,136,56,0.15);


    transform: translateY(-8px);
}

.amenity-card:hover .icon-box {
    background: #28a745;
}

.amenity-card:hover .icon-box span {
    color: white;
}