 /* ------------------- NAVBAR ------------------- */
.navbar {
    background: rgba(30, 60, 114, 0.85);
    backdrop-filter: blur(6px);
    transition: background 0.4s ease, padding 0.3s ease;
    padding: 0.6rem 1.5rem; /* FIX */
    z-index: 999;
}


.navbar.scrolled {
    background: linear-gradient(90deg, #141e30, #243b55);
    padding: 0.5rem 1.25rem;
}

.navbar-brand img {
    height: 55px;   /* from 52px */
    transition: 0.3s ease;
}


.navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    font-size: 16px;
    padding: 12px 16px !important;
    transition: 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #ffd700 !important;
    transform: translateY(-2px);
}
/* ------------------- ENQUIRY NAV BUTTON ------------------- */
.enquiry-btn {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #000 !important;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Shine animation */
.enquiry-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    transition: 0.5s;
}

.enquiry-btn:hover::before {
    left: 100%;
}

.enquiry-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.6);
}

/* Mobile full width */
@media(max-width: 991px) {
    .enquiry-btn {
        display: inline-block;
        margin-top: 10px;
        text-align: center;
    }
}

/* ------------------- MOBILE ------------------- */
@media (max-width: 991px) {
    .navbar {
        padding: 0.6rem 1rem;
    }

    .navbar-collapse {
        background: linear-gradient(180deg, #141e30, #243b55);
        padding: 15px;
        border-radius: 12px;
        margin-top: 10px;
    }

    .navbar-nav .nav-link {
        padding: 10px 12px !important;
        text-align: center;
    }
}

/* ---------------- FACILITY PAGE ---------------- */

.facility-hero {
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, #141e30, #243b55);
    color: white;
}

.facility-hero h1 {
    font-size: 2.4rem;
}

.facility-hero p {
    font-size: 1.05rem;
    opacity: 0.9;
}

.facility-card {
    background: #fff;
    border-radius: 14px;
    padding: 30px 22px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    height: 100%;
}

.facility-card i {
    font-size: 40px;
    color: #0d6efd;
    margin-bottom: 15px;
}

.facility-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.facility-card p {
    font-size: 15px;
    color: #555;
}

.facility-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* Mobile */
@media (max-width: 768px) {
    .facility-hero {
        padding: 100px 15px 50px;
    }

    .facility-hero h1 {
        font-size: 2rem;
    }
}

 /* ------------------- FOOTER ------------------- */
 .footer {
    background: linear-gradient(135deg, #1c3a5a, #1b263b);
    
}

.footer-title {
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-text {
    color: #cfd8dc;
    font-size: 14px;
}

.footer-text a {
    color: #cfd8dc;
    text-decoration: none;
}

.footer-text a:hover {
    color: #ffc107;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #cfd8dc;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color:  #ffc107;
    padding-left: 5px;
    transition: 0.3s;
}

.social-icons a {
    font-size: 22px;
    margin-right: 12px;
    color: #cfd8dc;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #ffc107;
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #9aa7b2;
}
