footer {
    width: 100%;
    background-color: #ffffff; /* White background */
    color: #333; /* Dark text for contrast */
    padding: 10px 0; /* Reduced height for a compact footer */
    text-align: center;
    border-top: 1px solid #e0e0e0;
    margin-top: 30px;
    padding-top: 30px;
}

footer .container {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

footer .footer-left {
    display: flex;
    align-items: center;
}

footer .footer-left a{
    display: flex;
    align-items: center;
}

footer .footer-left img {
    width: 40px; 
    height: auto;
    border-radius: 5px;
    margin-right: 10px;
}

footer .footer-left h3 {
    font-size: 20px; 
    color: #2c3e50;
    margin: 0;
}

footer .footer-links {
    display: flex;
    gap: 25px;
}

footer .footer-links a {
    text-decoration: none;
    color: #2c3e50; /* Dark color for better contrast */
    font-size: 16px;
    font-weight: bold; /* Making the text bolder */
    transition: color 0.3s ease;
}

footer .footer-links a:hover {
    color: #2478c6; /* Bright blue color on hover */
}

footer .footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

footer .footer-social img {
    width: 25px;
    height: 25px;
    transition: transform 0.3s ease;
}

footer .footer-social img:hover {
    transform: scale(1.2);
}

footer .copy-text {
    font-size: 14px;
    color: #555; /* Darker gray for better readability */
    text-align: center;
    margin-top: 10px;
}

@media (max-width: 850px) {
    footer .container {
        flex-direction: column;
        align-items: center;
    }
    footer .footer-left {
        margin-bottom: 20px;
    }
    footer .footer-links{
        align-items: center;
        gap: 10px;
    }
    footer .footer-social {
        align-items: center;
        gap: 10px;
        margin-top: 20px;
    }
}

@media (max-width: 360px) {
    footer .footer-links{
       flex-direction: column;
    }
}

footer a {
    text-decoration: none;
    color: #2478c6;
    font-weight: bold;
    letter-spacing: 0.5px;
}
footer a:hover{
    color: #3c9af1;
}