/* Section Styling */
.facilities-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    text-align: center;
}

/* Background Image */
.facilities-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.facilities-bg img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* Title & Description */
.facilities-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #f5c36b; /* Golden Color */
}

.facilities-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

/* Facility Items */
.facility-item {
    text-align: center;
    margin-bottom: 30px;
}

.facility-icon {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    padding: 15px;
}

.facility-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 15px;
    color: #f5c36b; /* Golden Color */
}

.facility-item p {
    font-size: 1rem;
    opacity: 0.85;
}
