/* Footer Styles */
footer {
    background-color: #0053CF;
    color: white;
    padding: 50px;
    position: relative; /* Change to relative or sticky */
    width: 100%;
    z-index: 10;
    /* Optional: Adjust margins to ensure it doesn't overlap content */
    margin-top: auto; /* If using flexbox */
}

.footer-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-about {
    flex: 1;
    max-width: 300px;
    margin-bottom: 20px;
    padding: 15px;
}

.footer-about img {
    max-width: 150px;
    margin-bottom: 10px;
}

.footer-about p {
    font-size: 14px;
    margin: 10px 0;
}

.footer-services, .footer-company, .footer-info, .footer-social {
    flex: 1;
    margin-bottom: 20px;
    padding: 15px;
}

.footer-bottom {
    text-align: center;
    padding: 15px;
    /* background-color: #032244; */
    background-color: #0053CF;

}


.footer-services, .footer-company, .footer-info, .footer-social {
    flex: 1;
    margin-bottom: 20px;
    padding: 15px;
}

.footer-services h3, .footer-company h3, .footer-info h3, .footer-social h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-services ul, .footer-company ul, .footer-social ul {
    list-style: none;
    padding: 0;
}

.footer-services li, .footer-company li, .footer-social li {
    margin-bottom: 5px;
}

.footer-company li a, .footer-social li a {
    color: white;
    text-decoration: none;
}

.footer-company li a:hover, .footer-social li a:hover {
    color: #56C0FF;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #ffffff33;
    font-size: 14px;
}

.footer-bottom ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.footer-bottom li a {
    color: white;
    text-decoration: none;
}

.footer-bottom li a:hover {
    color: #56C0FF;
}


@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}



