/* FOOTER BACKGROUND */
.footer {
    background-image: linear-gradient(to right, #0d5904, rgb(4 16 53));
    color: #ddd;
    padding-top: 20px;
}
.footer a {
    color: #ddd;
}

/* 1200px centered container */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* TOP SOCIAL BAR */
.footer-top {
    background: #8d9365;
    padding: 12px 0;
    border-bottom: 1px solid #8d9365;
}

.footer-top .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* MAIN FOOTER GRID */
.footer-main .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 0;
}

/* COLUMNS */
.footer-col {
    flex: 1 1 250px;
    min-width: 220px;
}

/* COPYRIGHT */
.footer-bottom {
    background: #065312;
    padding: 15px 0;
    text-align: center;
    border-top: 1px solid #222;
}

/* Remove bullets from all footer menus */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Remove underline from footer links */
.footer-col ul li a {
    text-decoration: none;
    color: #ccc;
    transition: 0.3s;
}

/* Hover effect (optional) */
.footer-col ul li a:hover {
    color: #00aaff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        text-align: center;
    }
    .footer-col {
        margin-bottom: 20px;
    }
    .footer-top {
        justify-content: center;
        text-align: center;
        gap: 10px;
    }
}





