.section-title {
    font-size: 32px;
    margin: 30px 0;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.service-card {
    background: #5dd15d;
    width: 300px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.service-card:hover {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 16px;
    color: #004d00;
}


/* Serice Card Testimonials*/


/* Feedback Section */

.feedback-section {
    background-color: #1b4625;
    /* Dark Green Background */
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}

.feedback-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}


/* Feedback Slider */

.feedback-slider {
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 800px;
    margin: auto;
}

.feedback-item {
    display: none;
    max-width: 80%;
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.6;
}

.feedback-item.active {
    display: block;
    animation: fadeIn 1s ease-in-out;
}

.feedback-author {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 10px;
}


/* Dots for Slider */

.feedback-dots {
    margin-top: 20px;
}

.feedback-dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.feedback-dot.active {
    background-color: #4CAF50;
}


/* Animations */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Feedback Section Styling */

#customer-feedback {
    padding: 50px 0;
    text-align: center;
    background-color: #f4f4f4;
}

#customer-feedback h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #004d00;
    /* CFA green theme */
}

.feedback-slider {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    height: 200px;
    /* Adjust height as needed */
}

.feedback-card {
    display: none;
    position: absolute;
    width: 100%;
    color: black;
    transition: opacity 0.5s ease-in-out;
    padding: 20px;
    background: #e6ffe6;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    border-radius: 8px;
    margin-bottom: 20px;
}

.feedback-card.active {
    display: block;
    opacity: 1;
}
