/* footer section */
.footer-section {
    background-color: #010101;
    padding: 50px 0;
    color: #fff;
}

.footer-container {
    border-top: 2px solid #fff;
    padding-top: 30px;
}

.footer-content .footer-logo {
    margin-bottom: 30px;
}

.footer-content .footer-logo img {
    width: 100px;
}

.footer-title {
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-content .social-links a {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #fff;
    color: #000F06;
    border-radius: 50%;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    margin-right: 10px;
}

.footer-content .social-links a:hover {
    background-color: #000F06;
    color: #fff;
}

.footer-download-buttons {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 20px;

}

.footer-btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    background-color: #fff;
    color: #000;
}

.footer-btn:hover {
    background-color: #3AB54A;
    border-color: #3AB54A;
    color: #fff;
}


/* responsive styling for footer */
@media screen and (max-width: 768px) {
    .footer-content {
        display: flex;
        align-items: start;
        justify-content: center;
        flex-direction: column;
    }

    .footer-content .social-links {
        margin-bottom: 30px;
    }

    .footer-download-buttons {
        display: flex;
        align-items: start;
        justify-content: center;
        flex-direction: column;
        gap: 20px;
    }
}

/* responsive styling for footer */
@media screen and (max-width: 576px) {
    .footer-content .social-links {
        margin-bottom: 30px;
    }

    .footer-download-buttons {
        display: flex;
        align-items: start;
        justify-content: center;
        flex-direction: column;
        gap: 20px;
    }
}

.footer-bottom {
    /* padding: 20px 0; */
    background-color: #010101;
    color: #fff;
    border-top: 2px solid #fff;
}