.footer {
    background-image: url(../Images/header-green.png);
    background-position: top center;
    background-size: cover;
    padding: 40px 20px !important;
    background-color: rgb(55, 67, 56) !important;
    /* font-family: 'Poppins', sans-serif !important; */
}

.logo-section {
    align-items: center !important;
    margin-bottom: 30px;
}

.logo {
    width: 120px !important;
}

.logo-section h4 {
    font-size: 16px !important;
    color: #333 !important;
}

.footer-container {
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    max-width: 1200px !important;
    margin: auto !important;
}

.footer-column {
    flex: 1 1 250px !important;
    margin: 20px;
}

.footer-column h4 {
    margin-bottom: 12px !important;
    color: #bb9545 !important;
}

.footer-links {
    list-style: none !important;
}

.footer-links li {
    margin-bottom: 8px !important;
}

.footer-links a {
    text-decoration: none !important;
    color: #fff !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    transform-origin: left center !important;
}

.footer-links a:hover {
    color: #bb9545 !important;
    transform: translateX(4px) scale(1.1) !important;
}

.social-icons {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

.social-icons a {
    text-decoration: none !important;
    color: #fff !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
}

.social-icons a:hover {
    color: #bb9545 !important;
    transform: scale(1.1) !important;
}

#back-to-top {
    font-family: 'Poppins', sans-serif !important;
    padding: 0;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #bb9545 !important;;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    display: none;
    transition: background 0.3s ease;
    z-index: 999999;
}

#back-to-top:hover {
    background: #79602c !important;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column !important;
        align-items: center !important;
    }

    .footer-column {
        flex: 0 !important;
        /* margin: 40px 0 !important; */
        text-align: center !important;
    }

    #footer-column-01 h4 {
        margin-top: 40px !important;
    }

    #footer-column-02,
    #footer-column-03,
    #footer-column-04 {
        margin-top: 40px !important;
    }

    .social-icons {
        align-items: center !important;
    }

    .logo-section {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        margin-left: 0 !important;
        margin-bottom: unset !important;
    }

    .logo {
        margin-right: 0 !important;
        /* margin-bottom: 10px !important; */
    }
}

.footer-copy-right {
    text-align: center;
    color: #fff;
    position: relative;
    bottom: -30px;
}