/* BACKED BY SECTION - DASHBOARD STYLE */
.backed-by {
    background: rgba(255,255,255,0.02);
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
}

.expertise-dashboard {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.02));
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 16px;
    padding: 40px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

    .expertise-dashboard::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, #3b82f6, #8b5cf6, #3b82f6);
        animation: dataFlow 3s linear infinite;
    }

@keyframes dataFlow {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.expertise-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
}

.dashboard-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.expertise-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-bar {
    position: relative;
}

.stat-bar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.stat-label {
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    font-size: 0.95rem;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.progress-bar {
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 4px;
    animation: progressLoad 2s ease-out forwards;
    transform-origin: left;
}

@keyframes progressLoad {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.stat-subtitle {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin-top: 8px;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    .expertise-stats {
        grid-template-columns: 1fr; /* force one column on tablets/mobile */
        gap: 15px;
        padding: 0 5px;
    }

    .stat-bar {
        padding: 5px;
        width: 100%;
        margin-right: 0;
        padding-right: 0;
        margin-left: 0;
        padding-left: 0;
    }

    .stat-value {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .stat-subtitle {
        font-size: 0.85rem;
    }
}
