body {
  margin: 0;
  padding: 0;
  background-image: url("Assets/BG/Cubitrek UI Background Design-02 1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  font-family: Helvetica, sans-serif;
}

.SMM-PORTFOLIO {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  box-sizing: border-box;
}

/* Heading */
.SMM-PORTFOLIO .clients-who-trust-us {
  font-weight: 500;
  font-size: 50px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,1) 43%,
    rgba(153,153,202,0.79) 81%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-bottom: 20px;
  z-index: 1;
}

/* Gradient line under heading */
.SMM-PORTFOLIO .div-user-select-none {
  width: 500px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0) 0%,
    rgba(52,255,157,1) 50%,
    rgba(0,0,0,0) 100%
  );
  margin-bottom: 40px;
}

/* Grid container: 5 columns × 4 rows */
.SMM-PORTFOLIO .frame {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(4, auto);
  gap: 30px 20px;
  width: 100%;
  max-width: 1200px;
  z-index: 1;
}

/* Grid items */
.SMM-PORTFOLIO .frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.SMM-PORTFOLIO .frame img:hover {
  transform: scale(1.1);
}

/* Icon positions */
.SMM-PORTFOLIO .icon {
  position: absolute;
  width: 50px;
  height: 50px;
}

.SMM-PORTFOLIO .top-left {
  top: 20px;
  left: 20px;
}

.SMM-PORTFOLIO .top-right {
  top: 20px;
  right: 20px;
}

.SMM-PORTFOLIO .bottom-right {
  bottom: 20px;
  right: 20px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .SMM-PORTFOLIO .frame {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }
}

@media (max-width: 600px) {
  .SMM-PORTFOLIO .frame {
    grid-template-columns: repeat(2, 1fr);
  }

  .SMM-PORTFOLIO .icon {
    width: 40px;
    height: 40px;
  }
}
