
/* Services Grid
--------------------------------- */
section.services {
    background-repeat: no-repeat;
    background-size: cover;
    background-image:linear-gradient(180deg,rgba(0,0,0,0.6) 0%,rgba(0,0,0,0.6) 100%),url(../image/excavating-action.avif);
    padding-bottom: 100px;
    clear: left;
    
}

.services-header h4 {
    color: var(--main-txt-color);
}

.services-header {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    justify-content: center;
    width: 80%;
    clear: left;
}

.services-layout {
    position: relative;
    display: flex;
    justify-content: center;
}

.services-grid {
    display: grid;
    grid-template-columns: 33% 33% 33%;
    grid-gap: 5px;
    background-color: white;
    color: black;
    max-width: 1080px;
    width: 80%;
}

section.services-grid h4 {
    font-size: 1.2em;
    color: var(--second-txt-color);
}

section.services-grid li {
    color: var(--second-txt-color);
    font-size: .8em;
    line-height: 1.2em;
}

@media only screen and (max-width: 980px) {
    section.services{
        
    }
    .services-header {
        padding: 0;
    }
    .services-grid {
        grid-template-columns: 100%;
    }
}

.box > h4 {
    text-align: center;
    font-size: 2.5rem;
}

li, ul { list-style-type: disc;
    color: grey;
    }

 li::marker {
    
    color: black;
 }

.grid-image {
    display: block;
    width: 25%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 10%;
}

.box {
    background-color: var(--second-bg-color);
    color: black;
    border-radius: 5px;
    padding: 20px;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.box:hover {
    transform: scale(1.05); /* Adjust the scale value as needed */
        }

div.services-individual {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    width: 60%;
    height: 80vh;
}

div.services-individual  li {
    align-self: center;
    font-size: 2em;
}


