﻿.trust-sec{
  max-width:1200px;
  margin:-50px auto 0;   /* 🔥 pull under projects */
  padding:20px 25px;

  background:#fff;
  border-radius:12px;

  box-shadow:0 10px 30px rgba(0,0,0,0.06);
  position:relative;
  z-index:3;
}

.trust-row{
  display:flex;
  align-items:center;
  justify-content:space-between;

  background:#f5f3ef;
  border-radius:12px;
  padding:20px 25px;
}

/* BOX */
.trust-box{
  display:flex;
  align-items:flex-start;
  gap:12px;
  flex:1;
}

/* ICON */
.trust-box img{
  width:28px;
  height:28px;
  object-fit:contain;
  opacity:0.85;
}

/* TEXT */
.trust-box h4{
  font-size:13px;
  font-weight:600;
  color:#1c1c1c;
  margin-bottom:3px;
}

.trust-box p{
  font-size:12px;
  color:#6b6b6b;
  line-height:1.4;
}

/* DIVIDER */
.divider{
  width:1px;
  height:40px;
  background:rgba(0,0,0,0.08);
  margin:0 15px;
}

@media(max-width:768px){

  .trust-row{
    flex-wrap:wrap;
    gap:15px;
    padding:15px;
  }

  .trust-box{
    width:48%;   /* ✅ 2 column */
  }

  .divider{
    display:none; /* remove vertical lines */
  }

}