footer {
    padding: 80px 0 40px;
    height: auto;

    padding-top: 0;
    width: 100%;
    overflow: hidden;
    position: relative;
}

footer .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 10px;
    border-radius: 30px;
    position: relative;
}


footer .container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 30%, var(--primary-color-dark));
    border-radius: 30px;
    z-index: -1;
}

footer .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 68%;
    height: 100%;
    background: rgb(27, 50, 179);
    border-radius: 30px 40px 40px 30px;
    z-index: 0;
}




footer .footer-head {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

footer .menu-groups {
    display: flex;
    justify-content: space-around;
    
    position: relative;
}

footer .menu-group h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(202, 30, 30, 0.1);
}

footer .menu-group ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

footer .menu-group ul li a {
    color: var(--text-light-low);
    font-size: 15px;
    transition: all 0.3s ease;
}

footer .menu-group ul li a:hover {
    color: var(--text-light);
    font-weight: 500;
    font-size: 16px;
}

footer .contact-info {
    border-left: 1px solid rgba(255,255,255,0.1);
    padding-left: 80px;
}




footer .contact-info h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
}

footer .contact-info ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

footer .contact-info ul li {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    color: var(--text-light-low);
    font-size: 15px;
}

footer .contact-info ul li .icon {
    background: #fff;
    min-width: 40px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5%;
}

footer .contact-info ul li .icon i {
    color: var(--primary-color);
    font-size: 20px;
}

footer .contact-info ul li a {
    color: var(--text-light-low);
    transition: all 0.3s ease;
    width: 70%;
}

footer .contact-info ul li a:hover {
    color: var(--text-light);
    font-weight: 500;
    font-size: 16px;
}


footer .copyright-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

footer .copyright-container .logo,
footer .copyright-container .copy-text
 {
    width: 20%;
}

footer .copyright-container .logo img {
    width: 220px;
}

footer .copyright-container .social-links {
    display: flex;
    gap: 15px;
}

footer .copyright-container .social-links .social-link {
    
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: var(--primary-color);
    transition: color 0.3s ease;
}

footer .copyright-container .social-links .social-link i {
    color: #fff;
    font-size: 19px;
    position: relative;
    top: 1px;
    left: 1px;
}

footer .copyright-container .social-links .social-link:hover {
    color: var(--text-light);
}
footer .copyright-container .social-links .social-link.facebook {
    background: linear-gradient(45deg, #1877f2 0%, #145dbf 100%);
    box-shadow: 0 2px 10px rgba(24, 119, 242, 0.2);
}

footer .copyright-container .social-links .social-link.facebook:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

footer .copyright-container .social-links .social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 2px 10px rgba(225, 48, 108, 0.2);
}

footer .copyright-container .social-links .social-link.instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

footer .copyright-container .social-links .social-link.linkedin {
    background: linear-gradient(45deg, #0077b5 0%, #005582 100%);
    box-shadow: 0 2px 10px rgba(0, 119, 181, 0.2);
}

footer .copyright-container .social-links .social-link.linkedin:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 119, 181, 0.3);
}

footer .copyright-container .social-links .social-link.twitter {
    background: linear-gradient(45deg, #1da1f2 0%, #0d8ae6 100%);
    box-shadow: 0 2px 10px rgba(29, 161, 242, 0.2);
}

footer .copyright-container .social-links .social-link.twitter:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(29, 161, 242, 0.3);
}

footer .copyright-container .social-links .social-link.youtube {
    background: linear-gradient(45deg, #cc0000 0%, #990000 100%);
    box-shadow: 0 2px 10px rgba(204, 0, 0, 0.2);
}

footer .copyright-container .social-links .social-link.youtube:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.3);
}


footer .copyright-container .copy-text {
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    text-align: right;
}

footer .copyright-container .copy-text a {
    background: #0f973c;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    transition: color 0.3s ease;
}

footer .copyright-container .copy-text a:hover {
    color: var(--text-light);
    transform: translateY(-10px);
}


@media screen and (max-width: 1400px) {
    footer .container {
        max-width: 100%;
        padding: 40px 20px;
    }

    footer {
        width: 90%;
        margin: 0 auto;
    }

    footer .footer-head {
        gap: 30px;
    }

    footer .contact-info {
        padding-left: 40px;
    }
}

@media screen and (max-width: 1200px) {
    footer .menu-group h4 {
        font-size: 20px;
    }

    footer .menu-group ul li a {
        font-size: 14px;
    }

    footer .menu-group ul li a:hover {
        font-size: 15px;
    }

    footer .contact-info h4 {
        font-size: 16px;
    }

    footer .contact-info ul li {
        font-size: 14px;
    }

    footer .contact-info ul li .icon {
        min-width: 35px;
        width: 35px;
        height: 35px;
    }
}

@media screen and (max-width: 992px) {
    footer .footer-head {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    footer .contact-info {
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-left: 0;
        padding-top: 40px;
    }

    footer .container::before {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    footer .menu-groups {
        flex-direction: column;
        gap: 30px;
    }

    footer .copyright-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    footer .copyright-container .logo,
    footer .copyright-container .copy-text {
        width: 100%;
    }

    footer .copyright-container .logo img {
        width: 180px;
    }

    footer .copyright-container .copy-text {
        text-align: center;
    }

    footer .copyright-container .social-links {
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    footer .container {
        padding: 30px 15px;
    }

    footer .menu-group h4 {
        font-size: 18px;
    }

    footer .menu-group ul li a {
        font-size: 13px;
    }

    footer .menu-group ul li a:hover {
        font-size: 14px;
    }

    footer .contact-info ul li .icon {
        min-width: 30px;
        width: 30px;
        height: 30px;
    }

    footer .contact-info ul li .icon i {
        font-size: 16px;
    }

    footer .copyright-container .social-links .social-link {
        width: 35px;
        min-width: 35px;
        height: 35px;
        min-height: 35px;
    }
}


