/* ==========================
   Footer CSS
========================== */

.footer {
    background: #0b1220;
    color: #fff;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}


.footer-box strong {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 800;
    color: #2da8ff;
}

.footer-box p {
    color: #cfcfcf;
    line-height: 28px;
    margin-bottom: 12px;
    text-align: center;
}

.footer-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-box ul li {
    margin-bottom: 12px;
}

.footer-box ul li a {
    text-decoration: none;
    color: #cfcfcf;
    transition: .3s;
}

.footer-box ul li a:hover {
    color: #2da8ff;
    padding-left: 6px;
}

.footer-bottom {
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    padding-top: 20px;
    color: #aaa;
    font-size: 15px;
}
.call-btn,
.whatsapp-btn {
    position: fixed;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .3);
    transition: all .3s ease;
}

/* Call Button */
.call-btn {
    top: 43%;
    background: #ff3b30;
}

/* WhatsApp Button */
.whatsapp-btn {
    top: 56%;
    background: #25D366;
}

.call-btn i,
.whatsapp-btn i {
    color: #fff;
    font-size: 30px;
}

/* Hover Effect */
.call-btn:hover {
    background: #d62828;
    transform: scale(1.15) rotate(-10deg);
    box-shadow: 0 10px 25px rgba(255, 59, 48, .6);
}

.whatsapp-btn:hover {
    background: #1ebe5d;
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 10px 25px rgba(37, 211, 102, .6);
}

.call-btn:hover i,
.whatsapp-btn:hover i {
    transform: scale(1.2);
}

/* Responsive */

@media(max-width:991px) {

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:768px) {

    .footer {
        padding: 50px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .footer-box ul li a:hover {
        padding-left: 0;
    }

}