.navbar-zimsec {
    background-color: #153355;
}

.navbar-zimsec .navbar-brand img {
    height: 36px;
}

.navbar-scrollable {
    max-height: 70vh;
    overflow-y: auto;
}

@media (min-width: 992px) {
    .navbar-scrollable {
        max-height: none;
        overflow-y: visible;
    }
}

.footer-zimsec {
    background: linear-gradient(135deg, #0d2440, #153355);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #ffffff;
}

.footer-zimsec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, red, black, #ffc107);
}

.footer-zimsec .footer-logo {
    height: 30px;
    width: 30px;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.footer-zimsec .footer-logo:hover {
    transform: rotate(15deg) scale(1.1);
}

.footer-zimsec .hover-underline {
    position: relative;
    padding-bottom: 2px;
}

.footer-zimsec .hover-underline::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.footer-zimsec .hover-underline:hover::after {
    width: 100%;
}

.footer-zimsec .footer-links a {
    transition: all 0.3s ease;
}

.footer-zimsec .footer-links a:hover {
    color: #ffc107 !important;
    transform: translateY(-2px);
}


.navbar-nav .nav-link {
    font-weight: 500;
    letter-spacing: 0.01em;
}

.navbar-nav .nav-link i {
    font-size: 0.95rem;
    margin-right: 0.35rem;
    vertical-align: middle;
}

.modal-header {
    border-bottom: 3px solid rgba(21, 51, 85, 0.15);
}

.modal-title {
    color: #153355;
    font-weight: 600;
}

