.testimonial-section {
    background-color: white;
}

.client-testimonies-section {
  display: grid;
 grid-template-columns: 1fr;
 place-items: center;
 padding: 2rem;
 gap: 2rem;
}


.client-section-card {
    width: 98%;
    border: 1px solid rgb(219, 211, 211);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);   
    padding-bottom: 2rem;
    transition: transform 0.6s ease-in-out;
}

.client-section-card:hover {
  transform: scale(1.1, 1.1);
}

.testimonie-title {
 font-size: 1.3rem;
 text-align: center;
 margin-bottom: 0;
}

.testimonie-description {
    font-size: 0.937rem;
    text-align: center;
    width: 95%;
    margin-top: 1rem;
    color: rgb(139, 127, 127);
}

.client-emoji {
    font-size: 1.5rem;
    margin-left: 0.5rem;
    margin-bottom: 0;
}

.client-rating {
    font-size: 1rem;
    margin-top: 1rem;
    margin-left: 0.5rem;
    
}

.client-Testimonial {
    font-size: 0.837rem;
    margin-left: 0.4rem;
    color: rgb(139, 127, 127);
}

.client-name {
    font-size: 0.937rem;
    margin-left: 1rem;
    font-weight: 700;
    color: balck;
    margin-bottom: 0;
}

.client-location {
    margin-top: 0.8rem;
    margin-left: 1rem;
    color: hsl(23.95deg 95% 52.94%);
    font-weight: 700;
}


/*Responsive Design*/
@media (min-width: 480px) {
    .testimonie-title {
        font-size: 1.8rem;
    } 

    .testimonie-description {
        font-size: 0.937rem;
        width: 93%;
    }
}

/* Large phones and small tablets */
@media (min-width: 600px) { 
    .client-testimonies-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
  
}

/* Tablets portrait */
@media (min-width: 768px) {
     .testimonie-title {
        font-size: 2rem;
    } 

    .testimonie-description {
        font-size: 1rem;
        width: 93%;
    }
  
}

/* Tablets landscape and small laptops */
@media (min-width: 992px) {
    .client-testimonies-section {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }
 
}

/* Desktops */
@media (min-width: 1200px) {
  
}

/* Large desktops */
@media (min-width: 1440px) {
  
}

/* Extra large screens */
@media (min-width: 1920px) {
  
}

