/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

.blue-text{color:#007dcc!important}
a.blue-links{color:#007dcc!important;}
a.blue-links:hover{color:#004e80!important;}

/* Client logos grid */
.client-logos {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 50px;
    align-items: center;
    justify-items: center;
    margin: 30px 0;
}
.client-logos img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive grid for tablets and mobile */
@media (max-width: 1024px) {
    .client-logos {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 600px) {
    .client-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}