.txn-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.txn-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

    .txn-slide.active {
        opacity: 1;
        transform: scale(1);
        z-index: 2;
    }

    .txn-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.55);
    }

.txn-caption {
    position: absolute;
    bottom: 20%;
    left: 8%;
    max-width: 520px;
    color: #fff;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease 0.4s, transform 1s ease 0.4s;
}

.txn-slide.active .txn-caption {
    opacity: 1;
    transform: translateY(0);
}

.txn-caption h2 {
    font-size: 48px;
    margin-bottom: 12px;
    line-height: 1.1;
}

.txn-caption p {
    font-size: 20px;
    color: #d0d0d0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .txn-caption h2 {
        font-size: 32px;
    }

    .txn-caption p {
        font-size: 16px;
    }
}




.txn-capabilities {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(
        circle at top,
        #1a1a2e,
        #0f0f1a
    );
    padding: 80px 20px;
}

.txn-capability-card {
    max-width: 520px;
    text-align: center;
    padding: 48px;
    border-radius: 24px;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.06),
        rgba(255,255,255,0.02)
    );
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    transition: transform 0.6s ease;
}

.txn-capability-card:hover {
    transform: translateY(-6px);
}

.txn-capability-card h2 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #ffffff;
}

.txn-capability-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #cfd3d8;
}