/* Manufacturers Section */
.manufacturers-logos-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Bigger cards */
  gap: 40px; /* More spacing between cards */
  justify-items: center;
  align-items: center;
  margin-top: 40px;
}

.manufacturer-logo {
  background: #fff;
  padding: 30px; /* Increased padding */
  border-radius: 16px; /* Bigger rounded corners */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  width: 100%;
  height: 160px; /* Taller cards */
  display: flex;
  justify-content: center;
  align-items: center;
}

.manufacturer-logo img {
  max-width: 160px; /* Larger logos */
  max-height: 100px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.manufacturer-logo:hover {
  transform: translateY(-10px) scale(1.02); /* Lift + slight scale */
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.manufacturer-logo:hover img {
  transform: scale(1.1);
}
.page-hero {
  background: linear-gradient(
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)
    ),
    url('https://images.unsplash.com/photo-1581092921461-eab62e97a780?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center;
  background-size: cover;
  color: white;
  text-align: center;
  margin-top: 70px;
  height: calc(100vh - 70px);

  display: flex;                
  justify-content: center;
  align-items: center;
  position: relative;
}

.page-hero .page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.page-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: white;
  z-index: 100;
 
}

.page-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}