.solutions {
    background-color: #fff;
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.slider-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.slider-content {
    width: 100%;
    position: relative;
}

.slider {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    padding: 0 20px;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.slide.exit {
    opacity: 0;
    transform: translateX(-100%);
}

.slide h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: #333;
    font-weight: 600;
    line-height: 1.2;
}

.slide p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.navigation-container {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.slider-nav {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav-dot {
    width: 10px;
    height: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    width: 30px;
    border-radius: 5px;
    background: #000;
}

.nav-dot:hover {
    background: rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .solutions {
        padding: 60px 0;
        min-height: auto;
    }

    .slide h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .slide p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .slider {
        min-height: 300px;
    }
} 