#fw-section-custom-html-b758459d-4445-4bc5-9393-3ca194bc5b91 {

/* الكونتينر العام */
.logo-wave-gallery {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 40px 20px;
  background: linear-gradient(to bottom right, #ffffff, #f8f8f8);
  border-radius: 40px;
  box-shadow: 0px 5px 25px rgba(255, 0, 0, 0.25);
  transition: box-shadow 0.4s ease;
  max-width: 950px;
  margin: auto;
}

/* Hover على الخلفية */
.logo-wave-gallery:hover {
  box-shadow: 0px 10px 40px rgba(255, 0, 0, 0.55);
}

/* كل بلوك (صورة + اسم) */
.logo-box {
  text-align: center;
  text-decoration: none;
  color: #222;
  font-size: 16px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

/* Hover على البلوك كله */
.logo-box:hover {
  transform: scale(1.15);
  color: #ff0000;
  text-shadow: 0px 0px 8px rgba(255,0,0,0.6);
}

/* اللوجو */
.logo-box img {
  width: 150px;
  height: auto;
  object-fit: contain;
  background: #ffffff;
  border-radius: 15px;
  padding: 12px;
  box-shadow: 0px 3px 10px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease;
}

/* Hover على اللوجو ضمن البلوك */
.logo-box:hover img {
  box-shadow: 0px 6px 25px rgba(255,0,0,0.5);
}

}