
/* ===== Footer ===== */

footer {
    background-color: #06071B;
    color: #fff;
    padding: 40px 50px 10px;
    font-family: 'Poppins', sans-serif;
    border-top: #181A2E solid 1px;
}

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


.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 180px;
    overflow: hidden;
}
.footer-logo img {
    width: 100%;
    height: auto;
}


/* Navigation */
.footer-nav {
    display: flex;
    gap: 35px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav a {
    color: #ccc;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
    font-size: 15px;
}

.footer-nav a:hover {
    color: #4471F5;
}

/* Social Icons */
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #9BA0B8;
    color: #0A0A23;
    border-radius: 50%;
    font-size: 14px;
    margin-left: 10px;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    background: #4471F5;
    color: #fff;
}

/* Bottom text */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #b8b8c2;
}
.footer-bottom p {
    margin-bottom: 0px;
}
/* Responsive */
@media (max-width: 768px) {
    footer {
        padding: 30px 20px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .footer-social {
        margin-top: 10px;
    }
    .footer-logo {
    max-width: 150px;
}
.footer-nav a {
    font-size: 14px;
}
.footer-bottom p {
    font-size: 12px;
}
}
