/* Yakareem Slideshow */
.yakareem-slide-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.yakareem-slide-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.slide-image-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.yakareem-slide-item:hover .slide-img {
    transform: scale(1.05);
}

.slide-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.slide-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #37423b;
    margin-bottom: 12px;
    line-height: 1.3;
}

.slide-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Swiper Navigation & Pagination */
.swiper-button-prev,
.swiper-button-next {
    color: #013C3C;
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 18px;
    font-weight: 700;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: #013C3C;
    color: #fff;
}

.swiper-pagination {
    position: relative;
    margin-top: 30px;
    bottom: auto !important;
}

.swiper-pagination-bullet {
    background: #013C3C;
    opacity: 0.3;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #013C3C;
}

/* Responsive Slideshow */
@media (max-width: 768px) {
    .slide-image-wrapper {
        height: 200px;
    }

    .slide-content {
        padding: 20px;
    }

    .slide-content h4 {
        font-size: 16px;
    }

    .slide-content p {
        font-size: 13px;
    }
}
