/* Footer styling */
.footer-dark {
    background-image: url('../../../static/images/home/footer/f-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer-top .widget {
    margin-bottom: 20px;
}

.footer-top .row.justify-content-start {
    margin-left: -15px;
    margin-right: -15px;
}

/* Social icons hover effects */
.social-icons li a {
    transition: all 0.3s ease;
}

.social-icons li a:hover {
    transform: translateY(-3px);
    color: #ffcb05 !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .footer-top [class*="col-"] {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/* Footer link hover effect */
.footer-dark .widget_services ul li a {
    transition: all 0.2s ease;
}

.footer-dark .widget_services ul li a:hover {
    color: #ffcb05 !important;
    transform: translateX(3px);
    padding-left: 5px;
}

/* Footer bottom styling */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copy-right a {
    transition: all 0.3s ease;
    color: white;
    text-decoration: underline;
}

.footer-copy-right a:hover {
    color: #ffcb05 !important;
}

/* Logo styling */
.widget_about img {
    width: 500px;
    margin-left: -40px;
} 