/**
 * Simple Slider Styles
 * Lightweight alternative to Revolution Slider
 */

.simple-slider-container {
    position: relative;
    width: 100%;
    height: 730px;
    overflow: hidden;
    background: #1a1a2e;
}

.simple-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.simple-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.simple-slide-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    height: 100%;
    display: flex;
    align-items: center;
    /* Center vertically */
    justify-content: space-between;
    /* Space between text and image */
}

.slide-text {
    flex: 1;
    max-width: 600px;
    z-index: 3;
}

.slide-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100%;
}

.slide-image img {
    max-width: 100%;
    height: auto;
    opacity: 0;
    /* Hidden initially for animation */
}

/* Specific Image Animations */
.simple-slide.active .animated-obj-1 {
    animation: slideInRight 1s ease-out 0.5s both;
}

.simple-slide.active .animated-obj-2 {
    animation: zoomIn 1s ease-out 0.5s both;
}


.simple-slide h1 {
    font-size: 50px;
    line-height: 60px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 20px;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.simple-slide h1 strong {
    color: #86c401;
    font-weight: 600;
}

.simple-slide .slide-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.simple-slide .slide-features li {
    font-size: 16px;
    line-height: 33px;
    color: #fff;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.simple-slide .slide-features li i {
    color: #86c401;
    font-size: 16px;
    width: 25px;
    margin-right: 5px;
}

.simple-slide .slide-button {
    margin-top: 20px;
    animation: slideInUp 0.8s ease-out 0.6s both;
}

.simple-slide .slide-button a {
    display: inline-block;
    padding: 15px 40px;
    background: #86c401;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.simple-slide .slide-button a:hover {
    background: #6fa001;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(134, 196, 1, 0.3);
}

/* Navigation Arrows */
.simple-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.simple-slider-container:hover .simple-slider-arrow {
    opacity: 1;
}

.simple-slider-prev {
    left: 10px;
}

.simple-slider-next {
    right: 10px;
}

.simple-slider-arrow:hover {
    background: rgba(134, 196, 1, 0.8);
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .simple-slider-container {
        height: 600px;
    }

    .simple-slide h1 {
        font-size: 40px;
        line-height: 50px;
    }

    .simple-slide-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .slide-text {
        margin-bottom: 30px;
    }

    .slide-image {
        display: none;
        /* Hide images on smaller screens or adjust as needed */
    }

    .simple-slide .slide-features {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .simple-slider-container {
        height: 500px;
    }

    .simple-slide h1 {
        font-size: 32px;
        line-height: 42px;
    }

    .simple-slide .slide-features {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .simple-slider-container {
        height: 400px;
    }

    .simple-slide h1 {
        font-size: 24px;
        line-height: 32px;
    }
}