/* Testimonial Section - Grid Layout */
.testimonial-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.testimonial-card {
    background: #252525;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: #2a2a2a;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 4em;
    color: rgba(255, 215, 0, 0.1);
    font-family: serif;
}

.user-profile {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #444;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: gold;
    font-size: 1.5em;
    border: 2px solid #555;
}

/* 3D Carousel (Kept for reference if needed, but Testimonial is now Grid) */
.carousel-section {
    perspective: 1000px;
    overflow: hidden;
    padding: 60px 0;
    background: #151515;
}
/* ... rest of carousel css ... */
