@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

/* Testimonial Card Styles */
.trusted-card {
    padding: 60px 0px;
    min-height: 450px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.nft-testimonial-heading {
    font-size: 32px;
    font-weight: 500;
    color: #333;
    text-transform: uppercase;
    margin: 0 0 30px 0;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.nft-testimonial-description {
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

.nft-testimonial-description p {
    margin-bottom: 15px;
}

.nft-testimonial-action {
    margin-bottom: 40px;
}

.nft-know-more-btn {
    display: inline-block;
    background: #55595c;
    color: #fff;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.nft-know-more-btn:hover {
    background: #333;
    color: #fff;
}

.trusted-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.trusted-card-meta {
    display: flex;
    gap: 30px;
    align-items: center;
}

/* Global Footer Styles */
.trusted-card-footer-global {
    position: absolute;
    bottom: 60px;
    left: 24px;
    right: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.trusted-card-meta-global {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nft-nav-item {
    display: flex;
    gap: 15px;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.4;
}

.nft-nav-item:hover {
    opacity: 0.7;
}

.nft-nav-item.active {
    opacity: 1;
}

.nft-nav-short {
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.nft-nav-heading {
    font-size: 13px;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.nft-nav-item.active .nft-nav-heading {
    color: #000;
}

.trusted-card-nav-global {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nft-prev-slide,
.nft-next-slide {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nft-prev-slide:hover {
    transform: translateX(-5px);
}

.nft-next-slide:hover {
    transform: translateX(5px);
}

.nft-prev-slide img,
.nft-next-slide img {
    height: 24px;
    width: auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .trusted-card-footer-global {
        bottom: 40px;
        left: 30px;
        right: 30px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .trusted-card-meta-global {
        flex-wrap: wrap;
        gap: 15px;
    }

    .trusted-card-nav-global {
        width: 100%;
        justify-content: flex-end;
    }
}

/* Slick Slider Custom Styles */
.nft-testimonials-slider {
    margin: 0;
}

.nft-slide {
    padding: 0;
    height: 100%;
}

/* Hide default arrows if any */
.slick-prev,
.slick-next {
    display: none !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .trusted-card {
        padding: 40px 30px;
        min-height: auto;
    }

    .nft-testimonial-heading {
        font-size: 24px;
    }

    .nft-testimonial-description {
        font-size: 16px;
    }

    .trusted-card-meta {
        flex-wrap: wrap;
        gap: 15px;
    }
}