    .customer-gallery{
  background:#f7f2ed;
  padding:100px 20px;
  text-align:center;
}

.customer-gallery .container{
  max-width:1200px;
  margin:auto;
}

.customer-gallery .badge{
  display:inline-block;
  background:#fff;
  padding:8px 16px;
  border-radius:30px;
  font-size:14px;
  margin-bottom:20px;
}

.customer-gallery h2{
  font-size:48px;
  margin-bottom:15px;
  color:#222;
}

.section-description{
  max-width:700px;
  margin:0 auto 40px;
  color:#666;
}

.trust-bar{
  display:flex;
  justify-content:center;
  gap:30px;
  flex-wrap:wrap;
  margin-bottom:50px;
  font-weight:600;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.gallery-item{
  overflow:hidden;
  border-radius:20px;
  background:#fff;
  box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.gallery-item img{
  width:100%;
  display:block;
  transition:.4s;
}

.gallery-item:hover img{
  transform:scale(1.05);
}

.gallery-footer{
  margin-top:50px;
}

.gallery-footer p{
  max-width:700px;
  margin:auto;
  color:#666;
}

.gallery-btn{
  display:inline-block;
  margin-top:25px;
  background:#e67e22;
  color:white;
  padding:16px 40px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
}

.gallery-btn:hover{
  opacity:.9;
}

@media(max-width:768px){

.gallery-grid{
  grid-template-columns:1fr 1fr;
}

.customer-gallery h2{
  font-size:34px;
}

}

@media(max-width:520px){

.gallery-grid{
  grid-template-columns:1fr;
}

}