.slider-container {
    width: 100%;
    background: #fff;
    /* border-radius: 20px; */
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.slider-wrapper {
    display: flex;
    height: 420px;
    position: relative;
    overflow: hidden;
}

.slider-image {
    width: 50%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.slider-content {
    width: 50%;
    height: 100%;
    background: #1e1e1e;
    color: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transform: translateX(50px);
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide.prev {
    transform: translateX(-50px);
}

.slide-title {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.slide-description {
    font-size: 16px;
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 30px;
}

.slider-controls {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.3);
    background: transparent;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 18px;
}

.slider-btn:hover {
    background: #00d4ff;
    border-color: #00d4ff;
    color: #1e1e1e;
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #00d4ff;
    width: 40px;
    border-radius: 6px;
}

.dot:hover {
    background: rgba(255,255,255,0.6);
}