/* Main Footer Styles */
.bonbloc-footer-widget h3,
.bonbloc-footer-widget p,
.bonbloc-footer-widget a {
    font-family: 'Nunito', sans-serif !important;
}


.bonbloc-footer-widget {
    background-color: #f8f8f8;
    color: #111;
    padding: 100px 20px 40px;
    font-family: 'Segoe UI', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

/* Company Info Styles */
.footer-company {
    flex: 1 1 250px;
}

.footer-company img {
    max-width: 160px;
    margin-bottom: 15px;
}

/* Locations Styles */
.footer-locations {
    flex: 1 1 500px;
}

.footer-locations h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}
.bonbloc-footer-widget a {
    color: #000;              /* default text color */
    text-decoration: none;     /* remove underline */
    transition: color 0.3s;    /* smooth effect */
}

.bonbloc-footer-widget a:hover {
    color: blue;            /* blue on hover */
    /*text-decoration: underline; */
}


.location-group {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.location-item {
    flex: 1 1 200px;
}

.location-item p {
    margin: 0 0 10px;
}

.location-country {
    color: #4CB4C7;
}

.location-divider {
    width: 100%;
    text-align: center;
    margin: 20px 0;
}

.location-divider div {
    display: inline-block;
    height: 1px;
    width: 100%;
    max-width: 550px;
    background-color: #f2f2f2;
    border-radius: 1px;
}

.india-locations {
    margin-top: 10px;
}

.india-city {
    flex: 1 1 250px;
    min-width: 220px;
}

/* Quick Links Styles */
.quick-links-section {
    flex: 1 1 200px;
}

.quick-links-section h3 {
    font-size: 18px;
}

.quick-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links-list li {
    margin-bottom: 8px;
     list-style-type: none;
}

.quick-link-arrow {
    margin-right: 6px;
    color: #000;
    font-size: 15px;
}

.quick-link {
    text-decoration: none;
    color: #000;
    font-size: 18px;
}

/* Recognitions Styles */
.recognition-social-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-top: 60px;
}

.recognitions-section {
    flex: 1 1 60%;
    text-align: center
    ;
}

.recognition-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.recognition-logo {
    height: 100px;
    object-fit: contain;
}

.social-media-section {
    flex: 1 1 30%;
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icon {
    font-size: 18px;
    width: 36px;
    height: 36px;
    border: 1.8px solid #333;
    border-radius: 50%;
    color: #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.recognitions-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.recognition-logos {
    
     justify-content: center;
}

.recognition-logo {
    height: 120px;
    object-fit: contain;
}

/* Social Media Styles */
.social-media-section {
    margin-top: 60px;
}

.social-media-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
justify-content: center;
}

.social-icon {
    font-size: 18px;
    width: 36px;
    height: 36px;
    border: 1.8px solid #333;
    border-radius: 50%;
    color: #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #00008B;
    color: #fff;
    transform: scale(1.1);
}



/* Responsive Styles */
@media (max-width: 767px) {
   .footer-company img {
        max-width: 150px !important;
        width: 100%;
        height: auto;
        margin-bottom: 15px;
    }
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-locations,
    .footer-company,
    .quick-links-section {
        flex: 1 1 100%;
    }
    
    /* Reorder sections for mobile */
    .footer-container {
        display: flex;
        flex-direction: column;
    }
    
    .footer-company {
        order: 1;
    }
    
    .footer-locations {
        order: 2;
    }
    
    .quick-links-section {
        order: 3;
    }
    
    .recognitions-section {
        order: 4;
        margin-top: 20px;
        text-align: left;
    }
    
    .social-media-section {
        order: 5;
        text-align: left;
        justify-content: left;
    }
    
    .location-divider {
        display: none;
    }
    
    .recognition-logos {
        justify-content: left;
    }
    
    .recognition-logo {
        height: 80px;
        max-width: 120px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
   .footer-company img {
        max-width: 150px !important;
        width: 100%;
        height: auto;
        margin-bottom: 15px;
    }
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-locations {
        order: 2;
    }
    
    .quick-links-section {
        order: 3;
        flex: 1 1 100%;
    }
    
    .recognitions-section {
        order: 4;
    }
    
    .recognition-logos {
        justify-content: center;
    }
    
    .recognition-logo {
        height: 100px;
        max-width: 140px;
    }
}

@media (min-width: 992px) {
   .footer-company img {
        max-width: 150px !important;
        width: 100%;
        height: auto;
        margin-bottom: 15px;
    }
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 60px;
    }
    
    .quick-links-section {
        order: 1;
    }
    
    .recognitions-section {
        order: 2;
    }
    
    .social-media-section {
        order: 3;
    }
}