/* Slider Stilleri */
.slider-section {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

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

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

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

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    max-width: 800px;
    width: 90%;
    text-align: center;
}

.slogan-line-1 {
    background: #3B82F6;
    color: #F8FAFC;
    padding: 15px 25px;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 10px;
    display: block;
    width: fit-content;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
}

.slogan-line-2 {
    background: #0F172A;
    color: #00D4FF;
    padding: 15px 25px;
    font-size: 28px;
    font-weight: 600;
    margin: 0 auto 15px;
    display: block;
    width: fit-content;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
}

.slide-description {
    color: #F8FAFC;
    font-size: 18px;
    line-height: 1.6;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 100%;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    background: rgba(15, 23, 42, 0.5);
    padding: 15px 25px;
    display: inline-block;
    width: fit-content;
}

/* Slider 1 Özel Renkler */
.slide[data-slide="0"] .slogan-line-1 {
    background: #3B82F6;
    color: #F8FAFC;
}

.slide[data-slide="0"] .slogan-line-2 {
    background: #0F172A;
    color: #00D4FF;
}

/* Slider 2 Özel Renkler */
.slide[data-slide="1"] .slogan-line-1 {
    background: #00D4FF;
    color: #0F172A;
}

.slide[data-slide="1"] .slogan-line-2 {
    background: #0F172A;
    color: #60A5FA;
}

/* Slider 3 Özel Renkler */
.slide[data-slide="2"] .slogan-line-1 {
    background: #60A5FA;
    color: #0F172A;
}

.slide[data-slide="2"] .slogan-line-2 {
    background: #0F172A;
    color: #3B82F6;
}

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

.slider-btn {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

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

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

.dot.active {
    background: #00D4FF;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .slider-section {
        height: 400px;
    }
    
    .slide-content {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 90%;
    }
    
    .slogan-line-1 {
        font-size: 24px;
        padding: 12px 20px;
    }
    
    .slogan-line-2 {
        font-size: 20px;
        padding: 12px 20px;
    }
    
    .slide-description {
        font-size: 14px;
    }
}

