.td-clients-area {
    padding: 120px 0;
    background: #f8f9fa;
}

.td-clients-title-wrap {
    text-align: center;
    margin-bottom: 80px;
}

.td-client-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.td-client-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.td-client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #6c5ce7;
}

.td-client-header {
    margin-bottom: 30px;
    position: relative;
}

.td-client-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2d2d2d;
}

.td-client-task {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
    font-style: italic;
}

.td-client-services {
    list-style: none;
    padding: 0;
    margin: 0;
}

.td-client-services li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 15px;
    color: #555;
}

.td-client-services li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #6c5ce7;
    border-radius: 50%;
}

/* Animation classes */
.td-client-card.wow {
    visibility: hidden;
}

.fadeInUp {
    animation-name: fadeInUp;
    animation-duration: 1s;
}