        
        .modal-body strong {
            color: #8C5B3F;
        }

/* Testimonials Section */
#testimonials {
    background-color: #F8F0E9; /* Same as About Us section for consistency, or choose another */
}

.testimonial-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.07);
    padding: 2rem;
    text-align: center;
    height: 100%; /* Ensures cards in a row have the same height */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes author/source to bottom if text is short */
}

.testimonial-stars {
    color: #FFC107; /* Gold color for stars */
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #5a4a40;
    font-style: italic;
    margin-bottom: 1.5rem;
    flex-grow: 1; /* Allows text to take available space */
}

.testimonial-author {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: #8C5B3F;
    margin-bottom: 0.25rem;
}

.testimonial-source {
    font-size: 0.8rem;
    color: #7A5540;
    margin-bottom: 0;
}

.btn-outline-custom-reviews {
    border-color: #D4A373;
    color: #D4A373;
    font-weight: 500;
    border-radius: 50px;
    padding: 10px 25px;
    transition: all 0.3s ease;
}

.btn-outline-custom-reviews:hover {
    background-color: #D4A373;
    color: #FDF7F2; /* Light color for contrast */
    border-color: #D4A373;
}   

/* Faculty Section */
#faculty {
    /* background-color: #F8F0E9; */ /* Example background, same as About Us */
    /* Or keep it bg-light as set in HTML, or remove for default page bg */
}

.faculty-card {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 2rem;
    overflow: hidden; /* Ensures smooth corners if image touches edge */
}

.faculty-img {
    width: 180px; /* Adjust size as needed */
    height: 180px; /* Adjust size as needed */
    object-fit: cover;
    border: 5px solid #D4A373; /* Accent color border */
    margin-bottom: 1rem; /* Space below image on mobile */
}

.faculty-card-body {
    padding-left: 1.5rem; /* Space between image and text on larger screens */
}

.faculty-name {
    font-family: 'Playfair Display', serif;
    color: #8C5B3F;
    font-size: 2rem; /* Adjust as needed */
    margin-bottom: 0.5rem;
}
.faculty-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #7A5540;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.faculty-bio {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #5a4a40;
}

@media (max-width: 767.98px) {
    .faculty-card-body {
        padding-left: 0;
        text-align: center; /* Center text below image on mobile */
    }
    .faculty-img {
        margin-bottom: 1.5rem;
    }
}