﻿.body{
    font-family: 'Poppins', sans-serif;
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.testimonial-container {
    position: relative;
    width: 500px;
    padding: 30px;
    background-color: white;
   /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);*/
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    transition: background-color 0.3s ease;
}

.testimonial-box {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial {
    min-width: 100%;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: relative;
}

    .testimonial.active {
        opacity: 1;
    }

    .testimonial p {
        font-size: 20px;
        font-style: italic;
        color: #555;
        margin: 20px 0;
    }

    .testimonial h3 {
        font-size: 18px;
        font-weight: 500;
        color: #007bff;
        margin-top: 10px;
    }

.quote-mark {
    font-size: 50px;
    color: yellowgreen;
    position: absolute;
    top: -20px;
    left: 20px;
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    font-size: 30px;
    color: #007bff;
    cursor: pointer;
    transition: color 0.3s ease;
}

    .prev-btn:hover, .next-btn:hover {
        color: #0056b3;
    }

.prev-btn {
    left: -40px;
}

.next-btn {
    right: -40px;
}

.testimonial-container:hover {
    background-color: #f7faff;
}
