
:root {
    --Gold: #ffd700;
    --White: #ffffff;
    --Black: #000000;
    --Gray: #f0f0f0;
}

.testimonial-section {
    padding: 30px 15px;
    max-width: 1600px;
    margin: auto;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.section-title {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
    margin-top: 5px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 16px;
    color: #7f8c8d;
    max-width: 800px;
    margin: 0 auto;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 10px;
}

.testimonial-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-item {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 10px;
    box-sizing: border-box;
}

.testimonial-content {
    background-color: rgb(255, 255, 255);
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 80px 40px;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    border: 3px solid gold;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.1;
    color: #34495e;
    margin: 10px;
    font-style: italic;
    position: relative;
    text-align: center;
    padding: 0 10px;
    flex-grow: 1;
}

.testimonial-text::before, .testimonial-text::after {
    content: '"';
    font-size: 40px;
    position: absolute;
    color: gold;
    opacity: 0.3;
}

.testimonial-text::before {
    top: -30px;
    left: -10px;
}

.testimonial-text::after {
    bottom: -30px;
    right: -10px;
}

.testimonial-author {
    text-align: right;
    position: relative;
    top: 50px;
}

.testimonial-author h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
    margin-top: 10px;
}

.carousel-arrow {
    position: absolute;
    top: 47%;
    transform: translateY(-50%);
    font-size: 60px;
    cursor: pointer;
    z-index: 2;
    color: black;
    background-color: transparent;
    transition: color 0.3s ease;
}

.carousel-arrow:hover {
    color: gray;
}

.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
}
