.services-hero {
    position: relative;
    background-color: white;
    background: url("/static/images/services-bg.jpg") no-repeat center center/cover;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    border-radius: 20px;
    overflow: hidden;
}

.services-hero .overlay {
  position: absolute;
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%;
  background-color: rgba(35, 34, 34, 0.578);
}

.services-hero h1{
    color: #fff;
  }
.services-list-section h2{
    text-align: center;
    width: 70%;
    font-size: 50px;
    margin: 35px 0px;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    justify-content: center;
}

.service-card{
    width: 30%;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card i{
    font-size: 50px;
    color: #4caf50;
    margin-bottom: 20px;
    border: 4px solid;
    padding: 10px;
    border-radius: 10px;
}



@media (max-width: 1024px) {
    .services-list-section h2{
        margin: 30px 0px;
        font-size: 30px;
    }

    .service-card i {
        font-size: 30px;
        margin-bottom: 18px;
        border: 2px solid;
        padding: 15px;
        border-radius: 9px;
    }

    .service-card {
        width: 45%;
        padding: 20px;
    }
    .container {
        width: 100%;
        margin: 0 auto;
        padding: 0px;
    }
}


@media (max-width: 768px) {
    .services-list-section h2{
        margin: 17px 0px;
        font-size: 40px;
        width: 100%;
    }
    h1{
        font-size: 40px;
    }

    .service-card i {
        font-size: 23px;
        margin-bottom: 18px;
        border: 2px solid;
        padding: 5px;
        border-radius: 9px;
    }

    .service-card {
        width: 100%;
        padding: 20px;
    }
    .container {
        width: 100%;
        margin: 0 auto;
        padding: 0px;
    }

    h3{
        font-size: 25px;
        margin-bottom: 15px;
    }
}




@media (max-width: 425px) {
    .services-list-section h2{
        margin: 17px 0px;
        font-size: 30px;
    }
    
    h1{
        font-size: 30px;
    }

    .service-card i {
        font-size: 23px;
        margin-bottom: 18px;
        border: 2px solid;
        padding: 5px;
        border-radius: 9px;
    }

    .service-card {
        width: 100%;
        padding: 17px;
    }
    .container {
        width: 100%;
        margin: 0 auto;
        padding: 0px;
    }

    h3{
        font-size: 17px;
        margin-bottom: 15px;
    }
}

