/* Add custom CSS styles below */ 
. features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    text-align: center;
    margin-top: 20px;
}

.feature-item {
    width: 180px;
}

.feature-item__icon {
    margin: auto;
    width: 85px;
    height: 85px;
    background-color: black; /* خلفية سوداء */
    color: white; /* أيقونات بيضاء */
    border-radius: 50%;
    font-size: 38px;
    line-height: 85px;
    font-weight: bold;
    margin-bottom: 1rem;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.feature-item__icon:hover {
    transform: scale(1.1);
    background-color: white; /* يتحول للأبيض عند التمرير */
    color: black; /* الأيقونة تتحول للأسود */
    border: 2px solid black; /* يضيف إطار أسود عند التحويل */
}

.feature-item p {
    font-size: 18px;
    font-weight: bold;
    color: black;
}