/* Google Reviews Styles */
#google-reviews-section {
    font-family: 'Outfit', sans-serif;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.review-card {
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: #ffc107 !important;
}

.rating-star {
    cursor: pointer;
    transition: transform 0.2s;
}

.rating-star:hover {
    transform: scale(1.2);
}

.rating-star.fas {
    color: #ffc107;
}

.carousel-nav-btn {
    opacity: 0.7;
    transition: opacity 0.3s, transform 0.2s;
}

.carousel-nav-btn:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.progress {
    border-radius: 10px;
}

.progress-bar {
    border-radius: 10px;
}

.review-text {
    line-height: 1.6;
}

/* Modal adjustments */
#submitReviewModal .modal-content {
    border-radius: 20px;
}