﻿/* Footer Layout Base */
.footer-section {
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.bg-slate-900 {
    background-color: #edf2f9 !important;
}

.border-slate-800 {
    border-color: #fff !important;
}

.text-slate-300 {
    color: #0b1727 !important;
}

.text-slate-400 {
    color: #748194 !important;
}

.text-slate-500 {
    color: #64748b !important;
}

.text-blue-400 {
    color: #0052cc !important;
}

.hover-underline:hover {
    text-decoration: underline !important;
}

/* Links Hover Effects */
.footer-link {
    color: #748194;
    text-decoration: none;
    transition: color 0.2s ease;
}

    .footer-link:hover {
        color: #2563eb;
        font-weight: 600;
    }

.footer-bottom-text {
    font-size: 0.75rem;
}

.footer-bottom-link {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

    .footer-bottom-link:hover {
        color: #2563eb;
        font-weight: 600;
    }

/* Social Buttons */
.social-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: #1e293b;
    color: #cbd5e1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .social-btn.btn-facebook:hover {
        background-color: #2563eb;
        color: #ffffff;
    }

    .social-btn.btn-youtube:hover {
        background-color: #dc2626;
        color: #ffffff;
    }

    .social-btn.btn-linkedin:hover {
        background-color: #1e40af;
        color: #ffffff;
    }








