/* FOOTER - PERFECTLY SPACED & CENTERED */
footer {
    background: linear-gradient(to right, #6b46c1, #8b5cf6);
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', sans-serif;
    color: white;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; /* Equal spacing */
    align-items: flex-start;
}

.footer-column {
    flex: 0 1 auto;
    text-align: center; /* Center content */
    padding: 0 15px;
}

.footer-logo {
    width: 180px;
    height: auto;
    display: block;
    margin: 0 auto; /* Center logo */
}

.footer-logo-container {
    flex: 0 1 auto;
    text-align: center;
    padding: 0 15px;
}

.footer-links-container {
    flex: 0 1 auto;
    text-align: center;
    padding: 0 15px;
}

.footer-contact {
    flex: 0 1 auto;
    text-align: center;
    padding: 0 15px;
}

.footer-links {
    display: flex;
    gap: 40px;
    justify-content: center; /* Center links */
}

footer h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left; /* Align list items left */
}

footer li {
    margin-bottom: 8px;
}

footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.9rem;
}

footer a:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}

/* Enhanced styling for technology company */
.footer-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.footer-contact ul li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 6px;
}

.footer-links-container ul li a {
    position: relative;
    padding: 2px 0;
}

.footer-links-container ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
}

.footer-links-container ul li a:hover::after {
    width: 100%;
}

@media (max-width: 1200px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-contact ul,
    .footer-links-container ul {
        text-align: center;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 30px 15px 15px;
    }
    
    .footer-container {
        padding: 20px;
        gap: 20px;
    }
    
    footer h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    footer ul li {
        margin-bottom: 6px;
    }
    
    footer a {
        font-size: 0.85rem;
    }
}

