.azar-who-we-are {
  background: linear-gradient(to bottom, #f6f9ff, #ffffff);
  padding: 80px 30px;
  position: relative;
  font-family: 'Poppins', sans-serif;
  color: #102240;
  overflow: hidden;
}

.azar-who-we-are::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,230,0,0.2), transparent 60%);
  z-index: 0;
}

.who-container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.azar-who-we-are h2 {
  font-size: 32px;
  color: #0d47a1;
  margin-bottom: 20px;
}

.who-intro {
  font-size: 16px;
  color: #444;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

.brands-showcase {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.brand-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  max-width: 400px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: 0.3s ease;
  border: 1px solid #eef2f5;
}

.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.brand-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background: #f0f4ff;
  padding: 8px;
  border-radius: 8px;
}

.brand-info h3 {
  font-size: 18px;
  color: #0d47a1;
  margin-bottom: 6px;
}

.brand-info p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
  .azar-who-we-are {
    padding: 60px 20px;
  }

  .azar-who-we-are h2 {
    font-size: 26px;
  }

  .brand-card {
    flex-direction: column;
    text-align: center;
  }

  .brand-card img {
    margin-bottom: 10px;
  }
}
