#mainHeader{
 background-color: #0B4784;   
}

.banner-padding-top-50{
    padding-top: 50px !important;
}

.margin-container{
    background-color: #F5F5F5;
    color: #000;
}

.banner{
    height: 100vh;
    width: 100%;
    color: #fff;


    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}

.banner h5{
    font-weight: 400;
    line-height: 30px;
}


.pipe-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* exactly 4 columns */
    gap: 40px 25px;
}

.pipe-card {
background: #fff;
border: 1px solid #05D3AB;
border-radius: 20px;
display: flex;
justify-content: center;
}

.container-fluid h2{
padding-bottom: 50px;
}

.p{
   padding-top: 50px;
   
   
}
.container-fluid {
width: 100%;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}

.pipe-card img {
  max-width:100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 20px;
}

.pipe-name {
  margin-top: 12px;
  text-align: center;
}

.pipe-box {
    transition: transform 0.3s ease, color 0.3s ease;
}

.pipe-box:hover {
    transform: scale(1.10);
    text-decoration: none;
    color: #000;
}

a{
    text-decoration: none !important;
    color: #000;
}



@media (max-width: 990px) {

    .banner {
        padding: 0 20px;
    }

.pipe-grid {
grid-template-columns: repeat(2, 1fr); /* Tablet: 2 per row */
}

.pipe-card {
height: 150px;
padding: 15px;
}
}