footer {
    background-image: url("../assets/images/bg-Footer.svg");
    background-position: center;
    background-size: cover;
    padding-block: 40px 20px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
footer::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("../assets/images/victor.svg");
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    left: 0;
    top: 0;
    /* transform: rotate(185deg); */
    z-index: -1;
}
footer .footer-row {
    padding-bottom: 20px;
}
footer .item-1 figure {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
footer .item-1 figure img {
    width: 400px;
}
footer figure figcaption {
    color: var(--white-color);
    font-size: clamp(12px, 2vw, 16px);
}
footer ul.social {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 17px;
    padding-top: 15px;
}
footer ul.social li a {
    color: var(--main-color);
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 1px 0px 0px 1px var(--main-color);
    
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}


footer ul.social li a:hover {
    background: var(--main-color);
    color: #fff;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}
footer ul.social li a i {
    transition: transform 0.3s ease;
}

footer ul.social li a:hover i {
    transform: rotate(360deg);
}
footer ul.social li a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--main-color);
    border-radius: 50%;
    transform: scale(0);
    opacity: 0.5;
    transition: transform 0.5s ease, opacity 0.5s ease;
}
footer ul.social li a:hover::before {
    transform: scale(1.5);
    opacity: 0;
}


footer .row-item {
    padding-bottom: 20px;
}
footer .col-item {
    display: flex;
    justify-content: center;
}
footer .item-2 {
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 25px;
}
footer .item-2 ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
footer .item-2 ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}
footer .item-2 ul li:hover a {
    color: var(--main-color);
}
footer .item-2 ul li a {
    color: var(--white-color);
    font-size: clamp(12px, 2vw, 16px);
    transition: .3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
footer .item-2.contactUs ul li a .img-icon {
    width: 40px;
    height: 40px;
}
footer .item-2 li.active-link a {
    color: var(--main-color);
}
footer .item-2 h4 {
    font-size: clamp(15px, 4vw, 20px);
    font-weight: 700;
    color: var(--main-color);
    padding-bottom: 20px;
}
footer .item-2 figure {
    width: 200px;
}

footer .footer-bottom .text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white-color);
    padding-top: 25px;
    border-top: 1px solid #ffffff61;
    flex-wrap: wrap;
    gap: 10px;
}

footer .footer-bottom .heart {
    display: inline-block;
    animation: heartbeat 3s infinite;
    transform-origin: center;
}
@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.2);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.2);
    }
}



@media (max-width: 768px) {
    footer .footer-bottom .text {
        justify-content: center;
    }
    footer .item-2 ul {
        gap: 5px;
    }
    footer .item-2 figure img {
        width: 120px;
    }
    footer .item-1 figure img {
        width: 70%;
        height: auto;
    }
    footer .item-1 figure,
    footer ul.social {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    footer .item-2 figure {
        margin: auto;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    footer .item-2{
        width: 100%;
    }
}