/* Add custom CSS styles below */ 
.s-block--features__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 10px; /* زوايا دائرية */
    padding: 1.5rem;
    transition: all 0.3s ease-in-out;
    border: 1px solid #E5E7EB; /* لون الحدود */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* ظل خفيف */
}

/* التأثير عند تمرير الماوس */
.s-block--features__item:hover {
    background-color: white;
    transform: scale(1.05); /* تكبير بسيط */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* أيقونة داخل العنصر */
.s-block--features__item i {
    color: white; /* لون الأيقونة */
    padding: 10px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

/*كود تغيير لون الخلفية 
body {
  background-color: #8E4848;
}
*/

.s-block__title {
    justify-content: center;
    margin-bottom: 2rem;
}

.s-block__title h2 {
    color: white;
    background-color: #8E4848;
    padding: 10px;
    border-radius: 25px;
    box-shadow: -3px 2px #9f9d94;
}

/*
.inner.bg-inherit {
    
    color: white;
background: url(https://i.ibb.co/RjYbgzr/image.png);
    background-size: cover;
    background-color: #8E4848;
    background-repeat: no-repeat;
}
*/