

.service-features-section {
    position: relative;
    padding-bottom: 20px;
    background-color: var(--white)
}
.service-features-section svg {
    position: absolute;
    fill: var(--helperColor);
    right: 0;
    left: 0;
    height: 20px;
    width: 100%;

}

.service-features-container {
    /* ********************** */
    max-width: 1240px;
    margin: 0 auto;
    padding: 10px 20px;
    position: relative;
    z-index: 1;
}

.service-features-header {
    text-align: center;
    margin-bottom: 40px;
}

.service-features-title {
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--helperColor);
    position: relative;
}

.service-features-title::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    border-radius: 25px;
    bottom: -10%;
    left: 0;
    background-image: linear-gradient(90deg, var(--lightHelper) 0%, var(--lightHelper) 100%);

}

.service-features-title::before {
    content: "";
    position: absolute;
    width: 90%;
    height: 5px;
    border-radius: 25px;
    bottom: -25%;
    right: 0;
    background-image: linear-gradient(90deg, var(--lightHelper) 0%, var(--lightHelper) 100%);
}

.service-features-subtitle {
    width: 100%;
}

.service-features-grid-section {

    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.service-one-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    /* gap: 10px; */
    padding: 30px 15px;
    border-radius: 30px;
    background-color: var(--helperColor);
    background-image: url(../img/shiny-back.webp);
    background-size: cover;
    background-position: center;
    text-align: center;
    height: 100%;
    border: 7px double rgb(254 169 88 / 24%);
    /* ********************** */
    max-width: 546px;

    margin-left: auto;
    margin-right: auto;
}

.service-one-feature-title {
    font-size: 22px;
    color: var(--primaryColor);
    font-weight: 600;
    margin-bottom: 15px;
}

.service-one-feature-desc {
    color: var(--white);
}

.service-one-feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    margin-right: auto;
    margin-left: auto
}

.service-one-feature-icon img {
    width: 100%;
    height: 100%;
}

/* 📱 موبايل صغير جداً */
@media (max-width: 576px) {
  
    .fields-section-title,.service-features-title {
        font-size: 22px;
    }

 
}