/* Mobile Footer Adjustments - Center Align Footer Sections for Mobile View Only */
@media only screen and (max-width: 767px) {
    /* Force center align all footer sections regardless of inline attributes */
    .footer_about {
        text-align: center !important;
        display: block !important;
        float: none !important;
    }
    
    /* Override any inline alignment attributes */
    .footer_about[align] {
        text-align: center !important;
    }
    
    /* Center align address elements */
    .footer_about .my_address {
        text-align: center;
        padding-left: 0;
        margin: 0 auto;
        display: block;
        width: 100%;
    }
    
    .footer_about .my_address li {
        text-align: center;
        padding-left: 0;
    }
    
    .footer_about .my_address li a {
        text-align: center;
        display: inline-block;
    }

    .footer_about .my_address li a i {
        padding-right: 0 !important;
    }
    
    /* Center align the map icon and address text */
    .footer_about .my_address li i.fa-map-marker {
        float: none;
        margin-right: 5px;
        display: inline-block;
        vertical-align: middle;
    }
    
    /* Center WhatsApp and Email icons */
    .footer_about .my_address li img {
        display: inline-block;
        vertical-align: middle;
        margin-right: 5px;
    }
    
    /* Center align social icons */
    .footer_area .socail_icon {
        justify-content: center;
        display: flex;
        padding-left: 0;
        margin: 0 auto;
    }
    
    /* Center align headings */
    .footer_about h5 {
        text-align: center;
        margin: 15px auto;
    }
    
    /* Center align the "Made in India" text */
    .footer_about h5 font {
        text-align: center;
        display: block;
    }
    
    /* Center align copyright text */
    .copyright_area {
        text-align: center;
    }
}
