
/* Hero Section */
.hero-text {
  padding: 3rem 2rem;
  line-height: 1.6;
  max-width: 600px;
}
.hero-text h1 {
  font-size: 2rem;
  font-weight: 600;
}
.hero-text p {
  font-size: 1rem;
  color: #444;
}

/* Product Cards */
.product-card {
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.product-card:hover {
  transform: translateY(-5px);
}
.product-card img {
  border-radius: 8px 8px 0 0;
  height: 180px;
  object-fit: cover;
}

/* Section Titles */
.section-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
  border-left: 4px solid #ff6f00;
  padding-left: 0.5rem;
}

/* Solutions Icons */
.solution-icon {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.solution-icon:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(255,111,0,0.2);
}

/* Client Logos */
.clients-logos img {
  max-height: 40px;
  object-fit: contain;
  margin: 0 1rem;
  filter: grayscale(100%);
  transition: filter 0.3s;
}
.clients-logos img:hover {
  filter: grayscale(0%);
}

/* Footer Enhancements */
footer {
  background-color: #f8f8f8;
  padding: 2rem 1rem;
  font-size: 0.875rem;
}
footer h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}
footer ul li {
  margin-bottom: 0.5rem;
}
footer .column {
  padding: 1rem;
}

/* Section Spacing */
section {
  padding: 3rem 1rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero-text, .hero-img {
    text-align: center;
    margin: 1rem auto;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  footer .column {
    width: 100%;
    margin-bottom: 2rem;
  }
}
