.site-footer {
    background: #000;
    color: #ccc;
    padding: 80px 0 20px;
}

.page-template-service-details-template .site-footer,
.page-template-contact .site-footer,
.page-template-services .site-footer,
.home .site-footer {
    padding-top: 216px;
}

.footer_logo a {
    width: 220px;
    display: block;
}

.footer_logo a img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

/* GRID */
.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h3 {
    color: #2f6bff;
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 28px;
}

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

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

.footer-col ul li:last-child {
    margin-bottom: 0;
}

.footer-col ul li a {
    text-decoration: none;
    transition: 0.3s;
    color: rgb(209, 213, 219);
    position: relative;
    transition: all 0.5s ease;
}

.contact-item a:hover,
.footer-col ul li.current-menu-item>a,
.footer-col ul li a:hover {
    color: rgb(59 130 246);
}

.footer-col ul li a::before {
    content: ">";
    color: rgb(59 130 246);
    padding-right: 10px;
}

/* CONTACT */
.footer-contact {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item a {
    font-size: 20px;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.5s ease;
    color: #D1D5DB;

}


.contact-item .icon {
    width: 45px;
    height: 45px;
    background: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* SOCIAL */
.social-box {
    background: #0b1225;
    padding: 10px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icons a {
    color: #fff;
}

.social-icons a:hover {
    color: #2f6bff;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid rgb(31 41 55);
    margin-top: 34px;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom a {
    color: rgb(59 130 246);
    transition: all 0.5s ease;
}

.footer-bottom a:hover {
    color: #fff;
}

.footer-bottom p {
    color: rgb(107 114 128);
    font-size: 14px;
    line-height: 26px;
}


@media (max-width:991px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .contact-item a {
        font-size: 18px;
        line-height: 28px;
    }



}

@media (max-width:767px) {
    .contact-item .icon svg {
        width: 100%;
        max-width: 14px;
    }

    .contact-item a {
        font-size: 16px;
        line-height: 26px;
        gap: 10px;
    }

    .contact-item .icon {
        width: 35px;
        height: 35px;
    }

}

@media (max-width:576px) {
    .footer-top {
        grid-template-columns: repeat(1, 1fr);
        gap: 12px;
    }

    .footer-contact {
        margin-top: 30px;
    }

    .footer-contact {
        flex-direction: column;
    }

    .social-box {
        width: fit-content;
    }

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

    .contact-cards {
        grid-template-columns: repeat(1, 1fr);
        margin: 0;
    }

    .cyber-box {
        padding-bottom: 40px;
    }

    .cyber-attacks-section {
        padding: 60px 0 60px;
    }

    .page-template-contact .site-footer,
    .page-template-service-details-template .site-footer,
    .page-template-services .site-footer,
    .home .site-footer,
    .site-footer {
        padding: 60px 0 20px;
    }

    .footer_logo {
        margin-bottom: 10px;
    }



    .footer-heading {
        position: relative;
        cursor: pointer;
    }

    .footer-heading:before {
        height: 2px;
        width: 10px;
        right: 5px;
    }

    .footer-heading:before,
    .footer-heading:after {
        content: "";
        background: var(--white);
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        transition: all 0.5s ease;
    }

    .footer-heading:after {
        height: 10px;
        width: 2px;
        right: 9px;
    }

    .footer-heading.active:after {
        opacity: 0;
    }

    .footer-menu {
        border-bottom: 1px solid rgb(31 41 55);
    }

    .footer-menu ul.ftr-menu {
        margin-bottom: 20px;
    }


}

/* Base hidden state */
.anim {
    opacity: 0;
    transition: all 0.8s ease;
}

/* Directions */
.anim-left {
    transform: translateX(-60px);
}

.anim-right {
    transform: translateX(60px);
}

.anim-top {
    transform: translateY(-60px);
}

.anim-bottom {
    transform: translateY(60px);
}

/* Active state */
.anim.show {
    opacity: 1;
    transform: translate(0, 0);
}

.anim-fade {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.anim-fade.show {
    opacity: 1;
}

/* Zoom base */
.anim-zoom {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease;
}

/* Active */
.anim-zoom.show {
    opacity: 1;
    transform: scale(1);
}


.anim-delay-1 {
    transition-delay: 0.2s;
}

.anim-delay-2 {
    transition-delay: 0.4s;
}

.anim-delay-3 {
    transition-delay: 0.6s;
}

.anim-fade {
    transform: none;
    /* no movement */
}

.anim-left {
    transform: translateX(-60px);
}

.anim-right {
    transform: translateX(60px);
}

.anim-top {
    transform: translateY(-60px);
}

.anim-bottom {
    transform: translateY(60px);
}