/* تنسيقات قسم الشهادات */
.testimonials-section {
    padding: 60px 0;
}

/* تغيير لون الخلفية */
.bg-light {
    background-color: rgb(253, 253, 253) !important;
}

.testimonials-section .section-title {
    font-size: 38px !important;
    text-align: right;
    color: #00923F !important;
    font-weight: bold;
    position: relative;
}

.testimonials-section .section-description {
    color: #6c757d;
    margin-bottom: 40px;
}

.testimonials-section .card {
    transition: all 0.3s ease;
    margin-bottom: 30px;
    border: none;
    overflow: hidden;
    border-radius: 10px;
}

.testimonials-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.testimonials-section .card-body {
    background-color: #EAF7F0;
    padding: 25px;
}

.testimonials-section .card-text {
    position: relative;
    padding-right: 25px;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

.testimonials-section .card-text::before {
    content: '"';
    font-size: 60px;
    color: rgba(40, 167, 69, 0.2);
    position: absolute;
    top: -15px;
    right: -10px;
    font-family: serif;
}

.testimonials-section h6 {
    color: #333;
    font-weight: 600;
}

.testimonials-section small {
    color: #28a745;
}

.testimonials-section .rounded-circle {
    object-fit: cover;
    border: 2px solid rgba(40, 167, 69, 0.2);
}

/* تنسيقات صاحب الرأي */
.testimonials-section .testimonial-author {
    display: flex;
    align-items: center;
}

.testimonials-section .author-info {
    margin-right: 15px;
    text-align: right;
}

/* تنسيقات سلايدر الشهادات */
.testimonials-slider {
    position: relative;
    padding-bottom: 60px;
    overflow: hidden;
}

.testimonials-slider .swiper-slide {
    height: auto;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.testimonials-slider .swiper-slide-next + .swiper-slide + .swiper-slide {
    opacity: 0.3;
}

.testimonials-slider .swiper-pagination {
    bottom: 0;
}

.testimonials-slider .swiper-pagination-bullet {
    background: #28a745;
    opacity: 0.5;
}

.testimonials-slider .swiper-pagination-bullet-active {
    opacity: 1;
}

.testimonials-slider .swiper-button-next,
.testimonials-slider .swiper-button-prev {
    display: none !important;
}

@media (max-width: 767px) {
    .testimonials-section .card {
        margin-bottom: 20px;
    }
    
    .testimonials-section .rounded-circle {
        width: 40px;
        height: 40px;
    }
    
    .testimonials-section .card-text {
        font-size: 14px;
    }
} 