footer.footer {
    background-color: #03b9e2;
    color: #333333;
    padding: 60px 0 0 0;
    border-top: 1px solid #eeeeee;
    text-align: left;
}

.footer-top {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-col {
    flex: 1;
    min-width: 180px;
}
.fc-h{
    font-size: 1.5rem;
}
.footer-info {
    flex: 1.5;
}

.footer-logo img {
    max-width: 190px;
    margin-bottom: 20px;
}

.footer-contact p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #000000;
}

.footer-contact strong {
    color: #333333;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000000;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-col ul li a {
    color: #000000;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-col ul li span {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

/* Social & Support Column */
.live-chat-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333333;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 5px;
}

.support-center-text {
    font-size: 12px;
    color: #000000;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 0.5rem;
}

.social-icons a {
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

.social-icons img {
    filter: none;
    /* Reset if previously inverted */
}
.footer-support{
    margin-bottom: 1rem;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #f9f9f9;
    padding: 20px 0;
    border-top: 1px solid #eeeeee;
}

.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0 20px;
}

.copyright-text {
    font-size: 1rem;
    color: #777777;
    margin: 0;
}

.dmca-badge-wrapper img {
    /* height: 20px; */
    padding-top: 0.5em;
}

@media (max-width: 992px) {
    .footer-col {
        min-width: calc(33.33% - 30px);
    }
}

@media (max-width: 768px) {
    .footer-col {
        min-width: calc(50% - 30px);
    }

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

@media (max-width: 480px) {
    .footer-col {
        min-width: 100%;
    }
}

@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-copyright-div {
        flex-direction: column;
    }

    .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;
    }
}