/* Footer Styles */
.footer {
    background-color: #101c32;
    color: white;
    padding: 60px 0 30px;
}

.footer-logo {
    height: 80px;
    margin-bottom: 20px;
}

.text-mute {
    color:whitesmoke;
}
.footer-heading {
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-link {
    color: #a3abb8;
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.contact-info {
    color: #a3abb8;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-icon {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 18px;
}

.copyright {
    text-align: center;
    color: #a3abb8;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-logo {
        height: 60px;
    }
}