.card-paragraph{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.services-card{
    border-radius: 25px;
    background-color: hsl(0, 0%, 94%);

}
.card-deck{
    justify-content: space-around;
    padding-left: 25px;
    padding-right: 25px;
}
.what-we-do{
    margin-top: 60px;
}
.what-we-do .heading{
    padding-top: 70px;
    padding-bottom: 25px;
  }

  /* catalogue styles  */
.card-hover {
    position: relative;
    overflow: hidden;
    border: none;
    border-radius:25px ;
    box-shadow: 10px 10px 15px grey;
}

.card-hover:hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Black background with 70% opacity */
    transition: all 0.1s ease-in;
    z-index: 1; /* Ensure the overlay is on top of the card content *//

}
.read-more-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 2; /* Ensure the button is on top of the overlay */
    border-radius: 5px;
}
.card-hover:hover .read-more-overlay {
    display: block;
    color: white;
}
.read-more-overlay button{
    background-color: #20A7E0;
    color: white;
}

.manufucturers{
    align-items: center;
    justify-content: space-evenly;
    
}
.manufucturer{
    background-color: #EFEFEF;
}

.logos{
    height: 8vh;
}