* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.testimonial-body {
    font-family: 'Geologica' ;   
    align-items: center;
  
}

.slider-container-testimonial {
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    position: relative;
    padding: 4px;  /* Add padding to contain the shadow */
}

.slider-testimonial {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.slide-testimonial {
    flex: 0 0 100%;
    padding: 0 15px;
    margin-bottom: 4px; /* Add margin to contain the shadow */
}

.testimonial-card-testimonial {
    background: white;
    border-radius: 24px;
    padding: 20px 25px;
    border: 1px solid black;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 4px 4px 0 rgba(236, 96, 160, 1);
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}

.stars-testimonial {
    color: rgb(239,96,160);
    font-size: 20px;
    margin-bottom: 10px;
}

h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Geologica';
    font-weight:700;
}

.testimonial-text-testimonial {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 15px;
    flex-grow: 1;
    font-family: 'Geologica'
}

.author-info-testimonial {
    margin-top: auto;
}

.author-testimonial {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
    font-family: 'Geologica';
    font-weight: 700;
}

.location-testimonial {
    color: #666;
    font-family: 'Geologica';
}

.dots-testimonial {
    display: flex;
    justify-content: center;
    margin-top: 16px;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.dot-testimonial {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(239,96,160, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot-testimonial.active-testimonial {
    background-color: rgb(239,96,160);
}

@media (min-width: 768px) {
    .slide-testimonial {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
    
    .slider-testimonial {
        transform: translateX(0) !important;
    }

    .testimonial-card-testimonial {
        max-width: none;
    }
}

@media (min-width: 767px) {
    .dots-testimonial {
        display: none !important;
    }

    .testimonial-card-testimonial {
        padding: 15px 20px;
    }

    h2 {
        font-size: 18px;
    }

    .testimonial-text-testimonial {
        font-size: 13px;
    }

    .stars-testimonial {
        font-size: 18px;
    }
    @media (min-width: 767px){
    .dots-testimonial {
        display: none !important;
    }}
}

