/* ==== FOOTER === */

.footer {
    background: #0b2545;
    color: #fff;
    padding: 48px 0 24px;
}

/* Footer links default */
.footer a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

/* Footer logo */
.footer .footer-logo {
    height: 44px;
    margin-bottom: 10px;
}

/* Footer paragraph text */
.footer p {
    color: #e2e8f0;
    line-height: 1.6;
}

/* Reset lists */
.footer .list-unstyled {
    padding-left: 0;
    list-style: none;
}

/* Footer links (from index internal CSS) */
.footer .list-unstyled li a {
    color: #cfd7e3;
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
    transition: all 0.3s ease;
}

/* Icons move with text */
.footer .list-unstyled li a i {
    transition: inherit;
}

/* Hover animation */
.footer .list-unstyled li a:hover {
    color: #2a69c9ff;
    transform: translateX(6px);
}

/* Social icons (already matching index) */
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-radius: 50%;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #2a69c9ff;
    transform: translateY(-3px);
}

/* Footer bottom */
.footer-bottom {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: #cbd5e1;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}

.nowrap{
            white-space: nowrap;
    }
       
        
        
     