.owl-carousel .item {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 220px;
}

.owl-carousel .item:hover {
    transform: translateY(-5px);
}

.owl-carousel .item img {
    max-height: 120px;
    object-fit: contain;
    margin: 0 auto 10px;
    transition: opacity 0.3s;
}

.owl-carousel .item p {
    font-size: 16px;
    margin: 0;
    color: #333;
    font-weight: 500;
}

.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px;
    background: #ccc;
    display: inline-block;
    border-radius: 50%;
}

.owl-dot.active span {
    background: #333;
}


.owl-carousel {
    direction: ltr !important; /* لو عندك مشاكل RTL */
}
