/* Footer Styles */
.footer {
    background-color: #0e1d34;
    color: #cbd5e1;
    padding: 80px 0 30px 0;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer h3 {
    color: white;
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer h4 {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: #0d42ff;
    bottom: 0;
    left: 0;
}

.footer p {
    line-height: 1.6;
    color: #94a3b8;
}

/* Footer Links */
.footer-links-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

.footer-links-list li {
    margin-bottom: 12px;
    width: 100%;
}

.footer-links-list a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links-list a:hover {
    color: white;
    transform: translateX(5px);
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a i {
    color: white !important;
}

.social-links a:hover {
    background-color: #0d42ff;
    color: white;
    transform: translateY(-3px);
}

/* Bottom Bar */
.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Fix footer container alignment due to global flex-box container overrides */
.footer .container {
    display: block !important;
}

.footer .row {
    display: flex;
    flex-wrap: wrap;
}

.footer p strong {
    color: white;
}