/* About & Reviews Section */
.about-reviews-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-content {
    padding-right: 30px;
}

.about-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.about-subheading {
    font-size: 1.1rem;
    color: #4a90e2;
    font-weight: 600;
    margin-bottom: 25px;
}

.about-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.about-features {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.about-features li {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.about-features li i {
    color: #4a90e2;
    margin-right: 12px;
    font-size: 1.2rem;
}

.about-features strong {
    color: #2c3e50;
}

/* Reviews Slider */
.reviews-slider-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.reviews-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.reviews-slider {
    position: relative;
    min-height: 320px;
}

.review-slide {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.review-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-card {
    padding: 20px;
}

.review-stars {
    margin-bottom: 20px;
}

.review-stars i {
    color: #ffc107;
    font-size: 1.2rem;
    margin-right: 3px;
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #4a90e2;
}

.reviewer-details {
    flex: 1;
}

.reviewer-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 3px;
}

.reviewer-location {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
}

/* Slider Navigation */
.slider-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-btn {
    background: #4a90e2;
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.slider-btn:hover {
    background: #357abd;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #4a90e2;
    width: 30px;
    border-radius: 6px;
}

.dot:hover {
    background: #357abd;
}

/* Responsive Design */
@media (max-width: 991px) {
    .about-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .about-heading {
        font-size: 2rem;
    }

    .reviews-slider-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .about-heading {
        font-size: 1.8rem;
    }

    .reviews-heading {
        font-size: 1.5rem;
    }

    .review-text {
        font-size: 0.95rem;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}