﻿.clients-hero {
            margin: 12px 0 26px;
            border-radius: 18px;
            padding: 24px 20px;
            background: linear-gradient(145deg, #f28c28 0%, #f39c12 45%, #e67e22 100%);
            color: #fff;
        }
        .clients-hero h3 { margin: 0 0 6px; color: #fff; font-size: 30px; }
        .clients-hero p { margin: 0; opacity: 0.92; font-size: 14px; }
        .clients-stats {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 10px;
            margin-top: 18px;
        }
        .clients-stat {
            background: rgba(255, 255, 255, 0.14);
            border: 1px solid rgba(255, 255, 255, 0.24);
            border-radius: 12px;
            padding: 12px;
            text-align: center;
        }
        .clients-stat strong { display: block; font-size: 24px; line-height: 1.2; }
        .clients-stat span { display: block; font-size: 11px; text-transform: uppercase; opacity: 0.9; letter-spacing: 0.8px; }
        .clients-grid .row > div { margin-bottom: 14px; }
        .clients-card {
            display: block;
            padding: 14px;
            border-radius: 12px;
            border: 1px solid #e4ecf2;
            background: #fff;
            box-shadow: 0 6px 18px rgba(13, 39, 64, 0.08);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .clients-card:hover { transform: translateY(-2px); box-shadow: 0 12px 20px rgba(13, 39, 64, 0.12); }
        .clients-card img {
            width: 100%;
            height: 80px;
            object-fit: contain;
            border-radius: 8px;
            background: linear-gradient(180deg, #f8fbfd 0%, #f2f7fb 100%);
        }
       
        @media (max-width: 991px) {
            .clients-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        }
