.testimonialSection {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    }
    .testimonialTitle {
    text-align: center;
    font-size: 32px;
    color: #444;
    margin-bottom: 40px;
    }
    .testimonialSlider {
    position: relative;
    overflow: hidden;
    }
    .testimonialSlide {
    text-align: center;
    padding: 20px;
    display: none;
    height:300px;
    }
    .testimonialSlide.active {
    display: block;
    animation: fadeIn 0.8s ease;
    }
    @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
    }
    .testimonialImage {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    }
    .testimonialImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    }
    .quote {
    font-size: 24px;
    color: #777;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    }
    .testimonialText {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    max-width: 80%;
    margin: 0 auto 20px;
    position: relative;
    padding-top: 20px;
    }
    .testimonialAuthor {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
    }
    .testimonialMeta {
    color: #777;
    font-size: 14px;
    }
    .slider-nav {
    text-align: center;
    margin-top: 30px;
    }
    .slider-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #ddd;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    }
    .slider-dot.active {
    background: #777;
    }
    @media (max-width: 768px) {
        .testimonialSlide {
            height: 700px;
        }
    }