@charset "utf-8";
/* CSS Document */

        .testimonials-container {
            max-width: 100%;
            margin: 30px auto;
            padding: 20px;
        }
        .testimonials {
            display: flex;
            overflow-x: auto;
            gap: 20px;
            padding: 20px;
            scroll-behavior: smooth;
        }
    /*    .testimonials::-webkit-scrollbar {
            height: 8px;
        }
        .testimonials::-webkit-scrollbar-thumb {
            background-color: #888;
            border-radius: 10px;
        }
        .testimonials::-webkit-scrollbar-track {
            background: #f1f1f1;
        }  */
        .testimonial {
            flex: 0 0 320px;
            background: white;
            padding: 10px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            text-align: center;
        }
        .testimonial img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin-bottom: 15px;
        }
        .testimonial p {
            font-size: 14px;
            color: #333;
            margin: 0 0 10px;
        }
        .testimonial h4 {
            font-size: 16px;
            color: #007bff;
            margin: 0;
        }
        .controls {
            text-align: center;
            margin-top: 20px;
        }
        .controls button {
            background: #007bff;
            color: white;
            border: none;
            padding: 10px 20px;
            margin: 0 10px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
        }
        .controls button:hover {
            background: #0056b3;
        }