/* ============================================================
   footer.css — Chaungeni Technologies
   ============================================================ */

footer {
    background-color: var(--dark);
    color: white;
    padding: 50px 0 20px;
}
.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}
.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}
.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 30px;
    color: #94a3b8;
    font-size: 0.9rem;
}
.copyright a { color: #94a3b8; }
.copyright a:hover { color: white; }
