* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f4f6f8;
    color: #333;
}

/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    background: #0b3c5d;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    z-index: 1000;
}

.nav-logo {
    display: flex;
    align-items: center;
    color: #fff;
}
/* Fade transition effect */
body {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

body.fade-in {
    opacity: 1;
}

.nav-logo img {
    width: 40px;
    margin-right: 10px;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    margin-left: 15px;
    font-weight: bold;
}

/* HERO */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url("images/hero.png") center/cover no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
}

.hero p {
    margin: 15px 0;
}

/* BUTTON */
.btn {
    background: #f4b41a;
    padding: 12px 20px;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.btn.wide {
    display: inline-block;
    width: 80%;
    max-width: 400px;
    text-align: center;
}

/* SECTIONS */
section {
    padding: 50px 20px;
    text-align: center;
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.card {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card img {
    width: 100%;
    border-radius: 10px;
}

/* CTA */
.cta {
    background: #0b3c5d;
    color: #fff;
}

/* FOOTER */
footer {
    background: #111;
    color: #fff;
    padding: 20px;
    text-align: center;
}

footer img {
    width: 25px;
    margin: 5px;
}