footer {
    background-color: #193358;
    color: #fff;
    text-align: center;
}
footer>section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.footer-div {
    padding: 0 2em;
}

footer a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

footer li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.footer-expert {
    background-color: #00bde5 !important;
    width: 15em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    padding: 2em 1em 4em 1em;
}

.footer-container {
    display: flex;
    flex-direction: row;
    gap: 5em;
}

.footer-nav-div {
    padding-top: 2em;
}

.footer-nav-text {
    font-size: 1.5em;
    margin-bottom: 10px;
    font-weight: 700;
    text-align: start;
    padding: 0.5em 0;
}

.talk-btn-para {
    font-size: 1.2em;
    margin-bottom: 10px;
    font-weight: 700;
    text-align: start;
    padding: 0.5em 0;
}

.footer-talk-btn {
    background-color: #193358 !important;
    font-size: large !important;
    padding: 0.5em 1.5em !important;
    border-radius: 5px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

.footer-talk-btn:hover {
    color: #193358 !important;
    background-color: #fff !important;
}

footer ul {
    display: flex;
    flex-direction: column;
    gap: 1em;
    align-items: start;
    justify-content: start;
}

footer li {
    display: flex;
    align-items: center;
}

footer li::before {
    content: ">";
    margin-right: 0.5em;
    color: #cecbcb;
    font-weight: bold;
}


.footer-title {
    position: relative;
    /* Important for absolute children */
}

/* BEFORE element */
.footer-title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 78%;
    height: 3px;
    background: #00bde5;
}

/* AFTER element with animation */
.footer-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 4px;
    height: 3px;
    background: #FFFFFF;
    animation: footer-title-run-sm 5s infinite linear;
}

/* Animation */
@keyframes footer-title-run-sm {
    0% {
        left: 0;
    }

    50% {
        left: 75%;
    }

    100% {
        left: 0;
    }
}



.footer-copyright-div {
    padding: 0.5em 0;
    width: 100%;
    font-size: 1em;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    background-color: #8b3909;
}

.footer-img {
    margin-top: 1em;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;
}

.footer-img a {
    filter: invert(100%);
    transition: transform 0.3s ease;
}

.footer-img a:hover {
    transform: scale(1.05);
}

.btn-ftr {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.2em;
    border-radius: 10px;
    transition: all 0.3s ease;
    background-color: #00bde5;
    color: #fff !important;
    text-decoration: none;
    border: 2px solid #00bde5;
    position: relative;
    overflow: hidden;
    line-height: 35px;
    cursor: pointer;
}

.btn-footer::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: -4%;
    right: -20%;
    width: 150%;
    height: 110%;
    background: #fff;
    transform: skewX(45deg) scale(0, 1);
    transition: all 0.5s ease;
}

.btn-footer:hover::after {
    transform: skewX(45deg) scale(1, 1);
}

.btn-footer:hover {
    color: #00bde5 !important;
    box-shadow: none;
}

@media (max-width: 1440px) {
    .footer-container {
        gap:2rem;
    }
    footer ul {
        font-size: 1rem;
        font-weight: 700;
    }
}

@media(max-width:1024px){
    .footer-container {
        gap:2.5em;
        font-size: 0.8em;
    }
    .footer-talk-btn {
        font-size: medium !important;
    }
}

@media (max-width: 912px) {
    .footer-container {
        display: flex;
        gap: 0;
        font-size: medium;
    }

    .footer-talk-btn {
        font-size: medium !important;
        padding: 0.5em 1em !important;
    }
}

@media (max-width: 768px) {
    .footer-container {
        display: flex;
        gap: 1em;
        font-size: 0.8em;
    }

    .talk-btn-para {
        font-size: 1em;
    }

    .footer-talk-btn {
        font-size: medium !important;
        padding: 0.3em 1em !important;
    }

    .footer-nav-div {
        padding: 0;
        text-align: left;
    }
    .footer-div{
        padding-bottom: 2em;
    }
}

@media (max-width: 600px) {
    .footer-div{
        padding: 0 0 1em 0;
         width: 100%;
        padding-left: 1em;
    }
    .footer-expert{
        padding-bottom:0;
        width: 95%;
        margin-right: 1em;
    }
    .footer-container {
        flex-direction: column;
        gap: 2em;
        align-items: start;
        justify-content: start;
    }
}


/* ===========================
   ======== Back-to-top ======
   =========================== */

#backToTop {
    position: fixed;
    bottom: 50px;
    right: 20px;
    z-index: 1000;
    display: none;
    background-color: #fd7b1d;
    color: white;
    border: none;
    padding: 12px 18px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
}

#backToTop:hover {
    background-color: #e56d14;
}


/* ===========================
   ======== Notification ======
   =========================== */
.custom-notification-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1em;
    font-size: 0.8em;
}

.custom-notification-content-wrapper span,
.custom-notification-content-wrapper a {
    color: #00bde5;
}

.custom-social-proof {
    transition: all 0.5s ease;
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    border: 1px solid #ccc;
    padding: 5px;
    z-index: 9999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
}

@media (max-width:468px) {
    .custom-social-proof {
        font-size: 0.8em;
        bottom: 10px;
    }
}