

.hero-image
{
  width: 100%;
  height: 700px;
  max-width: 100%;
  object-fit: cover;
}

.product {
  display: flex;
  flex-wrap: wrap;           /* Allow wrapping if needed */
  justify-content: space-evenly;
  gap: 20px;
  margin: 45px auto;
  max-width: 100%;
}

.product a
{
  text-decoration: none;
}

.product-block {
  min-width: 220px;
  max-width: 350px;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 12px 24px;
  border-radius: 10px;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  border-radius: 10px;
  z-index: -1;
}

.product-description
{
  font-family: "Instrument Sans", sans-serif;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.5em;
  padding: 15px;
  text-align: center;
  border-radius: 10px;
}

.glow-hover {
padding: 12px 24px;
border-radius: 10px;
transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.transmission-block .glow-hover:hover {
background-color: #b80a0a80;  
box-shadow: 0 0 15px 4px #b80a0a80;

}

.surveillance-block .glow-hover:hover {
background-color: #0b9c4080;  
box-shadow:0 0 15px 4px #0b9c4080;

}

.tracking-block .glow-hover:hover {
background-color: #FF572285;  
box-shadow: 0 0 18px 6px #FF5722;

}

.jamming-block .glow-hover:hover {
background-color: #fff8b380;  
box-shadow: 0 0 18px 6px #ffe13580;

}

.forensic-block .glow-hover:hover {
background-color: #00315385;  
box-shadow: 0 0 18px 6px #003153;

}

@media screen and (min-width: 1024px) {
  .product {
    flex-wrap: nowrap; /* Force single row on desktop/laptops */
    justify-content: center;
    overflow-x: auto; /* Optional: allows scrolling if screen is narrow */
  }
}
