/* Footer Styles */
footer {
    background-color: #fff;
    padding: 1.5rem 0;
    border-top: 1px solid #eee;
    margin-top: 2rem;
}

/* Static footer for desktop */
@media (min-width: 992px) {
    html {
        position: relative;
        min-height: 100%;
    }
    
    body {
        margin-bottom: 120px; /* Footer height */
    }
    
    footer {
        position: fixed;
        bottom: 0;
        width: 100%;
        height: 120px; /* Set the fixed height of the footer here */
        background-color: #fff;
        z-index: 1000;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    }
}

/* Footer logo */
.logo-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Footer social icons */
footer .social-icons a {
    color: #6c757d;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

footer .social-icons a:hover {
    color: var(--primary-color);
}
