/* Footer Styling */
.footer-section {
    font-family: sans-serif;
}

.footer-links a {
    color: #444546;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #f4b34e; /* Your theme red */
    padding-left: 5px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: rgb(46, 43, 43);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #cecfd2; /* Bootstrap Primary Blue */
    color: rgb(13, 14, 79);
    transform: translateY(-3px);
}

.social-links i {
    font-size: 1.1rem;
}