/* Reviews Page Specific Styles */

/* Review Hero Section */
.review-hero-section {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 60px;
}

.review-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/aboutus.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.review-hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.review-hero-section .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

/* Breadcrumb */
.review-hero-section .custom-breadcrumb {
    background: transparent;
    padding: 0;
    margin-top: 10px;
}

.review-hero-section .custom-breadcrumb .breadcrumb-item a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.review-hero-section .custom-breadcrumb .breadcrumb-item a:hover {
    color: #ffc107;
}

.review-hero-section .custom-breadcrumb .breadcrumb-item.active {
    color: #ffc107;
    font-weight: 600;
}

.review-hero-section .custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #ffffff;
    padding: 0 8px;
    font-size: 1rem;
}

/* Reviews List Section */
.reviews-list {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    min-height: 60vh;
}

/* Elfsight Widget Styling */
.elfsight-app-f6172a7f-eed1-4b48-80d9-d938e07a7ba3 {
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .review-hero-section {
        height: 50vh;
        margin-top: 60px;
    }

    .review-hero-section .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .reviews-list {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    .review-hero-section {
        height: 40vh;
    }
    
    .review-hero-section .hero-content h1 {
        font-size: 2rem;
    }
}
/* Reviews Section Styling */
.reviews-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

/* Elfsight Widget Container */
.elfsight-app-f6172a7f-eed1-4b48-80d9-d938e07a7ba3 {
    min-height: 400px;
    width: 100%;
}

/* Loading Spinner */
.spinner-border.text-warning {
    width: 3rem;
    height: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .reviews-section {
        padding: 2rem 0;
    }
    
    .elfsight-app-f6172a7f-eed1-4b48-80d9-d938e07a7ba3 {
        min-height: 300px;
    }
}