/* footer.css */

/* Encapsulate footer styles within .custom-footer */
.custom-footer {
    background-color: #333; /* Dark background for contrast */
    color: #f0f0f0; /* Light text color */
    padding: 0;
    border-radius: 0;
}

.custom-footer .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 50px;
}

.custom-footer .footer-logo-section,
.custom-footer .footer-links-section,
.custom-footer .footer-social-section {
    color: white;
    margin: 20px 0;
}

.custom-footer .footer_logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
}

.custom-footer p {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #f0f0f0 !important
}

.custom-footer p {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: #f0f0f0;
}

.custom-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-footer .footer-links li {
    margin-bottom: 10px;
}

.custom-footer .footer-links a {
    color: #f0f0f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.custom-footer .footer-links a:hover {
    color: #0071bb; /* Match your theme color */
}

.custom-footer .footer-social-section .social-icons {
    display: flex;
    gap: 15px;
}

.custom-footer .social-icon {
    color: #f0f0f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.custom-footer .social-icon:hover {
    color: #0071bb; /* Match your theme color */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .custom-footer .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1rem;
    }

    .custom-footer .footer-logo-section,
    .custom-footer .footer-links-section,
    .custom-footer .footer-social-section {
        margin: 20px 0;
    }

    .custom-footer .social-icons {
        justify-content: center;
    }
}
