    :root {
        --primary-color: #0077ff !important;
        --text-color: #ffffff;
        --transition-speed: 0.8s;
    }

    .slide-wrapper {
        position: relative;
        width: 100%;
        height: 500px;
        /* Sabit bir yükseklik veya aspect-ratio kullanabilirsin */
        overflow: hidden;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

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

    .slides {
        display: flex;
        width: 100%;
        height: 100%;
        transition: transform var(--transition-speed) cubic-bezier(0.77, 0, 0.175, 1);
    }

    .slide {
        min-width: 100%;
        height: 100%;
        position: relative;
    }

    /* Görsel Karartma Katmanı */
    .slide::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%);
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* İçerik Alanı */
    .slide-content {
        position: absolute;
        bottom: 60px;
        left: 60px;
        z-index: 5;
        color: var(--text-color);
        max-width: 600px;
    }

    .slide h3 {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 20px;
        transform: translateY(30px);
        opacity: 0;
        transition: all 0.5s ease-out 0.3s;
    }

    .slide a {
        display: inline-block;
        padding: 12px 35px;
        background-color: var(--primary-color) !important;
        color: #FFF;
        text-decoration: none;
        font-weight: 700;
        border-radius: 50px;
        text-transform: uppercase;
        letter-spacing: 1px;
        transform: translateY(30px);
        opacity: 0;
        transition: all 0.5s ease-out 0.5s;
    }

    /* Aktif Slayt Animasyonları */
    .slide.active h3,
    .slide.active a {
        transform: translateY(0);
        opacity: 1;
    }

    /* Oklar */
    .prev,
    .next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(5px);
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        cursor: pointer;
        z-index: 10;
        color: white;
        transition: 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .prev:hover,
    .next:hover {
        background: var(--primary-color);
        color: #000;
    }

    .prev {
        left: 20px;
    }

    .next {
        right: 20px;
    }

    /* Dotlar */
    .dots-container {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: -30px;
        /* Slider içine çekmek için */
        position: relative;
        z-index: 20;
    }

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

    .dot.active {
        width: 35px;
        background: var(--primary-color);
    }

    @media screen and (max-width:768px) {
        .slide h1 {
            font-size: 20px;
        }
    }