/* Footer */
.footer {
    margin-top: 6rem;
    background: var(--deep-navy);
    color: #ffffff;
    overflow: hidden;
    position:relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.03) 10px, rgba(255, 255, 255, 0.03) 20px);
    animation: slidePattern 20s linear infinite;
    pointer-events: none;
}

@keyframes slidePattern {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(28.28px);
    }
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    text-align: center;
}


.logo-img {
    width: 90px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-box h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.footer-box p {
    color: #d6d6ff;
    font-size: 15px;
    line-height: 1.6;
}

.underline {
    width: 40px;
    height: 3px;
    background: #ff2e63;
    display: block;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}

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

.footer-box ul li {
    margin-bottom: 10px;
}

.footer-box ul li a {
    color: #d6d6ff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-box ul li a:hover {
    color: #ffffff;
    padding-left: 6px;
}

.footer-bottom {
    text-align: center;
    padding: 16px;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/*  Tablet Responsive */

@media (max-width: 1024px) {
    .footer-container {
        text-align: center;
    }

    .underline {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Mobile Responsive*/

@media (max-width: 480px) {
    .footer {
        margin-top: 4rem;
    }

    .footer-container {
        gap: 2rem;
    }

    .logo-img {
        margin-left: auto;
        margin-right: auto;
    }
}