.testimonial {
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
    background-size: cover;
    background-position: center;
}

/* Ensure the images cover the entire slider frame */
.single_testimonial_img img {
    width: 100%;           /* Ensure the image takes up 100% of the width */
    height: 100%;          /* Ensure the image takes up 100% of the height */
    object-fit: cover;     /* Cover the area of the container without distortion */
    border-radius: 20px;   /* Optional: Apply rounded corners to the images */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Optional: Add shadow for styling */
}

/* Adjust the size of the image container */
.slider-nav {
    position: relative;
    overflow: hidden;      /* Prevent images from overflowing the container */
    height: 400px;         /* Set the height of the image container (adjust as needed) */
}

.slider-nav .slick-slide {
    height: 100%;          /* Ensure each slide takes the full container height */
}

/* Testimonial text and other content styles */
.testimonial_text_area {
    padding-left: 30px;
    padding-right: 30px;
}

.section_heading h5 {
    font-size: 18px;
    color: #ff9e00;
}

.section_heading h2 {
    font-size: 36px;
    font-weight: 600;
}

.single_testimonial_text {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.single_testimonial_text .description {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.single_testimonial_text .rating i {
    color: #ff9e00;
}

.single_testimonial_text h3 {
    font-size: 20px;
    font-weight: 500;
    margin-top: 10px;
}

.single_testimonial_text span {
    color: #777;
    font-size: 14px;
}

/* Slick Arrow Styles */
.slick-arrow-container {
    text-align: center;
    margin-top: 20px;
}

.slick-prev, .slick-next {
    background-color: #ff9e00;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
}

.slick-prev:hover, .slick-next:hover {
    background-color: #fcb900;
}

