/* Reset default body and html padding/margin */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    background-color: #ffffff;
    overflow-x: hidden; /* Prevent sideways scroll */
}
 
/* Apply box-sizing border-box globally */
*, *::before, *::after {
    box-sizing: border-box;
}
.back-services {
    position: relative;
    text-align: center;
    align-items: center;
    background-image: url(../images/banner/designpannel.avif);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    min-height: 70vh;
    padding: 40px 20px;
}

.back-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.358); /* White color with 50% opacity */
    z-index: 1;
}

.back-services h1,
.back-services p {
    position: relative;
    z-index: 2; /* Ensure content appears above the overlay */
}

.back-services h1 {
font-size: 7rem;
  text-align: center;
  margin-top: 19rem;
}

.back-services p {
    font-size: 2rem;
}
