/* ======= Product Section Styling ======= */
.product-main-section {
  padding: 60px 20px;
  background: linear-gradient(to right, #f4f9ff, #e3f2fd); /* Aesthetic gradient background */
  text-align: center;
  padding-top: 120px; /* Push content down from nav */
}

/* Gradient Title */
.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.gradient-text {
  background: linear-gradient(to right, #014f86, #00b4d8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Product Grid Layout */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 per row on large screens */
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Product Cards */
.product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  padding: 20px;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
}


/* Product Image */
.product-card img {
  width: 100%;
  height: auto;
  object-fit: contain; /* or remove this entirely */
}

/* Product Title & Description */
.product-card h3 {
  color: #022a44;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.product-card p {
  font-size: 0.95rem;
  color: #555;
}

/* ======= Responsive Layout ======= */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr; /* 1 per row on mobile */
  }
}
