@import url('style.css');
@import url('utilities.css');
/* Testimonials Page Styles */
.testimonials-header {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/sahara-college-main.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}


.testimonial-card {
    background-color: var(--primary-white);
    padding: 30px;
    border-radius: 10px;
    height: 100%;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--accent-color);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    display: block;
    border: 3px solid var(--secondary-orange);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.testimonial-author {
    font-weight: 600;
    text-align: center;
    margin-bottom: 5px;
}

.testimonial-meta {
    font-size: 0.9rem;
    color: var(--accent-color);
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .testimonial-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .testimonials-header {
        padding: 60px 0;
    }
    
    .testimonial-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .testimonials-header {
        padding: 40px 0;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
}