.tech-maxx-partners-section {
  font-family: "Poppins", sans-serif;
  background-color: #fff;
  text-align: center;
  padding: 0;
  margin-top: 60px;
}

.tech-maxx-header {
  background-color: #e0e0e0;
  padding: 30px 20px;
}

.tech-maxx-logo {
  width: 150px;
  height: auto;
  display: block;
  margin: 0 auto 15px;
}

.tech-maxx-description {
  color: #333;
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

.tech-maxx-product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  padding: 40px 50px;
  justify-items: center;
}

.tech-maxx-card {
  border: 1px solid #ddd;
  padding: 20px;
  text-align: center;
  background-color: #fff;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 220px;
}

.tech-maxx-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
}

.tech-maxx-card h3 {
  font-size: 14px;
  margin: 15px 0;
  color: #111;
}

.tech-maxx-card button {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 10px 0;
  width: 100%;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}

.tech-maxx-card button:hover {
  background-color: #333;
}

.tech-maxx-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .tech-maxx-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .tech-maxx-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .tech-maxx-product-grid {
    grid-template-columns: 1fr;
  }
}
