.products-section {
  padding: 50px 20px;
  text-align: center;
}

.products-section h2 {
  margin-bottom: 10px;
  font-family: Arial, sans-serif;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #003b7a;
}
.heading-border {
  width: 150px;
  height: 4px;
  background: linear-gradient(to right, #ff6b6b, #4ecdc4);
  margin: 0 auto 40px;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .products-section h2 {
    font-size: 1.8rem;
  }
}

.products-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.product-card {
  text-decoration: none;
  width: 380px;
  height: 410px; /* ✅ Fixed height */
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: background-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #003b7a;
}

.product-card:hover {
  background-color: #f0f0f0; /* ✅ Full card bg change */
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 340px;
  object-fit: contain;
  background-color: #fff;
  transition: background-color 0.3s;
  padding-top: 20px;
  padding-left: 5px;
  padding-right: 5px;
}

.product-name {
  font-family: "Roboto", sans-serif;
  border-top: 1px solid #003b7a;
  height: 60px;
  padding-bottom: 10px;
  padding-top: 5px;
  font-size: 19px;
  color: #222;
  text-align: center;
  font-weight: bold;
  padding-left: 3px;
  padding-right: 3px;
}

@media screen and (max-width: 1024px) {
  .product-card {
    width: 45%;
  }
}

@media screen and (max-width: 768px) {
  .product-card {
    width: 90%;
  }
}
/* 
common hero section styles */
.common-hero-section {
  width: 100%;
  height: 70vh;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.hero-image-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.hero-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive for smaller devices */
@media (max-width: 768px) {
  @media (max-width: 768px) {
    .common-hero-section {
      height: auto;
    }

    .hero-main-image {
      height: auto;
      object-fit: cover;
    }
  }
}
