/* ===============================
   Global Styles
================================ */
body {
    font-family: 'Inter', sans-serif;
    background: #f8f9fb;
    color: #333;
}

a {
    text-decoration: none;
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0050b3 !important;
    letter-spacing: -0.5px;
}

.nav-link {
    font-weight: 500;
}

/* ===============================
   Hero / Banner
================================ */
.hero-section {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-bottom: 5px solid #0050b3;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.hero-content {
    position: absolute;
    bottom: 60px;
    left: 60px;
    color: #fff;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
}

/* ===============================
   Section Titles
================================ */
.section-title {
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #002b59;
}

/* ===============================
   Cards
================================ */
.custom-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.custom-card:hover {
    transform: translateY(-4px);
}

/* ===============================
   Facilities List
================================ */
.facility-item {
    padding: 18px;
    background: #fff;
    border-left: 4px solid #0050b3;
    margin-bottom: 15px;
    border-radius: 6px;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.05);
}

/* ===============================
   Footer
================================ */
footer {
    background: #002b59;
    color: #fff;
    padding: 35px 0;
    margin-top: 60px;
}

footer a {
    color: #fff;
}
