/* Footer */
.footer {
    height: 256px;
    width: 100%;
    /* margin-top: 20px; */
    background-color: #111;
    color: white;
    padding: 35px 0;
    position: relative;
    background-image: url('/Footer.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}


.footer-wrapper .container {
    margin: 0;
    padding: 0;
}

.footer-container {
    width: 100%; /* Ensure full width */
    margin: auto;
    padding: 0 100px; /* Add padding to prevent content from touching screen edges */
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}


.footer-left {
    width: 30%;
}

.footer-logo {
    width: 120px;
    margin-bottom: 10px;
}

.footer-description {
    font-size: 14px;
    color: #ddd;
    line-height: 1.5;
}

.footer-contact {
    font-size: 14px;
    font-weight: bold;
}

.contact-email,
.contact-number {
    text-decoration: none;
    color: white;
    border-bottom: 2px solid #00B207;
}

.contact-email:hover,
.contact-number:hover {
    color: #00B207;
    border-color: white;
}

.footer-links {
    width: 65%;
    display: flex;
    justify-content: space-between;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #ccc;
    font-size: 14px;
}

.footer-column ul li a:hover {
    color: #00B207;
}

@media (max-width: 1024px) {
    .footer-container {
        width: 95%;
        padding: 0 15px;
        gap: 20px;
    }

    .footer-left {
        width: 35%;
    }

    .footer-links {
        width: 60%;
    }
}

@media (max-width: 768px) {
    .footer-container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 95%;
        padding: 20px 10px;
        gap: 10px;
        text-align: left;
    }

    .footer-left {
        
        width: 30%;
        margin-bottom: 20px;
    }

    .footer-links {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .footer-column {
        width: 45%;
        margin-bottom: 20px;
    }

    .footer-logo {
        width: 90px;
    }

    .footer-description,
    .footer-contact,
    .footer-column ul li a {
        font-size: 13px;
    }

    .footer-column h3 {
        font-size: 14px;
        margin-bottom: 8px;
    }
}
@media (max-width: 480px) {
    .footer-container {
        width: 100%;
        padding: 0 8px;
        gap: 5px;
    }

    .footer-left {
        width: 45%;
    }

    .footer-links {
        width: 53%;
        gap: 10px;
    }

    .footer-column h3 {
        font-size: 14px;
    }

    .footer-column ul li a {
        font-size: 12px;
    }

    .footer-description,
    .footer-contact {
        font-size: 12px;
    }

    .footer-logo {
        width: 90px;
    }
}
