
/*client logs*/

.container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        .categories {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        .categories button {
            background: #007bff;
            color: white;
            padding: 12px 24px;
            font-size: 16px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .categories button:hover, .categories button.active {
            background: #0056b3;
        }
        .logos-container {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            padding: 15px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        .logos {
            display: none;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .logos img {
            width: 120px;
            height: auto;
            border: 1px solid #ddd;
            padding: 10px;
            border-radius: 5px;
            background: #fff;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        .logos img:hover {
            transform: scale(1.1);
        }
           @media (max-width: 768px) {
            .categories {
                flex-direction: column;
                align-items: center;
            }
            .categories button {
                width: 90%;
                text-align: center;
            }
            .logos img {
                width: 100px;
            }
        }

