/* Modern Footer Styles */
.modern-footer {
    background-color: #001f3f; /* Dark blue for a professional look */
    color: #a9b3c1;
    padding: 6rem 15px 2rem 15px;
    font-family: 'Inter', sans-serif;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Adjusted for better distribution */
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-column h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

.footer-about .footer-logo {
    max-width: 150px;
    margin-bottom: 1.5rem;
}

.footer-about p {
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #a9b3c1;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-contact .detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
}

.footer-contact .detail i {
    font-size: 1.1rem;
    margin-right: 1rem;
    color: #fff;
    margin-top: 5px;
}

.footer-social {
    margin-top: 2rem;
}

.footer-social a {
    color: #fff;
    font-size: 1.4rem;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #0f6fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #00305d;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}
