
/* -- footer css
-------------------------------------- -- */
/* Ensure the body and html take the full height */
/* html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
} */

/* Make the container flex to occupy remaining space */
.container {
    flex: 1;
}

/* Footer sticks to the bottom */
footer {
    background-color: #003366;
    padding: 20px;
    color: #fff;
    position: relative;
    width: 100%;
    bottom: 0;
    margin-top: 20px; /* Push the footer to the end */
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Ensures content stacks on smaller screens */
}

footer .social {
    display: flex;
    gap: 15px;
}
    footer .social {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        gap: 15px;
    }
    
    footer .social li {
        display: inline;
    }
    
    footer .social a {
        color: #fff;
        text-decoration: none;
    }
    
    footer .social a:hover {
        text-decoration: underline;
    }

    