/* University / units and departments */
.welcome .welcome-image {
    display: none;
}
.welcome .welcome-content {
    display: none;
}
div.welcome {
    padding: 0 !important;
}


.unit-item {
    display: flex;
    color: var(--primary);
    align-items: center;
    padding: 1rem 1.25rem;
    background: white;
    text-decoration: none !important;
    border-radius: 15px;
    border-left: 2px solid var(--accent);

    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.18);
    transition: 
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-left-color 0.3s ease,
        color 0.3s ease;
}

.unit-item:hover {
    color: var(--accent);
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
}

.unit-icon {
    width: 40px;
    height: 40px;
    background: #002d5815;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.unit-icon i {
    font-size: 1.3rem;
    color: var(--primary);
}

.unit-title {
    font-weight: 500;
    line-height: 1.4;
}




/* Arabic Section */
/* units_and_departments */
.unit-item{
  border-left: 0 !important;
  border-right: 2px solid var(--accent);
}
.unit-item .unit-icon{
  margin-right: 0 !important;
  margin-left: 1rem;
}
