.menu-items ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    transition: all 0.3s ease;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
}

.menu-items ul li a i {
    font-size: 24px;
    margin-bottom: 5px;
}

.menu-items ul li a span {
    font-size: 12px;
    position: absolute;
    bottom: -25px;
    width: 100%;
    text-align: center;
}

.menu-items ul li:nth-child(1) a {
    background-color: #3498db; /* الرئيسية */
}

.menu-items ul li:nth-child(2) a {
    background-color: #2ecc71; /* نبذة عني */
}

.menu-items ul li:nth-child(3) a {
    background-color: #e74c3c; /* خدماتي */
}

.menu-items ul li:nth-child(4) a {
    background-color: #f39c12; /* أعمالي */
}

.menu-items ul li:nth-child(5) a {
    background-color: #9b59b6; /* مهاراتي */
}

.menu-items ul li:nth-child(6) a {
    background-color: #1abc9c; /* آراء العملاء */
}

.menu-items ul li:nth-child(7) a {
    background-color: #34495e; /* تواصل معي */
}

.menu-items ul li a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}
