/* Wrapper for the entire carousel */
.testimonial-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    background: transparent;
}

/* Carousel container */
.testimonial-carousel {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

/* Testimonial items */
.testimonial-item {
    flex: 0 0 calc(33.333% - 20px); /* 3 items per view */
    background: linear-gradient(to bottom right, #1B449C, #00002C);
    color: white;
    text-align: left;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 3px solid white;
    font-size: 16px;
    line-height: 1.5;
    min-width: 300px;
}

/* Carousel arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    opacity: 1;
}

/* Hover effects for arrows */
.carousel-arrow:hover {
    opacity: 0.8;
    transform: translateY(-50%) scale(1.1);
}

/* Left arrow */
.left-arrow {
    left: -60px; /* Adjust to position the arrow outside the carousel */
}

/* Right arrow */
.right-arrow {
    right: -60px; /* Adjust to position the arrow outside the carousel */
}

/* Responsive adjustments for arrows */
@media (max-width: 768px) {
    .left-arrow {
        left: -30px; /* Adjust for smaller screens */
    }
    .right-arrow {
        right: -30px; /* Adjust for smaller screens */
    }
}
