.testimonials-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            padding: 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .testimonial-card:before {
            content: "“";
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 80px;
            color: #3498db;
            opacity: 0.1;
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .client-info {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .client-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #3498db;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.5rem;
            margin-right: 15px;
            box-shadow: 0 4px 8px rgba(52, 152, 219, 0.2);
        }
        
        .client-details h3 {
            font-size: 1.3rem;
            color: #2c3e50;
            margin-bottom: 5px;
        }
        
        .client-details p {
            color: #3498db;
            font-size: 0.95rem;
            font-weight: 500;
        }
        
        .testimonial-text {
            color: #555;
            line-height: 1.7;
            font-size: 1rem;
            margin-bottom: 20px;
        }
        
        .project-highlight {
            display: inline-block;
            background-color: #e8f4fc;
            color: #2c3e50;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-top: 10px;
        }
        
        .rating {
            color: #f1c40f;
            margin-top: 15px;
            font-size: 1.1rem;
        }
        
        .stats-bar {
            display: flex;
            justify-content: space-between;
            background: linear-gradient(to right, #3498db, #2ecc71);
            border-radius: 10px;
            padding: 20px;
            margin-top: 40px;
            color: white;
            text-align: center;
        }
        
        .stat-item h2 {
            font-size: 2rem;
            margin-bottom: 5px;
        }
        
        .stat-item p {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .cta-button {
            display: block;
            width: 250px;
            margin: 40px auto 0;
            background: #ff5500;
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 1.1rem;
            border-radius: 30px;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
            text-decoration: none;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
        }
        
        @media (max-width: 768px) {
            .testimonials-container {
                grid-template-columns: 1fr;
            }
            
            .stats-bar {
                flex-direction: column;
                gap: 20px;
            }
            
            .section-header h1 {
                font-size: 2rem;
            }
        }