/* Enhanced Clients Section */
.clients {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f7fafc 0%, #ffffff 50%, #edf2f7 100%);
    position: relative;
}

.clients::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23f1f5f9" opacity="0.3"><polygon points="0,0 1000,0 1000,50 0,100"/></svg>') no-repeat;
    background-size: cover;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.client-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid #e2e8f0;
    position: relative;
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3182ce, #63b3ed, #9f7aea);
}

.client-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 60px rgba(49, 130, 206, 0.25);
}

.client-content {
    padding: 2.5rem 2rem;
}

.client-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.client-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
    margin: 0;
}

.client-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #3182ce, #63b3ed);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.375rem;
    font-weight: bold;
    box-shadow: 0 6px 20px rgba(49, 130, 206, 0.4);
    transition: transform 0.3s ease;
}

.client-card:hover .client-icon {
    transform: scale(1.1) rotate(5deg);
}

.client-project {
    background: linear-gradient(135deg, #e6f3ff, #bee3f8);
    color: #2c5aa0;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(49, 130, 206, 0.2);
}

.client-description {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Enhanced Value Proposition */
.value-prop {
    background: linear-gradient(135deg, #f7fafc 0%, #ffffff 50%, #edf2f7 100%);
    position: relative;
    overflow: hidden;
}

.value-prop::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(49,130,206,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: backgroundFloat 30s linear infinite;
}

@keyframes backgroundFloat {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(80px, 80px) rotate(360deg); }
}

.value-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(49,130,206,0.05), rgba(159,122,234,0.05));
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-item:hover::before {
    opacity: 1;
}

.value-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(49, 130, 206, 0.2);
}

.value-icon {
    background: linear-gradient(135deg, #3182ce, #63b3ed);
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(49, 130, 206, 0.4);
    transform: rotate(-5deg);
    transition: all 0.4s ease;
}

.value-item:hover .value-icon {
    transform: rotate(0deg) scale(1.15);
    box-shadow: 0 15px 40px rgba(49, 130, 206, 0.5);
}