.testimonials-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    color: white;
}

.testimonial-title-container {
    text-align: center;
}

.testimonials-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
    background: #fff;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    text-align: center;
    margin-top: 1rem;
}

/* Testimonials Grid - Set to exactly 2 columns */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

/* Testimonial Card */
.testimonial-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: clamp(1.5rem, 3vw, 2rem);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.testimonial-profile {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.profile-image-1 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 15px;
}

.profile-image-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    flex-grow: 1;
}

.profile-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 5px;
}

.profile-occupation {
    font-size: 0.9rem;
    color: #a8a8a8;
}

.testimonial-content {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #eaeaea;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr; /* Single column on smaller screens */
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .profile-image-1 {
        width: 50px;
        height: 50px;
    }
}

/* Ensure smooth animations */
@media (prefers-reduced-motion: reduce) {
    .testimonial-card {
        transition: none;
    }
}