/**
 * YouYou Serv Public CSS
 */
.youyou-serv-slider-container {
    margin: 30px 0;
    position: relative;
}

.youyou-serv-slider {
    margin-bottom: 20px;
}

.youyou-serv-slide {
    padding: 10px;
    text-align: center;
}

.youyou-serv-slide-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.youyou-serv-slide-image-container {
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
    width: 300px;
       
    margin: 0 auto 10px;
}

.youyou-serv-slide-image {
    width: 300px;
    height: 480px;
    display: block;
    transition: transform 0.3s ease;
    object-fit: cover; /* للحفاظ على نسبة العرض إلى الارتفاع */
}

.youyou-serv-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.2);
}

.youyou-serv-hover-image {
    max-width: 20%;
    max-height: 20%;
    padding-left: 10px;
 
}

.youyou-serv-slide-title {
    font-size: 26px;
    margin: 10px 0;
    font-weight: 600;
    color: #DD3F3E;
      font-family: rubik;
}

.youyou-serv-slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.youyou-serv-prev,
.youyou-serv-next {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 3px;
    margin: 0 10px;
}

.youyou-serv-dots {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    width: 100%;
    text-align: center;
}

.youyou-serv-dots ul {
    display: flex;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    justify-content: center;
}

.youyou-serv-dots li {
    margin: 0 5px;
}

.youyou-serv-dots button {
    font-size: 0;
    border: 0;
    background: #ccc;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    padding: 0;
    cursor: pointer;
}

.youyou-serv-dots li.slick-active button {
    background: #333;
}

/* Responsive styles */
@media (max-width: 768px) {
    .youyou-serv-slide-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .youyou-serv-slide-title {
        font-size: 14px;
    }
    
    .youyou-serv-prev,
    .youyou-serv-next {
        padding: 5px 10px;
    }
}



