/* ============================================================
   Trust Carousel — assets/css/trust-carousel.css
   ============================================================ */

.trust-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 16px 24px;
    font-family: 'Poppins', sans-serif;
}

.trust-wrap *,
.trust-wrap *::before,
.trust-wrap *::after {
    box-sizing: border-box;
}

.trust-letters {
    display: flex;
    gap: 10px;
    margin-bottom: 22px;
}

.trust-wrap .t-letter {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ADADAD;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 21px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    transition: background 0.35s ease, transform 0.2s ease;
    user-select: none;
}

.trust-wrap .t-letter.active {
    background: linear-gradient(180deg, #5CE1E6 0%, #30D6DC 100%);
}

.trust-wrap .t-letter:hover {
    transform: scale(1.08);
}

.trust-wrap .trust-card {
    height: 205px;
    width: 100%;
    max-width: 420px;
    border: 1px solid #44DAE0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 35px 0 rgba(8, 70, 78, 0.06);
    padding: 20px 24px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.trust-wrap .card-inner {
    text-align: center;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.trust-wrap .card-inner.fade-out {
    opacity: 0;
    transform: translateY(10px);
}

.trust-wrap .card-inner.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.trust-wrap .card-title {
    color: #112744;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 22.1px;
    margin-bottom: 14px;
}

.trust-wrap .card-text {
    color: #45484D;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 23.1px;
}

.trust-wrap .trust-dots {
    display: flex;
    gap: 8px;
    margin-top: 18px;
    align-items: center;
}

.trust-wrap .trust-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #BEBEBE;
    cursor: pointer;
    transition: background 0.3s ease, width 0.3s ease, border-radius 0.3s ease;
}

.trust-wrap .trust-dots .dot.active {
    background: #1CBCCF;
    width: 24px;
    border-radius: 6px;
}