.neo-footer {
    background: linear-gradient(180deg, #0f1115, #0b0d10);
    color: #cfd3dc;
    padding: 80px 6px 30px 6px;
    font-family: "Avenir", Arial, sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
    padding-left: 10px;
    padding-right: 10px;
}

.footer-logo {
    max-width: 60%;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.6;
    color: #9aa0aa;
}

.neo-footer h6 {
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-links {
    text-align: start;
}

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

.footer-links li {
    margin-bottom: 12px;
    font-size: 17px;
}

.footer-links a {
    color: #9aa0aa;
    text-decoration: none;
    transition: color .3s ease;
}

.footer-links a:hover {
    color: #ffffff;

}

.footer-social {
    text-align: start
}

footer .social-icons {
    display: flex;
    gap: 5px;

}

footer .social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    transition: all .3s ease;
}

.social-icons a:hover {
    background: #ffffff;
    color: #000;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #8b8f98;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

.footer_logo a img {
    max-width: 160px;
}

.css-ul {
    list-style: outside none;
}


.footer_desc p {
    font-size: 14px;
    line-height: 20px;
    color: #bdbdbd;
    text-align: start
}

.footer_logo {
    margin-bottom: 31px;
}

@media only screen and (max-width: 767px) {
    .footer_desc p {
        line-height: 25px;
    }
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 40px;

    border-radius: 50px;
    text-align: center;
    font-size: 30px;

    z-index: 100;
}

.my-float {
    margin-top: 16px;
}

.payment-options {
    list-style: none;
    margin: 0;
    padding: 0;
    cursor: default;
    font-family: Cypress Webicons Regular;
    font-size: 32px;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}

.payment-options li {
    padding: 6px;
}

.whatsapp-icon {
    animation: pulse 1.5s infinite;
    display: inline-block;
    border-radius: 50px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
        box-shadow: 0 0 0 rgba(255, 255, 255, 0);
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }

    100% {
        transform: scale(1);
        opacity: 0.7;
        box-shadow: 0 0 0 rgba(255, 255, 255, 0);
    }
}

body {
    font-family: "Avenir", Arial, sans-serif !important;
}
