/* Testimonials Section Styles */
#testimonials {
    background-color: deepskyblue; /* Light background */
    padding: 60px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333; /* Dark text for the section title */
}

.section-title p {
    font-size: 1.1rem;
    color: #777; /* Light gray text for the subtitle */
}
/* Footer Section Styles */
#footer {
    background-color: #f9f9f9; /* Light background color */
    padding: 40px 0;
    color: #333; /* Dark text color */
    text-align: center;
    border-top: 1px solid #ddd; /* Light border to separate from content */
}

.container4 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-logo {
    flex: 1;
    max-width: 250px;
}

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: deepskyblue; /* Orange color for the logo */
}

.footer-logo p {
    font-size: 1rem;
    color: #555;
}

.footer-links {
    flex: 1;
    max-width: 300px;
}

.footer-links ul {
    list-style-type: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: deepskyblue; /* Orange color on hover */
}

.footer-social {
    flex: 1;
    max-width: 300px;
}

.footer-social a {
    display: inline-block;
    margin: 5px 10px;
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: deepskyblue; /* Orange color on hover */
}

.footer-bottom {
    margin-top: 20px;
    font-size: 1rem;
    color: #777; /* Light gray text for footer bottom */
}

.footer-bottom p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 20px;
    }

    .footer-links,
    .footer-social {
        margin-bottom: 20px;
    }

    .footer-social a {
        font-size: 1rem;
    }
}


/* Testimonial Grid */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* Responsive grid */
    gap: 30px;
}

.testimonial {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-avatar {
    margin-bottom: 20px;
}

.testimonial-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%; /* Circular avatar */
    border: 2px solid deepskyblue; /* Orange border around avatar */
}

.testimonial-text {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 20px;
    font-style: italic; /* Italicized quote text */
}

.testimonial-name {
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.testimonial-role {
    font-size: 1rem;
    color: #777; /* Lighter text for the role */
}

.testimonial:hover {
    transform: translateY(-5px); /* Slight lift effect on hover */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); /* Stronger shadow on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }

    .section-title p {
        font-size: 1rem;
    }
}
