.testimonials {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    margin-top: 100px;
}

.testimonial {
    background: #f9f9f9;
    padding: 15px;
    margin-bottom: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover Animation for Card */
.testimonial:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

/* Profile Photo (No Hover Effect) */
.profile-photo {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 10px 10px 5px lightblue;
}

.testimonial-content {
    flex: 1;
    font-size: 16px;
    line-height: 1.6;
}

.leader-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.leader-position {
    font-size: 18px;
    color: #555; 
    margin-bottom: 15px;
}

.testimonial p {
    margin-bottom: 12px;
    text-align: justify;
}

.more-text {
    display: none;
}

.toggle-btn {
    margin-top: 10px;
    padding: 8px 15px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.toggle-btn:hover {
    background: #0056b3;
}

.btn-custom {
    margin-top: 15px;
    display: inline-block;
    padding: 8px 15px;
    background: #007bff;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.3s ease;
}

.btn-custom:hover {
    background: #0056b3;
}

.btn-custom .number {
    font-weight: bold;
    color: #fff;
}

.btn-custom span:last-child {
    margin-left: 5px;
}
