.slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 600px;
    margin: 0 auto;
    perspective: 1000px;
    overflow: hidden;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 90%;
    max-width: 1000px;
    height: 500px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* Stack positioning - slides are positioned behind each other */
.slide:nth-child(1) {
    z-index: 3;
    transform: translateX(0) scale(1);
}
.slide:nth-child(2) {
    z-index: 2;
    transform: translateX(0) scale(0.95);
    opacity: 0.8;
}
.slide:nth-child(3) {
    z-index: 1;
    transform: translateX(0) scale(0.9);
    opacity: 0.6;
}

/* Active slide */
.slide.active {
    z-index: 4;
    transform: translateX(0) scale(1);
    opacity: 1;
    /* right: 010px; */
}

/* Previous slide */
.slide.prev {
    z-index: 3;
    transform: translateX(1%) scale(1);
    opacity: 0.8;
}

/* Next slide */
.slide.next {
    z-index: 3;
    transform: translateX(120%) scale(0.95);
    opacity: 0.8;
}

/* Hidden slides */
.slide.hidden {
    z-index: 1;
    transform: translateX(0) scale(0.85);
    opacity: 0.4;
}

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

.slide-text {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-heading {
    font-size: 40px;
    font-weight: 400;
    color: #00100d;
    line-height: 45px;
    margin-bottom: 50px;
}

.slide-description {
    font-size: 16px;
    color: #00100d;
    line-height: 21px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.slide-icon {
    width: 45px;
    height: 45px;

    /* border-radius: 12px; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 5px;
}

/* .slide-icon svg {
            width: 24px;
            height: 24px;
            fill: white;
        } */
.slide-icon img {
    width: 45px;
    height: 45px;
    /* border-radius: 12px; */
}

.slide-image {
    flex: 1;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    position: relative;
    overflow: hidden;
    width: 440px;
    padding: 30px 30px;
    height: auto;
    /* border-radius: 2px 20px 20px 20px; */
}

/* .slide-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('slider-01.png');
            background-position: 100%;
            background-size: cover;
            opacity: 0.3;
        } */

.slide-image img {
    width: 100%;
    height: 100%;
}

.slide-image-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.slide-image-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.slide-image-subtitle {
    font-size: 1rem;
    opacity: 0.9;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 10;
}

.nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nav-btn.prev {
    background: #ecf0f1;
    color: #2c3e50;
}

.nav-btn.next {
    background: #27ae60;
    color: white;
}

.nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.nav-btn:active {
    transform: scale(0.95);
}

.nav-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

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

.indicator.active {
    background: #27ae60;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .slider-container {
        width: 100%;

        height: 400px;
    }

    .slider {
        width: 100%;
        height: 100%;
    }

    .slide {
        height: 350px;
    }
    .slide-content {
        flex-direction: row;
    }

    .slide-text {
        padding: 30px 25px;
    }
    .slide-heading {
        font-size: 30px;
        font-weight: 400;
        color: #00100d;
        line-height: 33px;
        margin-bottom: 20px;
    }

    .slide-image {
        height: 100%;
        width: 100%;
        border-radius: 0 0 20px 20px;
        padding: 20px 25px;
    }
    .slide-image img {
        height: 100%;
        width: 100%;
        object-fit: contain;
        border-radius: 0 0 20px 20px;
    }
}
@media (max-width: 599px) {
    .slider-container {
        width: 100%;

        height: 650px;
    }

    .slider {
        width: 100%;
        height: 100%;
    }

    .slide {
        height: 650px;
    }
    .slide-content {
        flex-direction: column;
    }

    .slide-text {
        padding: 30px 25px;
    }
    .slide-heading {
        font-size: 30px;
        font-weight: 400;
        color: #00100d;
        line-height: 33px;
        margin-bottom: 20px;
    }

    .slide-image {
        height: 100%;
        width: 100%;
        border-radius: 0 0 20px 20px;
        padding: 20px 25px;
    }
    .slide-image img {
        height: 100%;
        width: 100%;
        object-fit: contain;
        border-radius: 0 0 20px 20px;
    }
}
.nav-btn.prev,
.nav-btn.next {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    color: #00100d;
    border: 1px solid #3fff21;
    background: linear-gradient(#00ffd0, #3fff21) !important;
    transition: 0.5s;
    font-size: 18px;
    outline: none;
    cursor: pointer;
}

.nav-btn.prev img,
.nav-btn.next img {
    width: 15px;
    height: auto;
}
