@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&family=Tajawal:wght@400;700&display=swap');

:root {
    --primaryColor: #FEA958;
    --middleColor: #393E46;
    --helperColor: #400B50;
    --lightHelper: #B60C52;
    --hrColor: #F8F5FF;
    --transparentColor: rgba(0, 0, 0, 0.699);
    --shadow: rgba(189, 188, 188, 0.514);
    /* --------------------------------- */
    --whatsappColor: #25D366;
    --white: #ffff;
    --blue: #1877F2;
    --green: #25D366;
    --gray: #f8f8f8;
    --container-width: 1340px;
    --header-height: 200px;
}


body::-webkit-scrollbar {
    width: 8px
}

body::-webkit-scrollbar-track {
    background-color: transparent
}

body::-webkit-scrollbar-thumb {
    background-color: var(--lightHelper);
    background-image: linear-gradient(0deg, var(--lightHelper) 0%, var(--helperColor) 100%);
    border-radius: 5px
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', 'Tajawal', sans-serif;
}

a {
    text-decoration: none;
    transition: all 0.5s;

}

ul {
    list-style: none;
}


.service-features-section {
    position: relative;
    padding-bottom: 20px;
    background-color: var(--white)
}
.service-features-section svg {
    position: absolute;
    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(--primaryColor) 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(--primaryColor) 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%;
}