/* Trusted by (Images in one row) */
.trusted-section{
    padding:55px 60px;
    background:#ffffff;
}

.trusted-inner{
    max-width:1100px;
    margin:0 auto;
}

.trusted-header h2{
    font-size:26px;
    text-align:center;
    color:#222;
    margin-bottom:18px;
}

.trusted-row{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:18px;
    padding-bottom:10px;
}


.trusted-row::-webkit-scrollbar{ height:8px; }
.trusted-row::-webkit-scrollbar-thumb{ background:rgba(0,0,0,.15); border-radius:999px; }

.trusted-logo{
    flex:0 0 auto;
}

.trusted-logo img{
    width:100%;
    height:120px;
    object-fit:cover; /* fill the card nicely */
    object-position:center;
    border-radius:10px;
    background:#f3f4f6;
}




@media(max-width:576px){
    .trusted-section{ padding:55px 60px; }
    .trusted-logo img{ width:110px; height:55px; }
}

