:root {
    --primary-color: #002147; /* Navy Blue */
    --secondary-color: #D4AF37; /* Gold */
    --text-color: #333333;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #001a38;
    border-color: #001a38;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.5rem 1rem;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: var(--secondary-color);
}

.hero-section {
    background: linear-gradient(rgba(0, 33, 71, 0.8), rgba(0, 33, 71, 0.8)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
}

.section-padding {
    padding: 80px 0;
}

.card {
    border: none;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.card:hover {
    transform: translateY(-10px);
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    z-index: 99;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    padding: 0;
}

footer a:hover {
    color: var(--secondary-color) !important;
}

/* Footer Visibility Fixes */
footer .text-muted {
    color: #e0e0e0 !important; /* Light gray for better contrast */
}

footer h5 {
    color: #ffffff !important; /* Pure white for headings */
}

footer hr {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer .list-unstyled li a {
    color: #e0e0e0 !important;
}

footer .list-unstyled li a:hover {
    color: var(--secondary-color) !important;
}

footer .small.text-muted {
    color: #bbbbbb !important;
}
