/* Custom Styles */

body {
    /* background-color: #f8f9fa; */
    font-family: 'Poppins', sans-serif;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.avatar-container {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #3498db;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content p {
    color: #666;
    line-height: 1.6;
    margin: 1rem 0;
    font-style: italic;
}

.author-name {
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.author-role {
    color: #3498db;
    font-size: 0.9rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #3498db;
    border-radius: 50%;
    padding: 10px;
}

.carousel-indicators [data-bs-target] {
    background-color: #3498db;
}

.main-text {
    height: 100vh;
    color: #2575fc;
}

.main-comment {
    width: 100%;
    /* height: 80vh; */
    background-color: #f4f4f9;
    display: flex;
    padding-bottom: 50px;
}

.comments {
    background-color: #f4f4f9;
}

.comments h2 {
    text-align: center;
    font-size: 40px;
    color: #2575fc;
    font-weight: 600;
    padding-top: 50px;
}