.reviews-section {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(180deg, #a1ce98, #ffffff);
}

.reviews-section h1 {
    font-size: 2rem;
    color: #2ecc71;
    margin-bottom: 2rem;
}

.reviews-container {
    position: relative; 
    height: 150px;
    overflow: hidden;
    margin: 0 auto; 
}

/* Review Box Animation */
.review-box {
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0%;
    width: 80%; 
    max-width: 600px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    text-align: center;
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}

.review-box p {
    font-size: 1rem;
    color: #333;
}

.review-box.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1); /* Visible and centered */
}

/* Feedback Form */
.feedback-form-section {
    padding: 2rem;
    background: white;
    text-align: center;
}

.feedback-form-section h2 {
    font-size: 1.8rem;
    color: #2ecc71;
    margin-bottom: 1.5rem;
}

#feedback-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

#feedback-form label {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
}

#feedback-form input,
#feedback-form select,
#feedback-form textarea {
    width: 100%;
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#feedback-form button {
    background-color: #2ecc71;
    color: white;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#feedback-form button:hover {
    background-color: #27ae60;
}