/* ===== FOOTER MAIN ===== */
footer.footer {
    background: linear-gradient(135deg, #061a40, #0b2a6b) !important;
    color: #ffffff !important;
    padding: 55px 0;
    font-family: Arial, sans-serif;
}

/* ===== HEADINGS ===== */
footer.footer h4,
footer.footer h5 {
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

/* ===== TEXT ===== */
footer.footer p {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

/* ===== LIST ===== */
footer.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer.footer ul li {
    margin-bottom: 8px;
}

/* ===== LINKS ===== */
footer.footer ul li a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

footer.footer ul li a:hover {
    color: #ffffff;
    padding-left: 4px;
}

/* ===== DIVIDER ===== */
footer.footer hr {
    border-color: rgba(255,255,255,0.2);
    margin: 30px 0;
}

/* ===== COPYRIGHT ===== */
footer.footer .text-center {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    footer.footer {
        text-align: center;
    }

    footer.footer .col-md-4 {
        margin-bottom: 20px;
    }
}