.h2-heading-gray {
    border-right: 5px solid #5c5c5c;

}

/* .services-section{
    margin: 20px;
} */


.services-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 40px 8%;
}

.service {
    display: flex;
    flex-direction: column;
    /* gap: 20px; */
    /* border: 1px solid #5c5c5c; */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    width: calc(95.5% / 5 - 10px);
    /* width: 200px; */
    height: 240px;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #5c5c5c;
}

.services-container button {
    font-family:  'noto sans arabic - text';
}

.service-name {
    width: 90%;
    height: 40%;
}

.service-image-container {
    margin-top: 31px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60%;
}
.service-image {
    width: 100px;
    height: auto;
}

@media screen and (max-width: 1069px) {
    .services-container {
        gap: 14px;
        margin: 40px 3%;
    }

    .service{
        width: calc(85% / 5 - 2px);
        height: 190px;
    }
    .service-image-container {
        margin-top: 25px;
    }

    .service-name {
        font-size: 14px;
    }

    .service-image {
        width: 90px;
    }
}

@media screen and (max-width: 768px) {

    .services-container {
        margin: 40px 0%;
    }

    .service {
        width: calc(80% / 2 - 7px);
        height: 205px;
    }
    .service-name {
        font-size: 16px;
    }
}

@media screen and (max-width: 450px) {

    .services-container{
        margin: 50px 0%;
    }
    .service {
        width: calc(90% / 2 - 7px);
        height: 175px;
    }
    .service-image {
        width: 80px;
    }
    .service-name {
        font-size: 13px;
    }
}
