.icon {
 width: 50px;
 height: 50px;
    background-image: url('../../../uploads/2023/10/Group-1000003483.svg'); 
    background-size: cover; 
    position: absolute;
    top: 0;
    right:0;
   margin: 10px;

}

.custom-container .title {
    color: #64C9CB;
    font-family: "Solomon Sans Bold";
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    margin: 10px;

}


.custom-container .description {
    color: #595959;
    font-family: "Solomon Sans Book";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    margin: 10px;

}


.custom-container .view-more {
    color: #727272 !important;
    font-family: "Solomon Sans Bold";
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left:10px;

    text-decoration-line: underline;
}


.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; 
}


@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr; 
        grid-template-rows: 1fr; 
       
    }
}

.testimonial-card {
    border: 1px solid #ffffff; 
    text-align: left; 
    
 
    background: #FFF;
    box-shadow: 0px 3px 14px 0px rgba(104, 104, 104, 0.25);
    border-radius: 117px 9px 0px 0px; 
    
   
}

.slider-controls {
    display: flex;
    justify-content: flex-end; 
    align-items: center; 
    margin-top: 10px; 
  
}

.prev {
    cursor: pointer;
    padding: 10px 16px;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: auto;
    margin:4px;
    z-index: 1;
    background: #64C9CB;

        content:url('../../../uploads/2023/10/Vector-4.svg');
    
}
.next {
    cursor: pointer;
    padding: 10px 16px;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: auto;
    margin:4px;
    z-index: 1;
    background: #64C9CB;
    content:url('../../../uploads/2023/10/Vector-5.svg');
        
}


.profile-image {
    height: 200px;
    position: relative;
    background: rgb(255, 255, 255); 
    background-size: cover; 
    border-radius: 117px 9px 0px 0px;
    background-repeat: no-repeat; 
    overflow: hidden; 
}


.popup {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    background-color: white;
    border: 1px solid #ccc;
    padding: 10px;
    z-index: 1;
}


.popup.show {
    display: block; 
}