﻿.top-header {
    background-color: #dbb163; /* Dark blue background */
    padding: 8px 0;
    font-size: 20px;
    color: white;
}

    .top-header i {
        margin-right: 5px;
        color: white;
    }

    .top-header a:hover {
        color: #fa9128 !important; /* Orange on hover */
    }

.btnbg {
    color: #ffffff;
    background-color: #0E3A69 !important; /* Dark blue background */
}

    .btnbg:hover {
        background-color: #fa9128 !important; /* Orange on hover */
    }

.navbar-brand img {
    height: 40px;
}

.nav-link {
    font-size: 1.4rem;
    color: #000000 /* Dark blue text */
}

    .nav-link:hover,
    .nav-link:active,
    .nav-link:focus {
        color: #dbb163 !important; /* Orange on hover/active */
    }

.dropdown-item {
    color: #0E3A69 !important; /* Dark blue text */
    font-size:1.3rem !important;
}

    .dropdown-item:hover {
        color: white !important;
        background-color: #dbb163 !important; /* Orange background on hover */
    }

.dropdown:hover .dropdown-toggle {
    color: #dbb163 !important; /* Orange on hover */
}

.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #0E3A69 !important; /* Dark blue background */
    color: white;
    padding: 30px 0;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-contact i {
    color: #fa9128 !important; /* Orange icons */
    margin-right: 10px;
}

footer ul li a {
    text-decoration: none !important;
    color: white !important;
}

    footer ul li a:hover {
        color: #fa9128 !important; /* Orange on hover */
    }

/* Active link styling */
.navbar-nav .nav-item .nav-link.active {
    color: #fa9128 !important;
    font-weight: bold;
}

/* Button styling */
.btn-primary {
    background-color: #0E3A69;
    border-color: #0E3A69;
}

    .btn-primary:hover {
        background-color: #fa9128;
        border-color: #fa9128;
    }

/* Add some consistent spacing */
.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

/* Ensure dropdown menus have proper styling */
.dropdown-menu {
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Make sure the mobile menu has proper colors */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: white;
        padding: 15px;
        margin-top: 10px;
        border-radius: 5px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
}
