/* all products of fire section coding */

#main-container{
    width: 100%;
    height:100%;
    background-color: brown;
    padding:10px 20px;
}

#main-container .containers{
    width: 100%;
    height:100%;
    background-color: aqua;
    padding:10px 20px;
}

#products .container .couplings_fittings{
    width:100%;
    height:100%;

    padding:10px 20px;
    display: flex;
    gap:20px;
}


.couplings_fittings {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* text-align: center; */
  gap: 20px;
  padding: 20px;

}

.box {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  width: 300px;
  height: auto;
  padding: 20px 15px;
  text-align: center;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.box:hover {
  transform: translateY(-10px);
}

.box img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.box h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.box ul li{
  font-size: 1rem;
  color: #333;
  margin-bottom: 5px;
  text-align: left;
  /* list-style: none; */
  margin-left: 10px;
}

/* Responsive Design */
@/media (max-width: 768px) {
  .box {
    width: 45%;
  }
}

@/media (max-width: 480px) {
  .box {
    width: 90%;
  }
}


.elem{
    display: flex;
    gap:10px;
  }
  
 .elem p{
    padding:1em;
    border-radius: 36px;
    background-color: #DBEAFE;
    color: #2563EB;
    font-size: 0.8rem;
  }

   .elem p a{
    text-decoration: none;
    color: #0051ff;
    font-size: 1rem;
    font-weight: 400;
   }