/* ✅ استايل بلوكات الشركات */
.companies-grid {
  text-align: center;
  margin: 60px 0;
}

.companies-grid h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #222;
}

.companies-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 25px;
  justify-items: center;
}

.company-box {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.company-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.company-box img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.company-box:hover img {
  transform: scale(1.1);
}

.company-box h3 {
  font-size: 16px;
  margin: 0;
}

.company-box h3 a {
  color: #333;
  text-decoration: none;
}

.company-box h3 a:hover {
  color: #0073aa; /* أزرق زي وردبريس */
}
