/* Testimonials Page Styles */

/* Banner Section */
.banner-section {
    position: relative;
    background: linear-gradient(135deg, #0a2463 0%, #3e92cc 100%);
    padding: 160px 0 100px;
    color: #fff;
    overflow: hidden;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-section .container {
    position: relative;
    z-index: 2;
}

.banner-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.banner-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Testimonial Cards */
.testimonial-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-card.featured {
    border-top: 4px solid #0a2463;
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial-content {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
    min-height: 120px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 2px solid #f0f0f0;
}

.testimonial-info h5 {
    margin-bottom: 0.25rem;
    font-weight: 600;
    color: #333;
}

.testimonial-info p {
    margin-bottom: 0;
    font-size: 0.875rem;
    color: #777;
}

/* Video Testimonials */
.video-testimonial {
    margin-bottom: 2rem;
}

.video-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.video-container img {
    width: 100%;
    transition: transform 0.3s ease;
}

.video-container:hover img {
    transform: scale(1.03);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(10, 36, 99, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.play-button:hover {
    background-color: rgba(10, 36, 99, 1);
}

.video-info h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.video-info p {
    color: #666;
    margin-bottom: 0;
}

/* Testimonial Grid */
.testimonial-grid {
    margin-bottom: 2rem;
}

/* Testimonial Submission Form */
.rating-select {
    display: flex;
    gap: 0.5rem;
    font-size: 1.5rem;
    color: #ccc;
    margin-bottom: 1rem;
}

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

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

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

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .banner-title {
        font-size: 2.5rem;
    }
    
    .testimonial-content {
        min-height: auto;
    }
}

@media (max-width: 767.98px) {
    .banner-section {
        padding: 140px 0 80px;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 575.98px) {
    .banner-section {
        padding: 120px 0 60px;
    }
    
    .banner-title {
        font-size: 1.75rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}
