/* ========================
   FOOTER BASE
======================== */
footer {
    background-color: #E0E9FF;
}

footer .container {
    margin: 0 auto;
    padding: 30px 20px 10px;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ========================
   FOOT-BOX (Banner Section)
======================== */
.foot-box {
    background-color: #072AC8;
    margin: -110px 20px 0;
    padding: 36px;
    border-radius: 52px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: flex-start;
    max-width: 400px;
    transition: all 0.3s ease;
}

.foot-box img {
    width: 45px;
}

.foot-box h1 {
    margin-bottom: 20px;
    font-size: 32px;
    color: #fff;
}

.foot-box p {
    margin-bottom: 40px;
    color: #fff;
    max-width: 100%;
}

.foot-box .normal-btn button {
    background-color: #fff;
    margin-top: 20px;
}

.foot-box .normal-btn button img {
    width: 14px;
}

.foot-box span {
    color: #072AC8;
}

/* ========================
   FOOTER NAVIGATION TABS
======================== */
.foot-tabs {
    margin: 20px 0;
    display: flex;
    gap: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #C2D3FF;
}

.foot-tabs a {
    color: #072AC8;
    position: relative;
}

/* ========================
   FOOTER CONTENT FLEX AREAS
======================== */
.foot-flex1,
.foot-flex2,
.foot-flex3 {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    align-items: flex-start;
}

.foot-flex1 div,
.foot-flex3 div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.foot-flex1 a,
.foot-flex1 span,
.foot-flex3 span {
    color: rgba(11, 16, 40, 0.6);
}

.foot-flex2 {
    margin-top: 20px;
    align-items: center;
}

.foot-flex2 div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.foot-flex2 div:first-child {
    margin-right: 20px;
}

.foot-flex2 a {
    color: #072AC8;
}

.foot-flex3 {
    flex-direction: column;
    align-items: flex-start;
    text-align: start;
    margin: 20px 0;
}

/* ========================
   RESPONSIVE STYLES
======================== */
@media screen and (max-width: 1100px) {
    footer .container {
        flex-direction: column;
        justify-content: center;
    }

    .foot-box {
        max-width: 100%;
        width: 100%;
        margin: -90px 0 30px;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
    }

    .foot-box img {
        width: 110px;
    }

    .other-foot {
        max-width: 90%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
}

@media screen and (max-width: 768px) {
    footer .container {
        flex-direction: column;
        padding: 50px 20px 20px;
    }

    .foot-box {
        margin: -90px 0 30px;
        max-width: 100%;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .foot-box img {
        max-height: 80px;
        width: auto;
        height: auto;
        max-width: 100%;
        object-fit: contain;
    }

    .foot-tabs {
        display: none;
    }

    .other-foot {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .foot-flex1,
    .foot-flex2,
    .foot-flex3 {
        flex-direction: column;
        align-items: flex-start;
        text-align: start;
    }

    .foot-flex1 div {
        align-items: flex-start;
    }

    .foot-flex2 {
        gap: 20px;
        margin: 10px 0;
    }

    .foot-flex2 div {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .foot-flex3 {
        margin-top: 20px;
    }
}
