/* Testimonial Grid Layout */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.testimonial-item {
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.testimonial-item img {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.testimonial-item:hover img {
    transform: scale(1.05);
}

/* Text with line styling for category headers */
.text-with-line {
    position: relative;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 25px;
    padding-bottom: 10px;
}

.text-with-line::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    border-radius: 2px;
}

/* Responsive adjustments for testimonial grid */
@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .testimonial-item img {
        max-width: 100%;
        height: 250px;
    }
    
    .text-with-line {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .testimonial-item img {
        height: 200px;
    }
    
    .text-with-line {
        font-size: 1.2rem;
    }
}
/* Testimonial Grid Layout */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.testimonial-item {
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.testimonial-item img {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.testimonial-item:hover img {
    transform: scale(1.05);
}

/* Text with line styling for category headers */
.text-with-line {
    position: relative;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 25px;
    padding-bottom: 10px;
}

.text-with-line::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    border-radius: 2px;
}

/* Responsive adjustments for testimonial grid */
@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .testimonial-item img {
        max-width: 100%;
        height: 250px;
    }
    
    .text-with-line {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .testimonial-item img {
        height: 200px;
    }
    
    .text-with-line {
        font-size: 1.2rem;
    }
}
