/* Enhanced styles.css */
:root {
    --primary-blue: #002147;
    --accent-gold: #FFD700;
    --hover-gold: #FFE55C;
}

.university-theme {
    font-family: 'Noto Sans', sans-serif;
    color: #333;
}

.bg-university-primary {
    background: var(--primary-blue) !important;
}

.navbar-brand {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.facility-hero {
    background: linear-gradient(rgba(0,33,71,0.9), rgba(0,33,71,0.8)), 
                url('assets/images/campus-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 4rem 0;
}

.pricing-card {
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,33,71,0.1);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.term-card {
    background: #f8f9fa;
    border-left: 4px solid var(--accent-gold);
}

.facility-gallery {
    column-count: 3;
    column-gap: 1rem;
}

.facility-gallery img {
    margin-bottom: 1rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.facility-gallery img:hover {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .facility-gallery {
        column-count: 2;
    }
}
.logo2 {
    width: 50px;
    border-radius: 50%;
    background-color: white;
}