body {
    background: #f4f7fa;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}
.testimonial-container {
    max-width: 1100px;
    margin: 50px auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 32px;
}
.testimonial-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(44,62,80,.13);
    padding: 32px 20px 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s;
}
.testimonial-card:hover {
    box-shadow: 0 12px 36px rgba(44,62,80,0.20);
    transform: translateY(-3px) scale(1.01);
}
.testimonial-img {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 18px;
    background: #d3e0ef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #7d8fa7;
    font-weight: 700;
    letter-spacing: 1px;
    border: 2px solid #e3e7eb;
}
.testimonial-name {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 7px;
    text-align: center;
}
.testimonial-role {
    font-size: 1rem;
    color: #486084;
    font-weight: 500;
    height: 35px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-box {
    border-radius: 12px;
    padding: 0px 14px;
    font-size: 1rem;
    color: #234;
    min-height: 80px; 
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;  
}

.testimonial-box p {
    margin-top: 0px;
    margin-bottom:0px;
}

.company {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
}

.company .logo {
    width: 38px;
    height: 38px;
    object-fit: contain;
    border-radius: 8px;
}

.company .logo-amazon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
    transform: translateX(7px) translateY(-7px);
}

#Front-logo {
    display: flex;
    justify-content: center; 
    align-items: center;   
    gap: 12px; 
}

#Front-logo h2{
    color: black;
}
