/* testimonials.css */
.testimonials-section {
    background-color: #f5f5f5;
    padding: 50px 20px;
    text-align: center;
}

.testimonials-section h2 {
    color: #003366;
    font-size: 28px;
    margin-bottom: 20px;
}
.logo-section, .logo-title {
    text-decoration: none;  /* Remove underline */
    color: inherit;  /* Keep original text color */
    display: inline-block;
}


.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.testimonial-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.testimonial-text {
    color: #444;
    font-size: 16px;
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial-author {
    color: #003366;
    font-weight: bold;
    font-size: 14px;
}

footer {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

footer p {
    margin: 5px 0;
}
header nav ul li a.active {
    color: #f39c12;
}

.main-content {
    flex: 1; /* Pushes footer to the bottom */
}

footer {
    background-color: #002f6c; /* Your footer color */
    color: white;
    text-align: center;
    padding: 15px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}