body {
    font-family: 'Ubuntu', sans-serif;
}

.header {
    background-color: #245a98;
    color: white;
    padding: 15px;
}

    .header a {
        color: white;
        text-decoration: none;
        margin-right: 15px;
    }

        .header a:hover {
            color: #000000
        }

    .header .nav-link.active {
        border-bottom: 3px solid #1055a5;
    }


footer a:hover {
    color: #d1e4f3; 
    text-decoration: underline;
}


footer img:hover {
    opacity: 0.8;
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
}
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    text-align: center;
    line-height: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: none;
    z-index: 1000;
    transition: opacity 0.3s ease-in-out;
}

    .scroll-to-top:hover {
        background-color: #0056b3;
    }

.custom-menu-item {
    font-size: 1.2rem;
    padding: 10px 0;
    color: #245a98;
    border-bottom: 1px solid #f1f1f1;
    transition: color 0.3s ease, background-color 0.3s ease;
}

    .custom-menu-item:hover {
        color: white;
        background-color: #245a98;
        border-radius: 5px;
        padding-left: 10px;
    }

.offcanvas-header {
    border-bottom: 1px solid #f1f1f1;
    font-size: 1.4rem;
}


.social-link {
    color: #245a98;
    font-size: 1.8rem;
    transition: color 0.3s ease;
}

    .social-link:hover {
        color: #003366;
    }

.offcanvas-body {
    background-color: #f8f9fa;
}

    .offcanvas-body hr {
        border: none;
        border-top: 1px solid #ddd;
    }