.trust-badges {
  padding: 60px 20px;
  background: #dfdfdf;
  /* background: linear-gradient(135deg, #fff8f5, #fef6ec); */
  display: flex;
  justify-content: center;
}

.badge-row {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  width: 100%;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  max-width: 200px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.badge .icon{
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: rgb(0 0 0);
    color: var(--primary);
    font-size: 1.6rem;
    transition: .4s;
}
.badge .icon svg {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.badge:hover .icon svg {
  transform: scale(1.2);
  filter: drop-shadow(0 0 12px rgba(191, 164, 111, 0.7));
}

.badge h4 {
  font-size: 1.1rem;
  /* color: #5c4033; */
  color:#101010;
  margin: 0;
}

.badge p {
  font-size: 0.9rem;
  color:#101010;
  /* color: #5c4033; */
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .badge-row {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .badge-row {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
}
