/* Modern Professional Footer Design */

.modern-footer {
    position: relative;
    min-height: 280px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('../../img/new/network.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
    overflow: hidden;
}


/* Footer Background Overlay */

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(0 14 24 / 60%) 0%, rgb(0 58 86 / 80%) 100%);
    z-index: 1;
}


/* Footer Content */

.footer-content {
    position: relative;
    z-index: 3;
    padding: 40px 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
}


/* Company Info Section */

.company-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.company-logo {
    margin-bottom: 15px;
}

.footer-logo {
    max-width: 120px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.company-details h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 600;
}

.company-description {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-link i {
    font-size: 1rem;
}


/* Contact Info Section */

.contact-info h4,
.services h4,
.quick-links h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 600;
    position: relative;
}

.contact-info h4::after,
.services h4::after,
.quick-links h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #ffffff;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0px;
    padding: 8px 0;
}

.contact-item i {
    font-size: 0.9rem;
    color: #ffffff;
    margin-top: 2px;
    width: 16px;
}

.contact-item strong {
    display: block;
    margin-bottom: 2px;
    font-size: 0.85rem;
    color: #ffffff;
    font-weight: 600;
}

.contact-item p {
    font-size: 0.8rem;
    line-height: 1.3;
    color: #d0d0d0;
    margin: 0;
}


/* Services and Quick Links */

.services-list,
.links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li,
.links-list li {
    margin-bottom: 6px;
}

.services-list a,
.links-list a {
    display: block;
    font-size: 0.85rem;
    padding: 4px 0;
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.services-list a::before,
.links-list a::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 4px;
    color: #ffffff;
    font-size: 0.8rem;
}

.services-list a:hover,
.links-list a:hover {
    color: #ffffff;
}


/* Footer Bottom */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    margin-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.copyright p,
.powered-by p {
    font-size: 0.8rem;
    color: #ffffff;
    margin: 0;
    font-weight: 800;
}

.copyright a,
.powered-by a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover,
.powered-by a:hover {
    color: #e0e0e0;
}


/* Responsive Design */

@media (max-width: 768px) {
    .footer-content {
        padding: 30px 15px 15px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .company-details h3 {
        font-size: 1.2rem;
    }
    .social-links {
        justify-content: center;
    }
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 25px 10px 15px;
    }
    .footer-grid {
        gap: 20px;
    }
    .contact-item {
        gap: 8px;
    }
    .social-link {
        width: 30px;
        height: 30px;
    }
    .social-link i {
        font-size: 0.8rem;
    }
}