/* Modern Slider Styles */
.rev_slider_wrapper {
    position: relative;
    overflow: hidden !important;
}

/* Slider Overlay */
.slider-overlay {
    background: linear-gradient(to right, rgba(58, 43, 120, 0.7), rgba(0, 121, 145, 0.5));
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Slider Content Container */
.slider-content-container {
    position: relative;
    z-index: 10;
    padding: 22px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    max-width: 480px;
    margin-left: 8px; /* 2px daha sola almak için */
    backdrop-filter: blur(5px);
    border-left: 4px solid #007991;
    color: #fff !important;
}

/* Slider Title */
.rs-heading-title {
    font-size: 38px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    color: #fff !important;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3) !important;
    margin-bottom: 14px !important;
    position: relative;
    padding-bottom: 10px !important;
}

.rs-heading-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #3a2b78, #007991);
}

/* Slider Subtitle */
.rs-subtitle {
    font-size: 18px !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 25px !important;
}

/* Slider Button */
.slider-btn {
    display: inline-block;
    padding: 12px 30px !important;
    background: linear-gradient(to right, #3a2b78, #007991) !important;
    color: #fff !important;
    border-radius: 30px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
    border: none !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.slider-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(to right, #007991, #3a2b78) !important;
    transition: all 0.5s ease !important;
    z-index: -1;
}

.slider-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
}

.slider-btn:hover::before {
    width: 100%;
}

/* Slider Navigation Arrows */
.tparrows {
    background: rgba(58, 43, 120, 0.7) !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
}

.tparrows:hover {
    background: #007991 !important;
    transform: scale(1.1) !important;
}

.tparrows:before {
    line-height: 50px !important;
    font-size: 20px !important;
}

/* Slider Bullets */
.tp-bullets.uranus .tp-bullet {
    width: 12px !important;
    height: 12px !important;
    background: rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s ease !important;
}

.tp-bullets.uranus .tp-bullet:hover,
.tp-bullets.uranus .tp-bullet.selected {
    background: #007991 !important;
    transform: scale(1.2) !important;
}

.tp-bullets.uranus .tp-bullet-inner {
    background: #3a2b78 !important;
}

/* Slider Animation Effects */
.slide-element {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.slide-element.active {
    opacity: 1;
    transform: translateY(0);
}

.slide-delay-1 {
    transition-delay: 0.2s;
}

.slide-delay-2 {
    transition-delay: 0.4s;
}

.slide-delay-3 {
    transition-delay: 0.6s;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .slider-content-container {
        max-width: 500px;
        margin-left: 30px;
    }
    
    .rs-heading-title {
        font-size: 36px !important;
    }
    
    .rs-subtitle {
        font-size: 16px !important;
    }
}

@media (max-width: 767px) {
    .slider-content-container {
        max-width: 240px;
        margin-left: 10px;
        padding: 10px;
        background: rgba(0, 0, 0, 0.7);
    }
    
    .rs-heading-title {
        font-size: 18px !important;
        padding-bottom: 6px !important;
        margin-bottom: 6px !important;
        text-align: left;
    }
    
    .rs-subtitle {
        font-size: 11px !important;
        margin-bottom: 10px !important;
        text-align: left;
        line-height: 1.3 !important;
    }
    
    .slider-btn {
        padding: 5px 15px !important;
        font-size: 11px !important;
        display: inline-block;
        text-align: center;
    }
    
    .rs-heading-title::after {
        left: 0;
        transform: none;
        width: 50px;
        height: 2px;
    }
}

@media (max-width: 576px) {
    .slider-content-container {
        max-width: 200px;
        padding: 8px;
    }
    
    .rs-heading-title {
        font-size: 16px !important;
        padding-bottom: 5px !important;
        margin-bottom: 5px !important;
    }
    
    .rs-subtitle {
        font-size: 10px !important;
        margin-bottom: 8px !important;
        line-height: 1.2 !important;
    }
    
    .slider-btn {
        padding: 4px 12px !important;
        font-size: 10px !important;
    }
    
    .slide-delay-1 {
        transition-delay: 0.1s;
    }
    
    .slide-delay-2 {
        transition-delay: 0.2s;
    }
    
    .slide-delay-3 {
        transition-delay: 0.3s;
    }
}

@media (max-width: 400px) {
    .slider-content-container {
        max-width: 180px;
        padding: 6px;
    }
    
    .rs-heading-title {
        font-size: 14px !important;
        padding-bottom: 4px !important;
        margin-bottom: 4px !important;
    }
    
    .rs-subtitle {
        font-size: 9px !important;
        margin-bottom: 6px !important;
        line-height: 1.2 !important;
    }
    
    .slider-btn {
        padding: 3px 8px !important;
        font-size: 9px !important;
    }
    
    .rs-heading-title::after {
        height: 2px;
        width: 30px;
    }
}
