.fields-section {
    position: relative;
    background-color: var(--helperColor);
    color: var(--white);
}

/* .fields-section::after {
    content: "";
    background-image: url("../img/logo.png");
    background-size: 300px;
    opacity: .09;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 0;
} */

.fields-section svg {
    position: absolute;
    right: 0;
    left: 0;
    height: 20px;
    width: 100%;
}

.fields-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 60px 20px;
}

.fields-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.fields-section-title {
    display: inline-block;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--primaryColor);
    position: relative;
}

.fields-section-subtitle {
    color: var(--white);
    font-size: 20px;
}

.fields-section-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%);

}

.fields-section-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%);

}


/* ===================================== */
.fld-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.fld-content h3 {
    color: var(--primaryColor);
}

.single-fld {
    width: 50%;
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.single-fld .fld-image {
    width: 150px;
    height: 100px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    box-shadow: 0 1px 20px #0174d885;
}

.single-fld .fld-image img {

    width: 55px;
    height: 55px;

    /* filter: invert(12%) sepia(63%) saturate(2834%) hue-rotate(292deg) brightness(87%) contrast(100%); */
}


/* 📱 موبايل و تابلت */
@media (max-width: 992px) {
    .single-fld {
        width: 100%;
        /* كل عنصر ياخد الصف لوحده */
        flex-direction: column;
        /* الصورة فوق والنص تحت */
        text-align: center;
    }

    .single-fld .fld-image {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }

    .single-fld .fld-image img {
        width: 45px;
        height: 45px;
    }

    .fields-section-title {
        font-size: 30px;
    }

    .fields-section-subtitle {
        font-size: 16px;
    }
}

/* 📱 موبايل صغير جداً */
@media (max-width: 576px) {
    .fields-container {
        padding: 40px 15px;
    }

    .single-fld .fld-image {
        width: 80px;
        height: 80px;
    }

    .single-fld .fld-image img {
        width: 35px;
        height: 35px;
    }

    .fields-section-title {
        font-size: 26px;
    }

    .fields-section-subtitle {
        font-size: 14px;
    }
}