.index-container-content {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.index-container {
    width: 100%;
    padding: 0 0 4rem 0;
}

@media (min-width: 992px) {
    .index-container-content {
        margin-top: 6rem;
    }

    .index-container {
        padding: 0 0 8rem 0;
    }
}

@keyframes index-image-one-switch {
    33% {
        transform: scale(1.05);
        left: 3rem;
    }
    66% {
        transform: scale(0.9);
    }
    100% {
        z-index: 1;
        left: 9rem;
        transform: scale(0.9);
        filter: blur(1px);
    }
}

@keyframes index-image-two-switch {
    33% {
        right: -6rem;
        transform: scale(0.95);
    }
    66% {
        transform: scale(1.1);
        top: -2rem;
    }
    100% {
        z-index: 2;
        right: -3rem;
        top: -2rem;
        filter: blur(0px);
        transform: scale(1.05);
    }
}

.index-image {
    width: auto;
    max-height: 540px;
    position: absolute;
    transition: all 0.3s ease-out;
    border-radius: 30px;
}

.index-image-one {
    z-index: 2;
    top: -1.5rem;
    right: 11.5rem;
}

.index-image-two {
    z-index: 1;
    right: 0;
    top: -5rem;
    filter: blur(1px);
}

[dir="rtl"] .index-image-one {
    left: 3.5rem;
    right: inherit;
}

@media (min-width: 1325px) {
    .index-image {
        max-height: 600px;
    }

    .index-image-one {
        top: -1.5rem;
        left: 9rem;

        animation: index-image-one-switch 2s forwards;
        animation-delay: 2s;
    }

    .index-image-two {
        right: -3rem;
        top: -5rem;
        left: inherit;

        animation: index-image-two-switch 2s forwards;
        animation-delay: 2s;
    }

    [dir="rtl"] .index-image-one {
        animation: none;
    }

    [dir="rtl"] .index-image-two {
        animation: none;
        right: 3rem;
    }
}

.index-header {
    font-size: 2rem;
    font-weight: bold;
    color: var(--black);
}

@media (min-width: 768px) {
    .index-header {
        font-size: 2.5rem;
    }
}

@media (min-width: 1200px) {
    .index-header {
        font-size: 3rem;
    }
}

.index-input {
    padding: 1.5rem 1rem;
}

.index-feature {
    line-height: 2.5rem;
    font-weight: 500;
    transition: background .6s;
    border-radius: 100px;
}

.index-feature a {
    color: var(--gray-800);
    text-decoration: none;
    transition: color .6s;
}

.index-feature:hover {
    background: var(--primary-100);
}

.index-feature:hover a {
    color: var(--primary-600);
}

.index-button {
    padding: 1.2rem 2.2rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all .3s ease-in-out;
}

.index-button-white, .index-button-white:hover {
    color: white;
}

.index-card-image {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 10px 10px 0 #ebf5ff;
    border: 1px solid var(--gray-300);
    transition: all .3s ease-in-out;
}

.index-card-image:hover {
    box-shadow: 0 0 0 var(--gray-300);
}

.index-fade {
    position: absolute;
    background: linear-gradient(0deg, var(--body-bg), hsla(0, 0%, 100%, 0)) !important;
    bottom: 0;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
}

/* Index testimonial */
.index-testimonial-avatar {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    transform: translateY(-70%);
    border: 4px solid var(--white);
    position: absolute;
    left: 50%;
    margin-left: -52px;
}

/* Index FAQ */
.index-faq svg {
    transition: all .15s;
    color: var(--primary-800);
}

/* Timeline */
.index-timeline {
    position: relative;
}

.index-timeline::before {
    content: '';
    position: absolute;
    border-left: 2px solid var(--gray-200);
    height: 100%;
    left: calc(57px / 2);
}

/* Index call to action */
.index-cta {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.dev/svgjs" viewBox="0 0 1920 1080" width="1920" height="1080"><defs><linearGradient gradientTransform="rotate(0, 0.5, 0.5)" x1="50%" y1="0%" x2="50%" y2="100%" id="ffflux-gradient"><stop stop-color="%230063ef" stop-opacity="1" offset="0%"></stop><stop stop-color="%23aa02b4" stop-opacity="1" offset="100%"></stop></linearGradient><filter id="ffflux-filter" x="-20%" y="-20%" width="140%" height="140%" filterUnits="objectBoundingBox" primitiveUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feTurbulence type="fractalNoise" baseFrequency="0.005 0.003" numOctaves="1" seed="131" stitchTiles="stitch" x="0%" y="0%" width="100%" height="100%" result="turbulence"></feTurbulence><feGaussianBlur stdDeviation="20 0" x="0%" y="0%" width="100%" height="100%" in="turbulence" edgeMode="duplicate" result="blur"></feGaussianBlur><feBlend mode="color-dodge" x="0%" y="0%" width="100%" height="100%" in="SourceGraphic" in2="blur" result="blend"></feBlend></filter></defs><rect width="1920" height="1080" fill="url(%23ffflux-gradient)" filter="url(%23ffflux-filter)"></rect></svg>');
    background-repeat: no-repeat;
    background-size: cover;
    color: white !important;
}

.index-cta a.btn {
    color: white;
    background: var(--dark);
    border-color: var(--dark);
    padding: 1.1rem 4rem;
    font-size: 1.15rem;
}

.index-cta a.btn:hover {
    background: var(--primary-900);
    border-color: var(--primary-900);
}

[data-theme-style="dark"] .index-cta a.btn {
    background: var(--light);
    border-color: var(--light);
}

/* Gradient text */
.text-gradient-primary {
    background: linear-gradient(135deg, var(--gradient-one), var(--gradient-two));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Gradient background */
.bg-gradient {
    animation: bg-gradient-animation 3s ease infinite alternate !important;
    background: linear-gradient(60deg,#f79533,#f37055,#ef4e7b,#a166ab,#5073b8,#1098ad,#07b39b,#6fba82);
    background-size: 300% 300%;
}

@keyframes bg-gradient-animation {
    0% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
}

.bg-gradient {
    animation: bg-gradient-animation 5s ease infinite alternate;
    background: linear-gradient(60deg,
            #0a0a0a,
            #1c1c1c,
            #2e2e2e,
            #3c4c1b,
            #d9fa31,
            #3c4c1b,
            #1c1c1c);
    background-size: 300% 300%;
    color: white;
    /* opsiyonel: yazı rengini garantiye almak için */
}

@keyframes bg-gradient-animation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}