.footer {
     background: linear-gradient(to right, #0168d5ff, #03986bff);
    color: white;
    padding: 3rem 0;
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    margin-top: 2rem;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;

    background: white;
    border-radius: 50%;
    color: #961B1E;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.company-logo {
    max-width: 100%;
    height: auto;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .footer-column {
        margin-bottom: 2rem;
    }
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
}
