.webContainer {
    position: relative; /* To position the overlay correctly */
    padding: 15%;
    background-image: url('/image/website-image-bg.png');
    height: 100%;
    background-size: cover;
    background-position: center;
    /*background-attachment: fixed;*/
    /* border-radius: 25px; */
}
.webContainer::before {
    content: ''; /* Creates a pseudo-element */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);  /* Black overlay with 50% opacity */
    z-index: 0; /* Ensure the overlay stays behind the content */
    /* border-radius: 25px; */
}
.webContainer h1, .webContainer p{
    position: relative;
    z-index: 1; /* Ensure the text stays above the overlay */
    color: white; /*Set text color for readability*/
    justify-content: center;
    text-align: center;
    /*font-weight: bold;*/
    text-decoration: none;
}
.webpara{
    padding: 7%;
}
.webpara p{
    line-height: 2;
    font-size: 18px;
    text-align: center;
    justify-content: center;    
}
.webservice{
    padding: 7%;
}
.webserviceheading{
    /*font-weight: bold;*/
    text-decoration: underline;
    text-align: center;
    margin-bottom: 30px;
}