.footer {
    background: linear-gradient(to bottom, #2c2c2c, #1a1a1a);
    color: #fff;
    padding: 30px 0 0; 
    font-family: 'Arial', sans-serif;
    width: 100%;
    margin-top: auto; 
}
.footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}
.footer a:hover {
    color: #f39c12; 
}
.footer .logo-img {
    width: 150px;
    height: auto; 
}
.footer .tagline {
    font-size: 1rem;
    color: #ddd;
    margin-top: 5px; 
}
.footer .section-title {
    color: #f39c12;
    font-weight: bold;
    margin-bottom: 25px; 
    position: relative;
    display: inline-block;
}
.footer .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px; 
    width: 40px;
    height: 3px;
    background-color: #f39c12;
    left: 50%;
    transform: translateX(-50%);
}
@media (min-width: 768px) {
    .footer .section-title::after {
        left: 0;
        transform: none;
    }
}
.footer .list-unstyled li {
    margin-bottom: 10px;
}
.footer .social-icons a {
    display: flex; 
    align-items: center;
    justify-content: center;
    width: 45px; 
    height: 45px;
    background-color: #f39c12;
    color: #000;
    border-radius: 50%; 
    font-size: 1.4rem;
    transition: all 0.3s;
}
.footer .social-icons a:hover {
    background-color: #e67e22;
    transform: translateY(-3px);
}
/* Copyright Styling */
.footer-copyright {
    background-color: #111;
    padding: 12px 0; 
    font-size: 0.9rem;
    color: #aaa;
    text-align: center;
    margin-top: 30px; 
    border-top: 1px solid #333;
}
