/* Base Footer Styling */
footer {
    background: #0f172a; /* Dark slate blue */
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 30px;
}

/* Container */
.footer_container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Top Section */
.footer-top {
    padding-bottom: 30px;
    border-bottom: 1px solid #334155;
}

.footer-widgets-single {
    padding: 0 10px;
}

.footer-widgets-single h3 {
    font-size: 20px;
    color: #facc15; /* Yellow accent */
    margin: 0 0 15px 0;
    position: relative;
    display: inline-block;
}

.footer-widgets-single ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widgets-single ul li {
    margin-bottom: 10px;
}

.footer-widgets-single ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-widgets-single ul li a:hover {
    color: #facc15;
    text-decoration: underline;
}

.footer-widgets-single p {
    margin-bottom: 15px;
    color: #e2e8f0;
    line-height: 1.6;
}

/* Contact Info */
.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #e2e8f0;
}

.info-list i {
    color: #facc15;
    margin-right: 10px;
    font-size: 16px;
}

.info-list a {
    color: #cbd5e1;
    text-decoration: none;
    margin-left: 5px;
}

.info-list a:hover {
    color: #facc15;
}

/* Footer Bottom */
.footer-bottom {
    padding: 20px 0;
    background-color: #1e293b;
    text-align: center;
}

.footer-bottom .copyright-text p {
    margin: 0;
    font-size: 14px;
    color: #94a3b8;
}

/* Social Icons */
.footer-bottom .social-icons {
    margin-top: 10px;
}

.footer-bottom .social-icons a {
    display: inline-block;
    margin: 0 8px;
    transition: transform 0.3s ease;
}

.footer-bottom .social-icons img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1); /* make icons white */
}

.footer-bottom .social-icons a:hover {
    transform: scale(1.2);
}

/* Responsive Layout */
@media (max-width: 992px) {
    .footer_container .row {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
    }

    .footer-widgets-single {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer_container .row {
        flex-direction: column;
    }

    .footer-bottom {
        padding: 20px 10px;
    }
}
