footer{
    background: linear-gradient(90deg, #262626 -14.34%, #008AAA 111.7%);
    color: var(--white-color);
    padding: 20px 0;
}
.footer-logo {
    width: 160px;
    height: auto;
    margin: 0 auto 20px;
}
.footer-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.footer-content {
    text-align: center;
    margin: 40px auto;
}
.footer-content h3 {
    margin: 8px 0;
    font-size: clamp(18px, 3vw, 48px);
    font-weight: 700;
    color: white;
}
.footer-style {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}
.footer-style div {
    background: var(--main-color);
    border-radius: 50px;
    padding: 8px 20px;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;

    position: relative;
    overflow: hidden;
    opacity: 0;
}
.footer-style .right{
    transform: rotate(14.64deg);
}
.footer-style .left{
    transform: rotate(-16.9deg);
}
.footer-end{
    border-top: 1px solid #ffffff21;
}
.footer-end .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 14px;
    width: 90%;
    margin: 20px auto 0 auto;
}
.footer-end .social{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.footer-end .social .social-icon{
    font-size: 18px;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--white-color);
}
.footer-end .social .social-icon:hover img{
    transform: scale(1.1);
    transform: rotate(360deg);
}
.footer-end .social .social-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: all 0.5s ease-in-out;
}
.footer-end .social .social-icon img.twitter {
    width: 18px;
    height: 18px;
}
@media   (max-width: 767px){
    .footer-end{
        flex-direction: column;
        align-items: center;
    }
    .gadera {
        order: 2;
    }
}


/* Footer Animation */
.footer-style div::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.15);
    transform: translateX(-110%) skewX(-15deg);
    transition: 0.5s ease;
}
.footer-style div:hover::before {
    transform: translateX(110%) skewX(-15deg);
}
.footer-style .right.rain-done {
    opacity: 1;
    animation: rainDropRight 1.5s forwards,
                floatRight 3s ease-in-out infinite 1.5s;
}
.footer-style .left.rain-done {
    opacity: 1;
    animation: rainDropLeft 1.5s forwards,
                floatLeft 3s ease-in-out infinite 1.5s;
}

@keyframes rainDropRight {
    0% {
        transform: translateY(-120px) rotate(14.64deg);
        opacity: 0;
    }
    60% {
        transform: translateY(10px) rotate(14.64deg);
        opacity: 1;
    }
    80% {
        transform: translateY(-5px) rotate(12deg);
    }
    100% {
        transform: translateY(0px) rotate(14.64deg);
        opacity: 1;
    }
}

@keyframes rainDropLeft {
    0% {
        transform: translateY(-120px) rotate(-16.9deg);
        opacity: 0;
    }
    60% {
        transform: translateY(10px) rotate(-16.9deg);
        opacity: 1;
    }
    80% {
        transform: translateY(-5px) rotate(-14deg);
    }
    100% {
        transform: translateY(0px) rotate(-16.9deg);
        opacity: 1;
    }
}

@keyframes floatRight {
    0% {
        transform: rotate(14.64deg) translateY(0px);
    }
    50% {
        transform: rotate(10deg) translateY(-6px);
    }
    100% {
        transform: rotate(14.64deg) translateY(0px);
    }
}

@keyframes floatLeft {
    0% {
        transform: rotate(-16.9deg) translateY(0px);
    }
    50% {
        transform: rotate(-12deg) translateY(-6px);
    }
    100% {
        transform: rotate(-16.9deg) translateY(0px);
    }
}
