/* Simple Slider Styles */
.simple-slider {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #f8f9fa;
}

.slides-wrapper {
    position: relative;
    height: 400px; /* Adjust as needed */
}

.slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide-item.active {
    opacity: 1;
}

.slide-content {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-link {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.slide-content a {
    display: block;
    width: 100%;
    height: 100%;
}

/*.slide-content img {
    width: 100%;
    height: 100%;
    /* max-height: 400px; /* Adjust to your desired height */
    /* object-fit: contain; 
    display: block;
} */

.slide-text {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px 30px;
    border-radius: 10px;
    min-width: 300px;
    backdrop-filter: blur(5px);
}

.slide-text h3 {
    margin: 0 0 5px 0;
    font-size: 24px;
    font-weight: 600;
}

.slide-text p {
    margin: 0;
    font-size: 16px;
    opacity: 0.9;
}

/* Navigation Arrows */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    color: #333;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.slider-prev:hover,
.slider-next:hover {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.slider-dots span.active {
    background: #fff;
    border-color: #fff;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .slides-wrapper {
        height: 300px;
    }
    
    .slide-text {
        bottom: 30px;
        padding: 15px 20px;
        min-width: 200px;
    }
    
    .slide-text h3 {
        font-size: 20px;
    }
    
    .slide-text p {
        font-size: 14px;
    }
    
    .slider-prev,
    .slider-next {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
}