/* Reviews Section Styling */
.reviews {
    padding: 100px 0;
    background-color: var(--section-bg);
}

.reviews-slider {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.review-item {
    background-color: var(--background-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 15px 0;
    text-align: center;
    width: 100%;
    max-width: 600px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.review-stars {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--text-color);
}

.review-author {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 15px;
    font-size: 1.1rem;
}

/* Animation for review items */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-item {
    animation: fadeIn 0.6s ease forwards;
}

/* Media queries for responsive design */
@media (max-width: 768px) {
    .review-item {
        padding: 20px;
        margin: 10px 0;
    }
    
    .review-stars {
        font-size: 1rem;
    }
    
    .review-text {
        font-size: 0.9rem;
    }
    
    .review-author {
        font-size: 1rem;
    }
}
