/* Testimonials Section Styles */
.testimonials-section {
    padding: 80px 0 120px;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.testimonial-carousel {
    padding: 20px 5px 40px;
    margin: 0 -15px;
    width: 100%;
    display: block !important;
}

.testimonial-item {
    padding: 0 15px;
    outline: none;
    float: left;
    width: 33.333%;
    height: inherit;
}

.testimonial-box {
    background: #fff;
    transition: all 0.3s ease;
    margin: 10px 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
}

.testimonial-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

.testimonial-box .p-4 {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 1.5rem !important;
}

.testimonial-img {
    flex-shrink: 0;
}

.testimonial-img img {
    border: 2px solid #f76e11;
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.testimonial-header .testimonial-info {
    margin-left: 1rem;
}

.testimonial-content {
    position: relative;
    padding: 0;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.testimonial-content .fa-quote-left {
    font-size: 24px;
    color:#f76e11;
    opacity: 0.3;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.testimonial-content p {
    margin: 0;
    line-height: 1.6;
}

/* Slick specific styles */
.slick-track {
    display: flex !important;
    padding-bottom: 20px;
}

.slick-slide {
    height: inherit;
    display: flex !important;
    margin-bottom: 40px;
}

.slick-slide > div {
    display: flex;
    flex: 1;
    width: 100%;
}

/* Slick Carousel Customization */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-dots {
    bottom: -40px;
    position: absolute;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    line-height: 1;
    z-index: 1;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.slick-dots li button:before {
    font-size: 12px;
    color: #f76e11;
    opacity: 0.25;
}

.slick-dots li.slick-active button:before {
    color: #f76e11;
    opacity: 1;
}

.slick-prev, 
.slick-next {
    width: 40px;
    height: 40px;
    background:#f76e11;
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    border: none;
}

.slick-prev {
    left: -50px;
}

.slick-next {
    right: -50px;
}

.slick-prev:before, 
.slick-next:before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 20px;
    opacity: 1;
    color: #fff;
}

.slick-prev:before {
    content: '\f104';
}

.slick-next:before {
    content: '\f105';
}

.slick-prev:hover, 
.slick-next:hover,
.slick-prev:focus,
.slick-next:focus {
    background: #c82333;
    outline: none;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .testimonials-section {
        padding: 40px 0 100px;
    }
    
    .testimonial-item {
        padding: 0 10px;
        width: 50%;
    }

    .slick-prev {
        left: -20px;
    }

    .slick-next {
        right: -20px;
    }
}

@media (max-width: 576px) {
    .testimonial-carousel {
        margin: 0;
    }
    
    .testimonial-item {
        padding: 0 5px;
        width: 100%;
    }
    
    .slick-dots {
        bottom: -30px;
    }

    .slick-prev, 
    .slick-next {
        display: none !important;
    }
} 