.anim {
    opacity: 0;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

/* Soldan giriş */
.a1 {
    animation-name: slideLeft;
    animation-delay: 0.2s;
}

/* Alttan fade */
.a2 {
    animation-name: fadeUp;
    animation-delay: 0.8s;
}

/* Sağdan giriş */
.a3 {
    animation-name: slideRight;
    animation-delay: 1.4s;
}

.a4 {
    animation-name: fadeUp;
    animation-delay: 2.0s;
}

/* Keyframes */

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ref-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all .3s ease;
}

    /* logolar ilk başta gri */
    .ref-box img {
        filter: grayscale(100%);
        opacity: .7;
        transition: all .3s ease;
        max-height: 60px;
    }

    /* hover efekti */
    .ref-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    }

        .ref-box:hover img {
            filter: grayscale(0%);
            opacity: 1;
        }

a.btn-secondary {
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    gap: 12px;
    padding: 10px 30px;
    border-radius: 12px;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

    a.btn-secondary:hover {
        background: color-mix(in srgb, var(--accent-color), transparent 85%);
    }

.b {
    font-weight: 800;
    /* color:#000; */
}



.values .section-title h2 {
    font-size: 2.2rem;
    color: white;
}

.values .value-card {
    background: #1c1c1c;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .values .value-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
        border-color: rgba(13, 110, 253, 0.18);

    }

    .values .value-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #c03ae8, #e07bff);
    }

.values .value-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 110, 253, 0.10);
    /* color: #fffff;*/
    font-size: 1.5rem;
}

.values .value-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.values .value-card p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: white;
}


/*about us*/



.about-main-card {
    background: #1c1c1c;
    border: 1px solid rgba(192, 58, 232, 0.10);
    box-shadow: 0 14px 45px rgba(20, 20, 43, 0.06);
    position: relative;
    overflow: hidden;
}

    .about-main-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #c03ae8, #e07bff);
    }

.about-side-badge {
    background: linear-gradient(180deg, rgba(192, 58, 232, 0.08), rgba(192, 58, 232, 0.03));
    border: 1px solid rgba(192, 58, 232, 0.12);
    border-radius: 24px;
    padding: 28px;
    height: 100%;
}

    .about-side-badge .mini-title {
        color: #c03ae8;
        font-size: 0.9rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .about-side-badge h3 {
        font-size: 1.65rem;
        line-height: 1.3;
        color: white;
    }

.about-content p {
    font-size: 1rem;
    line-height: 1.9;
    color: #5f6473;
    margin-bottom: 1.2rem;
}

.about-info-card {
    background: #1c1c1c;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 30px rgba(20, 20, 43, 0.05);
    transition: all 0.3s ease;
}

    .about-info-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(20, 20, 43, 0.08);
        border-color: rgba(192, 58, 232, 0.18);
    }

    .about-info-card h4 {
        color: white;
        font-size: 1.3rem;
    }

    .about-info-card p {
        line-height: 1.8;
        color: #6b7280;
    }

.icon-box {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(192, 58, 232, 0.10);
    color: #c03ae8;
    font-size: 1.4rem;
}